Windows File Protection Question

  • Thread starter Thread starter Celler Dweller
  • Start date Start date
C

Celler Dweller

Hi All,
I need to automate the updating of a DLL that is protected by WFP on
about 3,500 computers. I have done some research and it is my
understanding that I should update this file in 3 places, the dllcache/,
system32/ and i386/ folders. Has anyone attempted this and did you do
anything differently? ANY advice is appreciated.
Thank you
 
Hi All,
I need to automate the updating of a DLL that is protected by WFP on
about 3,500 computers. I have done some research and it is my
understanding that I should update this file in 3 places, the dllcache/,
system32/ and i386/ folders. Has anyone attempted this and did you do
anything differently? ANY advice is appreciated.
Thank you

If the file is not locked:

if exist \\computer1\admin$\System32\dllcache\mydll.dll copy \\Server\Distshare\mydll.dll \\computer1\admin$\System32\dllcache\mydll.dll
if exist \\computer1\admin$\System32\mydll.dll copy \\Server\Distshare\mydll.dll \\computer1\admin$\System32\mydll.dll

etc...



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