We partner with businesses to help them run better.
Websites & Email
Modernize your marketing strategy with Websites, Email, Social Media and more. We design, develop and host your websites right here in the Pacific Northwest.
Virtual Offices
Our Hosted Services allow you to have an office anywhere. We run the servers in the cloud and connect them to your physical office location. No maintenance and no repairs. Simple.
Be-ERP
Be-ERP is our modern, mobile friendly Business Management System. Our software system is written right here in Yakima. BE-ERP is a great platform for businesses that need custom software solutions without massive overhead.
KeyNotes
KeyNotes Open Source is a very mature product used in behavioral health and drug counseling. It is a complete clinical suite. The software is Open Source, you only pay for hosting services. Read more about KeyNotes here.
Recent Works
SharePoint Hide Fields with JS and JQuery
Session State in SharePoint
I tried using Session state today in a web part I was developing, it failed, the session was always null. I followed the best practices, verified it was enabled in web.config, it wasn't, so I turned it on. EnableSessionState="true". I tried my webpart again,...
SharePoint 2013 Front End Server Prep
Here's a collection of tools that are handy to have installed on your front end servers. The first thing you'll want to do is install a Windows SDK. The SDK package comes with a lot tools, specifically GacUtil.exe Server 2012...
SharePoint Configuration Wizard Error – The SDDL string contains an invalid SID or a SID that cannot be translated
was setting up a HyperV instance for development. Grabbed a Server 2012 Eval, threw SQL on it and installed SharePoint Foundation 2013. I was running through the configuration wizard and it was at step 8 or 9, creating Sample Data... and it threw the error below. I...
SharePoint 2013 Configure Search Services
//Provision Usage App $UP = Get-SPServiceApplicationProxy | where {$_.TypeName -like "Usage*"} $UP.Provision() //Starts the Services $hostA = Get-SPEnterpriseSearchServiceInstance -Identity "spapp" Start-SPEnterpriseSearchServiceInstance -Identity $hostA //Verify...
There was a problem deleting Web site “SiteName”. Sites that have subsites or certain apps can’t be deleted. Please try again after deleting all subsites and removing the apps.
Keep getting error when I try to delete a site with sub sites. This PowerShell script works well. # Completely deletes the specified Web (including all subsites) function RemoveSPWebRecursively( [Microsoft.SharePoint.SPWeb] $web) { Write-Debug "Removing site...
PublishingAssociatedContentType and its values
Another good tutorial. http://read-more.su/2012/05/publishing-associated-content-type-value.html
Event Handlers SharePoint 2010
This Tutorial can come in pretty handy. http://www.sharepointbriefing.com/spcode/article.php/3872616/Using-the-Event-Handler-in-SharePoint-2010.htm
SharePoint – Save Site As Template Missing ?
Site Templates don't work on publishing sites, there are many reasons for this, master pages, page layouts, etc. The stuff doesn't export / Import well. Some times you need just need to get to the site template for development reasons and what not. This is stolen from...
SharePoint call javascript after page load with Script Editor WebPart
In SharePoint 2013 they added a Script Editor WebPart. Add this to a page and add the following code in the WebPart Editor.