home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / boot.wim / 1 / Windows / System32 / onlinedeploy.cmd < prev    next >
OS/2 REXX Batch file  |  2006-09-18  |  808b  |  39 lines

  1. rem @echo off
  2. setlocal
  3.  
  4. start cmd.exe
  5.  
  6. rem
  7. rem It seems redirections like 2>nul don't work correctly, so avoid them in this script
  8. rem
  9.  
  10. set SystemDrive=%1
  11. set SystemRoot=%2
  12.  
  13. if "%SystemDrive%"=="" (
  14.     echo System drive was not specified.
  15.     goto :eof
  16. )
  17.  
  18. if "%SystemRoot%"=="" (
  19.     echo Windows directory was not specified.
  20.     goto :eof
  21. )
  22.  
  23. :DoInstall
  24. %SystemRoot%\system32\secinit.exe
  25. %SystemRoot%\system32\cm.exe /install /target:%SystemDrive%\ /bootdrive:%SystemDrive% /mode:online /logging:%SystemRoot%\cmiv2.log /filerepository:%SystemDrive%\build\filerepository
  26.  
  27.  
  28. if errorlevel 1 (
  29. echo Error in running cm.exe
  30. echo More error information may be available in 
  31. echo %systemroot%\cmiv2.log file
  32. pause
  33. goto :DoInstall
  34. )
  35.  
  36. %SystemRoot%\system32\secinit.exe -f
  37.  
  38. popd
  39.