1. plan
  2. test
  3. deploy
    1. Sysprep
      1. Sysprep options: (oobe OR audit) [REQUIRED] AND generalize [OPTIONAL] AND (shutdown OR reboot OR quit) [REQUIRED]
      2. Create reference Image: sysprep /generalize /oobe /shutdown
      3. Audit System: sysprep /audit /generalize /shutdown
      4. Delivering to user: sysprep /oobe /shutdown
      5. In the enterprise, automate the Windows Welcome process using answer files. (SIM)
    2. WDS
      1. Install reference computer.
      2. Customize reference computer.
      3. Sysprep reference computer.
      4. Create capture boot image and add it to store
      5. Boot reference computer - select capture image to capture an image of reference computer, upload the image to WDS , and add image as install image.
      6. Deploy captured image to destination computers.
      7. Implementation
        1. Using the Add Roles Wizard
        2. Using ServerManagerCmd –install WDS
        3. Unattended after OOBE
      8. Configuration
        1. Creating image store. (RemoteInstall folder)
          1. Boot images
          2. WDSUTIL /Add-Image /ImageFile:"D:\Sources\boot.wim" /ImageType:boot
          3. Discover images
          4. Capture Images
          5. Install images
          6. WDSUTIL /Add-ImageGroup /ImageGroup:"VistaSP1"
          7. WDSUTIL /Add-Image /ImageFile:"D:\sources\install.wim" /ImageType:install /ImageGroup:"VistaSP1"
        2. Configuring the PXE server settings.
        3. Using the WDSUTIL
          1. WDSUTIL /Initialize-Server
          2. WDSUTIL /Set-Server /AnswerClients:all
        4. Using WDS Configuration Wizard
        5. BOOT TAB
      9. Unattended Deployment
        1. Created using Windows SIM
        2. Unattend.xml
          1. copy answer file to \RemoteInstall\WdsClientUnattend folder
          2. On WDS server, Client tab, select Enable Unattended Installation checkbox
        3. ImageUnattend.xml
          1. In WDS Console, right-click install image - select Properties, on General tab select Allow Image To Install in Unattended Mode.
    3. Solution Accelerators (SA)
      1. MS Deployment Toolkit
        1. WAIK
          1. install on admin pc
          2. Windows System Image Manager (Windows SIM)
          3. Ceate XML answer files. (autounattend.xml)
          4. Create and work with distribution shares, configuration sets.
          5. ImageX
          6. Manipulating WIM files
          7. Capture a Base Image from the Reference Computer: imagex /compress fast /capture C: C:\baseimage.wim “Base Image” /verify
          8. Deploying Base Image onto Destination Computer
          9. Create partition
          10. Apply Base Image imagex /apply C:\baseimage.wim 1 C:
          11. PEimg.exe
          12. Offline modifying WIM files
          13. Pkgmgr.exe
          14. Offline servicing of Windows images
          15. BCDEdit: edit the BCD store Bootsect: restore your computer’s boot sector. DiskPart: create and format partitions. Drvload: adding out-of-box drivers to a booted Windows PE image. Oscdimg: creating an .iso image of Windows PE PEImg: create or modify a Windows PE image by adding drivers, importing packages..
          16. Old - New Tools Comparison
          17. WinPE
          18. Create WinPE structure from WAIK: copype.cmd x86 C:\WinPE_x86
          19. Copy ImageX copy "C:\Program Files\Windows AIK\Tools\x86\imagex.exe" C:\WinPE_x86\ISO\
          20. Create ISO file from WinPE build oscdimg -n -bC:\WinPE_x86\etfsboot.com C:\WinPE_x86\ISO C:\WinPE_x86.iso
          21. Image based deployment
        2. USMT
        3. ACT
        4. MDT2008
          1. Light Touch Installation (LTI)
          2. integrate with Windows DS for centralized, server-based deployments.
          3. New Computer Scenario
          4. Upgrade Computer Scenario
          5. Refresh Computer Scenario
          6. Replace Computer Scenario
          7. Zero Touch Installation (ZTI)
          8. SMS 2003 or SCCM 2007 required
          9. Console
          10. Information Center
          11. Distribution Share
          12. Task Sequences
          13. Deploy
    4. Windows setup & WIM
      1. WIM
        1. boot.wim
          1. use the boot image to start the installation process
        2. install.wim
          1. then applies the install image to the system
        3. A .wim file contains one or more volume images
        4. .wim files are hardware-agnostic.
        5. a .wim file can be serviced offline
        6. WIM uses file compression and single-instance storage
      2. Setup
        1. Setup uses Image-Based Setup (IBS)
        2. Three Phases of Windows Setup
          1. Phase 1: Windows PE phase
          2. configure how Windows will be installed on your system
          3. Phase 2: Online Configuration phase.
          4. make Windows unique
          5. Phase 3: Windows Welcome phase.
          6. prepare the operating system for use by the user.
        3. Configuration Passes
          1. Pass 1 windowsPE
          2. WinPE control
          3. Pass 2 offlineServicing
          4. add drivers, security updates, hotfixes, language packs to WIM
          5. Pass 3 specialize
          6. configure system-specific settings
          7. Pass 4 generalize
          8. Used to create your reference image of Windows. Is closely tied to using the sysprep /generalize command
          9. Pass 5 auditSystem
          10. Only happens when Setup is running in audit mode using the sysprep /audit command.
          11. Pass 6 auditUser
          12. Takes place after the user has logged on
          13. Pass 7 oobeSystem
          14. Configure Windows Welcome phase of Setup.
          15. Automating the Machine OOBE
          16. Comparing Windows Setup phases with configuration passes for an unattended, clean install of Vista
  4. configure
  5. maintain
  6. troubleshoot