home *** CD-ROM | disk | FTP | other *** search
- @echo off
- REM =================================================================================
- REM This script is part of the appendix to the Application Compatibility Testing and
- REM Mitigation Guide for Windows XP Service Pack 2. Before using these scripts you
- REM must read the appendix and all Readme.txt files provided with the scripts. The
- REM scripts are designed as functional samples and will require extensive testing and
- REM some modification for use in a production environment.
- REM
- REM For information on additional functionality to incorporate into the script, such
- REM as error checking, go to:
- REM
- REM http://msdn.microsoft.com/library/default.asp?url=/nhp/default.asp?contentid=28001169
- REM
- REM or
- REM
- REM http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rmscpt/html/rmscpt.asp
- REM
- REM As some of the scripts edit the registry it is important that their functionality and
- REM impact on the machine environment is thoroughly tested before they are used in a
- REM production environment.
- REM ==================================================================================
- REM Install.cmd
- REM
- REM Author: Jim Captainino, Terry Tull (Content Master)
- REM Date: 08/20/04
- REM Revision History:
- REM Date Comment
- REM 08/20/04 Initial version started
-
- REM This script initiates the Service pack 2 install and executes AutoAdmin.vbs and Reboot.vbs
- REM to configure and then reboot the system.
-
- @Echo on
- @ REM Edit this line to configure the path to XpSp2.exe and installation switches if required
- c:\scripts\xpsp2.exe /quiet /norestart /o
-
- @ REM Edit this line to configure the path to AutoAdmin.vbs if required
- c:\scripts\scenario1\autoadmin.vbs
-
- @ REM Edit this line to configure the path to ReBoot.vbs if required
- c:\scripts\scenario1\reboot.vbs
-