home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / WindowsServerTrial / server.iso / sources / install.wim / 1 / Windows / System32 / onlinesetup.cmd < prev    next >
OS/2 REXX Batch file  |  2006-09-18  |  843b  |  44 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. if "%SystemDrive%"=="" (
  11.     echo System drive was not specified.
  12.     goto :eof
  13. )
  14.  
  15. if "%SystemRoot%"=="" (
  16.     echo Windows directory was not specified.
  17.     goto :eof
  18. )
  19.  
  20. set ProgramFiles(x86)=%SystemDrive%\Program Files (x86)
  21.  
  22. %SystemRoot%\system32\secinit.exe
  23.  
  24. :DoInstall
  25. %SystemRoot%\system32\oobe\setup.exe
  26.  
  27. if errorlevel 1 (
  28. echo Error in running setup.exe
  29. echo More error information may be available in 
  30. echo %systemroot%\panther\setupact.log and
  31. echo %systemroot%\panther\setuperr.log
  32. pause
  33. goto :DoInstall
  34. )
  35.  
  36. rem
  37. rem Delete SetupPolicies directory
  38. rem
  39.  
  40. if exist %SystemRoot%\WinSxS\SetupPolicies\nul (
  41.     rd /s /q %SystemRoot%\WinSxS\SetupPolicies
  42. )
  43. popd
  44.