ISSUE
The ability to make mass changes to our kiosk mode workstations. We have hundreds of workstations with Parallels RAS installed on them in kiosk mode (their own shell). Parallels offers no direct method to mass update client settings or local applications. Applies for v14.x and 15.x.
SOLUTION
After some digging I found that Parallels uses a registry key to store all of this information. It’s the same information when exporting the client configuration into a .2xc1)http://blog.parallels.com/2010/06/10/how-to-change-default-client-settings-when-installing-the-2x-client-v-8-1/. There are two different registry keys, one for v14.x and one for v15.x (after Parallels purchased 2x)2)http://www.brianmadden.com/opinion/Parallels-buys-2X-Software.
1 2 3 4 5 6 7 |
Reg key for v15.x HKEY_LOCAL_MACHINE\SOFTWARE\Parallels\AppServerClient\DefSettXML key. Reg key for v14.x HKEY_LOCAL_MACHINE\SOFTWARE\2X\AppServerClient\DefSettXML |
You can use any preferred method, but I used this in conjunction with PDQ Deploy. Below is a .bat script I wrote to check for the version and install if it matches (for v15.x). Use at your own risk.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
@echo off title Parallels settings fix build 15.x cls REG QUERY HKEY_LOCAL_MACHINE\SOFTWARE\Parallels\AppServerClient /v DefSettXML IF %errorlevel%==0 GOTO INSTALL IF %errorlevel%==1 GOTO END :INSTALL ECHO now installing... regedit.exe /s "\\shared-path\2x.reg" ECHO DONE :END ECHO FINISHED |
- Installing ssacli – view raid ESXI 6.5 - December 6, 2017
- Installing hpacucli on Proxmox - December 5, 2017
- Finding your node name Graylog 2.2.x - May 22, 2017
Notes & References
1. | ↑ | http://blog.parallels.com/2010/06/10/how-to-change-default-client-settings-when-installing-the-2x-client-v-8-1/ |
2. | ↑ | http://www.brianmadden.com/opinion/Parallels-buys-2X-Software |