Hello Paul, > Hi, > I need some help to try and rectify a problem, of my making! > I manually edited the settings.xml to change from server1 to server2 but missed the wrapper path and only changed the settings paths. > Now I have the path for the wrapper \\server1\wpkg\wpkg.js and the settings/software as \\server2\wpkg\settings.xml so wpkg fails. > Has anyone got a suggestion on how to change these? > Where are the wpkgservice settings stored? Registry? Xml file? As I could try and change it via a DS group policy. > usually I do such upgrade things using a package, see attached. In your case I think it would make sense to role out a (computer) group policy like e.g. %PROGRAMFILES%\WPKG\wpkginst.exe --SETTINGSFILE=\\your-logon-server\netlogon\wpkg\settings.xml to get things right again. Good luck, Falko <package id="wpkginst" name="Wpkg installer" revision="5" reboot="false" priority="999"> <check type="uninstall" condition="exists" path="WPKG" /> <install cmd="cmd /c start /min msiexec /qn /i %SOFTWARE%\wpkg\WPKGSetup.msi SETTINGSFILE=%SOFTWARE%\wpkg\settings.xml ALLUSERS=1" /> <upgrade cmd="msiexec /qn /l* c:\netinst\logs\wpkginst.log /i %SOFTWARE%\wpkg\WPKGSetup.msi SETTINGSFILE=%SOFTWARE%\wpkg\settings.xml" /> <upgrade cmd="%PROGRAMFILES%\WPKG\wpkginst.exe --SETTINGSFILE=%SOFTWARE%\wpkg\settings.xml" /> <!-- <remove cmd="msiexec /qn /l* c:\netinst\logs\wpkgdel.log /x{27A985C1-80D2-4EB9-81F6-D8B2EABE0DE6}" > <remove cmd="msiexec /qn /l* c:\netinst\logs\wpkgdel.log /x{03CA8EC9-7C87-450E-BA56-958C35D6B3DA}" > --> <remove cmd="msiexec /qn /l* c:\netinst\logs\wpkgdel.log /x{2F7AB97F-17EC-4128-9BD1-903FC71F1B52}" > <exit code="1605" /> </remove> <remove cmd="msiexec /qn /l* c:\netinst\logs\wpkgdel.log /x{EC1529D7-0920-4748-9A33-73D3D42531A5}" > <exit code="1605" /> </remove> </package> |