how to copy/register new DLL's in win2000/XP

  • Thread starter Thread starter Alexander Wolff
  • Start date Start date
A

Alexander Wolff

I have 500 PC dispersed geographically, i need to copy/register new dll's.
How can i do that? I thought about doing logon script that copy/register the
dll's but..the user that logs on the pc doesn't have administrator
privileges to register dll's..

thanks in advance,
alexander.
 
I have 500 PC dispersed geographically, i need to copy/register new dll's.
How can i do that? I thought about doing logon script that copy/register the
dll's but..the user that logs on the pc doesn't have administrator
privileges to register dll's..

thanks in advance,
alexander.
You can use PsExec, tip 4141 in the 'Tips & Tricks' at http://www.jsiinc.com

Sample"

for /f "Tokens=1" %%a in ('net view^|FIND "\\"') do (
copy \\MyServer\DLLShare\mydll.dll %%a\admin$\System32\mydll.dll
psexec %%a -u Username -p password -s -d regsvr32.exe /s mydll.dll
)

or see tip 4195


Jerold Schulman
Windows Server MVP
JSI, Inc.
http://www.jsiinc.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top