[RESOLVED] WSUS ID
Published: June 28, 2018 - 08:50
Good morning,
WAPT 1.5 server on Debian 9.4
Technical position in W7x64
We need to renew the WSUS IDs so that all the workstations appear in the console.
We found a script for this:
It works when launched directly on the test machine, but when launched via pyscripter with a run command, the keys do not clear and I get an error message: 'wuauclt.exe' is not recognized as an internal command.
What are the differences between the two? Encoding issues? Rights issues?
Thank you in advance for your help.
WAPT 1.5 server on Debian 9.4
Technical position in W7x64
We need to renew the WSUS IDs so that all the workstations appear in the console.
We found a script for this:
Code: Select all
@Echo off
if exist %systemdrive%\SUSClientID.log goto end
net stop wuauserv
net stop bits
reg delete HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /va /f > %systemdrive%\SUSClientID.log
net start wuauserv
wuauclt.exe /resetauthorization /detectnow
:end
exitWhat are the differences between the two? Encoding issues? Rights issues?
Thank you in advance for your help.