Hello!
Does anyone know how to register a dll or component on a remote machine? I know you can use regsvr32.exe and invoke it like this...
... but is there a way to do the same thing on a remote machine? Can I make a shell reference to a remote machine?
Thanks all!
He who has knowledge spares his words, and a man of understanding is of a calm spirit. Even a fool is counted wise when he holds his peace; when he shuts his lips, he is considered perceptive. - King Solomon
Does anyone know how to register a dll or component on a remote machine? I know you can use regsvr32.exe and invoke it like this...
Code:
Dim objShell
Set objShell = Wscript.CreateObject("WScript.Shell")
objShell.Run "regsvr32.exe /u C:\test.wsc"
Set objShell = Nothing
Thanks all!
He who has knowledge spares his words, and a man of understanding is of a calm spirit. Even a fool is counted wise when he holds his peace; when he shuts his lips, he is considered perceptive. - King Solomon