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
PowerShell – Find SharePoint Group Assignments
This PowerShell script will enumerate through all sites in the collection and return any sites that contain a given group name. Replace the red text, Administrative Members with the name of the group. # Get All Web Application $webApp=Get-SPWebApplication # Get All...
SharePoint Powershell , Get all site workflows by list
This PowerShell Script returns all sites that have a list with workflows. It pipes to an output file named output.txt $webApp=Get-SPWebApplication "Powershell script by Jeremy @ http://www.BondByte.com" | Out-File output.txt " " | Out-File output.txt -append # Get...
SharePoint Form Tags Content Editor and Custom WebParts
Ever try to place a Form in a SharePoint WebPart or Content Editor WebPart. Doesn't work real hot. In SharePoint 2010 I managed to strip a master page to its bare bones and override some JavaScript Methods and was able to nest a form tag. SharePoint 2013, a different...
Run SharePoint Workflow for all list items
This is one of those, durrrr, why didn't I think of that solutions. Basically, I have this workflow that sets up data in another column. There was a change to the system and I needed to rerun the workflow for all the items in the list. After some searching, you can't...
The name ‘InitializeControl’ does not exist in the current context
I've ran into this error several times now. The name 'InitializeControl' does not exist in the current context There have been several suggestions on how to fix this, some blogs say to create a new Visual Web Part in the Template folder and copy it back into the Web...