Call Savance Workplace Call Us: (248) 478-2555

Support Suite

User Login



 

Main

Knowledgebase: Application Interface
Disabled Server Address Field on the Application Settings
Posted by Robert Joseph on 20 October 2020 06:41 PM

Remove Version 9 Registry Settings

Version 9 and below would use the WOW6432Node to set the server address. If you upgraded to version 10, this registry hive is locking those particular settings.

Here is a PowerShell script to read and remove that entry from the WOW6432Node folder for a single computer with a confirm command switch. It is safe to remove this entire hive after version 10.

#Write the old server address to screen the property value and remove after confirmation
Get-ItemProperty -Path "HKLM:SOFTWARE\WOW6432Node\Savance\EIOBoard Application" -Name "WebAddress"
Remove-ItemProperty -Path "HKLM:SOFTWARE\WOW6432Node\Savance\EIOBoard Application" -Name "WebAddress" -Confirm