'Script to to configure Desktop Central Server name and IP Address '=================================================================== 'WARNING: '******** ' This script Edits Windows Registry to configure Desktop Central Server name and IP Address ' It is highly recomended to test the script in Test Computers before rolling it across a Network Set WshShell = WScript.CreateObject("WScript.Shell") serverName = WScript.Arguments.Item(0) serverIPAddr = WScript.Arguments.Item(1) WshShell.RegWrite "HKLM\SOFTWARE\AdventNet\DesktopCentral\DCAgent\DCServerName",serverName,"REG_SZ" WshShell.RegWrite "HKLM\SOFTWARE\AdventNet\DesktopCentral\DCAgent\DCServerIPAddress",serverIPAddr,"REG_SZ"