Welcome to Helpful Tech Notes.

I am a technician, and I started this website as a way to document information and fixes, primarily so I would have access to it while I was away from my computer. I've shared it with other technicians and customers, and based on the feedback I've decided to invest some time into making it look better and have more comprehensive information.

None of this information is AI Generated (to our knowledge). All information has been looked over by myself or a select few other Admins. Most items here are not a complete walkthrough. You are expected to know the basics, if a command fails due to 'Access is denied' or similar, you should know how to open the Command Prompt as Administrator. We try to document the steps to make it very easy, however we may skip simple steps.

If you have suggestions you can send them using the Contact page. If we missed some steps, or should reword or clarify something, please use the Contact page to let us know.

You can click a category below or use the search box to try to find something quickly. The search box is the preferred method of finding what you are looking for.

You will find a bias towards Windows information on this website. This is because I mostly use Windows, and most of my customers do as well. I only manage a handful of linux computers, and have a couple Mac's that I use for testing. If you have good information that I should include, please send it to me!

We now have Amazon item searches enabled, if you do a search and we have no results in our Guides, it will automatically perform a search on Amazon. Only items EXACTLY matching your search will be shown, this makes finding a part for a computer easier, since if you search on Amazon it will find similar items which are often not the right model number.

Guide Computer Software Quickbooks Quickbooks Database Server Manager fails to start causing users to be stuck in Single User Mode Updated August 15 2024
Quickbooks 2021 Error switching to multiuser mode - H202 or H505
https://quickbooks.intuit.com/learn-support/en-us/open-programs/how-to-fix-error-h202-and-h505/00/186029

If the database manager is running on a server running DNS server, then the DNS service may be using the same port UDP 55333.
Temporary Solution: Stop DNS server, Start QuickbooksDB31 Service, then start DNS.

http://www.devonstephens.com/quickbooks-database-manager-conflicting-dns-server/


-- An example error log from Event Manager on the server:
The description for Event ID 1 from source SQLANY 17.0 cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

If the event originated on another computer, the display information had to be saved with the event.

The following information was included with the event:

QuickBooksDB31
Unable to initialize requested communication links


-- Also:
Could not start server




Powershell script to fix this. I have several customers where I have this set to run periodically using Task Scheduler:

Copy to Clipboard $Services = Get-Service $AllRunning = $true Foreach ( $Service in $Services ){ if ( $Service.Name -like "QuickbooksDB*") { Write-Output "$($Service.Name) = $($service.Status)" if ( $service.Status -ne "Running" ){ $AllRunning = $false } } } Write-Output "Stopping DNS Service..." if ( $AllRunning -ne $true ){ Foreach ( $Service in $Services ){ if ( $Service.Name -eq "DNS") { $Service.Stop() Start-Sleep -seconds 5 } } } Write-Output "Starting Quickbooks Services..." Foreach ( $Service in $Services ){ if ( $Service.Name -like "QuickbooksDB*") { if ( $service.Status -ne "Running" ){ Write-Output "Starting $($Service.Name)..." $Service.Start() Start-Sleep -seconds 6 } } } Write-Output "Starting DNS Service..." if ( $AllRunning -ne $true ){ Foreach ( $Service in $Services ){ if ( $Service.Name -eq "DNS") { $Service.Start() Start-Sleep -seconds 6 } } $Services = Get-Service } # Show final status of services... Write-Output "" Write-Output "" Foreach ( $Service in $Services ){ if ( $Service.Name -like "QuickbooksDB*" -or $Service.Name -eq "DNS" ) { Write-Output "$($Service.Name) = $($service.Status)" } }



Search Keywords: Multi User, Intuit




©2024 - Some portions of this website are Copyrighted.
Your IP: 216.73.216.34     Referring URL:
Browser: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Terms and Conditions, Privacy Policy, and Security Policy