Leaked source code of windows server 2003
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.

13 lines
386 B

  1. @echo off
  2. rem
  3. rem tssdwmi.bat
  4. rem
  5. rem batchfile to copy tssdwmi.dll and tssdwmi.mof
  6. rem and register tssdwmi.dll and complile tssdwmi.mof
  7. copy %0\..\tssdwmi.dll %windir%\system32
  8. copy %0\..\tssdwmi.mof %windir%\system32\wbem
  9. %windir%\system32\regsvr32.exe /s %windir%\system32\tssdwmi.dll
  10. %windir%\system32\wbem\mofcomp.exe %windir%\system32\wbem\tssdwmi.mof
  11. @echo on