F
Frank B Denman
Maybe you won't have to struggle with this as long as I did to get it working.
PsExec is a free utility downloadable from <www.sysinternals.com>.
This command unregisters shimgvd.dll on a single remote computer. The /S switch
suppresses the popup dialog:
psexec \\computername -u domain\administrator regsvr32.exe /U /S shimgvw.dll
And it returns the result code:
regsvr32.exe exited on computername with error code 0
To run this command against a whole bunch of workstations:
psexec @computer_list.txt -u domain\administrator regsvr32.exe /U /S
shimgvw.dll 2> result_codes.txt
Computer_list.txt is a listing of all the remote computer on which the command
should be run. The format is each computer name on a separate line. The result
codes go to result_codes.txt instead of to the screen.
To reregister the dll, run the same command but without the /U switch.
Happy camping!
Frank
Frank Denman
Denman Systems
(e-mail address removed)
Please delete the "x" from my email address.
PsExec is a free utility downloadable from <www.sysinternals.com>.
This command unregisters shimgvd.dll on a single remote computer. The /S switch
suppresses the popup dialog:
psexec \\computername -u domain\administrator regsvr32.exe /U /S shimgvw.dll
And it returns the result code:
regsvr32.exe exited on computername with error code 0
To run this command against a whole bunch of workstations:
psexec @computer_list.txt -u domain\administrator regsvr32.exe /U /S
shimgvw.dll 2> result_codes.txt
Computer_list.txt is a listing of all the remote computer on which the command
should be run. The format is each computer name on a separate line. The result
codes go to result_codes.txt instead of to the screen.
To reregister the dll, run the same command but without the /U switch.
Happy camping!
Frank
Frank Denman
Denman Systems
(e-mail address removed)
Please delete the "x" from my email address.