Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
682 B

  1. if "%1" == "on" goto TurnOn
  2. if "%1" == "off" goto TurnOff
  3. echo Specify on or off
  4. goto endofline
  5. :TurnOn
  6. ren %systemroot%\system32\ole2.off *.dll
  7. ren %systemroot%\system32\storage.off *.dll
  8. ren %systemroot%\system32\compobj.off *.dll
  9. ren %systemroot%\system32\ole2disp.off *.dll
  10. ren %systemroot%\system32\typelib.off *.dll
  11. ren %systemroot%\system32\ole2nls.off *.dll
  12. upknown
  13. goto endofline
  14. :TurnOff
  15. ren %systemroot%\system32\ole2.dll *.off
  16. ren %systemroot%\system32\storage.dll *.off
  17. ren %systemroot%\system32\compobj.dll *.off
  18. ren %systemroot%\system32\ole2disp.dll *.off
  19. ren %systemroot%\system32\typelib.dll *.off
  20. ren %systemroot%\system32\ole2nls.dll *.off
  21. upknown -r
  22. :endofline