Windows 7 Deployment

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

0 comments

Post a comment

    Post a comment
    Embed Video
    Edit your comment Cancel

    Favorites, Groups & Events

    Windows 7 Deployment - Presentation Transcript

    1. Automated Installation andDeployment Windows 7Roel van BuerenAlex de Jong
    2. Agenda
      Imaging Approaches
      Imaging C.R.A.P.
      WAIK
      MDT 2010
      WDS
    3. Resources
    4. Traditional vs. Modular Approach
      Traditional
      Modular
      • 1 base image (OS) for all hardware
      • Apps/drivers delivered as add-ons
      • Easily integrate new hardware
      • Reduced maintenance costs
      • Automated build process
      • Easy to customise
      • OS + Applications in 1 image
      • Image per hardware type
      • Time to integrate new hardware
      • High maintenance
      • Requires a visit to the desktop
      • Storage requirements
    5. Traditional Approach
      • Quick Win
      • 1 x image per model
      • high maintenance
    6. Traditional vs. Modular Approach
      Maintenance
      Deployment
      Development
      Time
      Traditional
      Modular
    7. Imaging Strategy
      Thick image
      Core applications and language packs included
      Updates included
      Drivers included
      Thin image
      Core applications and language packs NOT included
      Updates NOT included
      Drivers NOT included
      Hybrid image
      Mixes thin and thick strategies
    8. Imaging C.R.A.P.
    9. Imaging C.R.A.P
      Disk Controllers drivers (STOP 0x0000007B)
      HAL (Uniprocessor, Multiprocessor)
      x64 and x86 support
      Disk and Partition Setup
      Windows Updates
      Drivers (Out-of-the-box, ‘to be connected’ hardware)
      Custom Registry Settings
      Applications
      AMD and Intel support
    10. Platform Components
    11. Windows Imaging (.WIM)
    12. Microsoft Windows Imaging (WIM)
      Microsoft’s own image format
      File-based disk imaging is a core capability of Windows Vista, Windows 7, Windows 2008
      Compared to sector-based formats, a WIM image is file-based
    13. Microsoft Windows Imaging (WIM)
      This WIM image format is hardware-agnostic, meaning that you need only one image to address many different hardware configurations.
    14. Microsoft Windows Imaging (WIM)
      The WIM image format also lets you store multiple images within one actual file.
      For example, Microsoft can ship multiple SKUs in one WIM image file. You store images with and without core applications in a single image file.
      Also, you can mark one of the images as bootable, allowing you to start a computer from a disk image contained in a WIM file.
    15. Microsoft Windows Imaging (WIM)
      The WIM image format enables compression and single instancing, thus reducing the size of image files significantly.
      Single instancing is a technique that allows you to store two or more copies of a file for the space cost of one copy.
      For example, if images 1, 2, and 3 all contain file A, single-instancing stores a single copy of the file A and points images 1, 2, and 3 to that copy.
    16. Microsoft Windows Imaging (WIM)
      The WIM image format allows you to service an image offline. You can add or delete certain operating system components, patches, and drivers without creating a new image.
      For example, to add a patch to a Windows XP image, you must boot the master image, add the patch, and then prepare the image again.
    17. Microsoft Windows Imaging (WIM)
      The WIM image format lets you install a disk image on partitions of any size, unlike sector-based image formats that require you to deploy a disk image to a partition that's the same size or larger than the source disk.
    18. WAIK
    19. Windows Automated Installation Kit
      The Windows® Automated Installation Kit (Windows AIK) is a set of tools and documentation that support the configuration and deployment of Windows® operating systems.
    20. Windows Automated Installation Kit
      By using Windows AIK, you can automate Windows installations, capture Windows images with ImageX, configure and modify images using Deployment Imaging Servicing and Management (DISM), create Windows PE images, and migrate user profiles and data with the User State Migration Tool (USMT).
      Windows AIK also includes the Volume Activation Management Tool (VAMT), which enables IT professionals to automate and centrally manage the volume activation process using a Multiple Activation Key (MAK).
    21. ImageX
    22. ImageX
    23. ImageX
    24. ImageX
    25. ImageX
    26. ImageX
    27. ImageX
    28. ImageX
    29. DISM
      Deployment Image Servicing and Management Tool
    30. DISM
    31. DISM
    32. DISM
    33. DISM
    34. DISM
    35. DISM
    36. DISM
    37. DISM
    38. Platform Components
    39. Attended Windows setup
    40. Windows XP Setup Manager
    41. Windows SIM
    42. Unattended Windows setup
      Unattend.xml
      AutoUnattend.xml
      As a rule, only answer files named Unattend.xml are used.
      However, because some answer files include destructive actions such as disk partitioning, you must rename your Unattend.xml file to Autounattend.xml in the windowsPE and offlineServicing configuration passes. These passes run when you first run Windows PE or Setup.exe.
      You typically use the Autounattend.xml file when you use the Windows Setup DVD boot method and supply an answer file on a USB flash drive (UFD) or floppy disk.
    43. Unattend Windows setup
    44. Unattend Windows setup
    45. Unattend Windows setup
    46. Unattend Windows setup
    47. Unattend Windows setup
    48. Unattend Windows setup
    49. Unattend Windows setup
    50. Windows SIM
    51. Passes
      windowsPE
      offlineServicing
      generalize
      Specialize
      auditSystem
      auditUser
      oobeSystem
    52. Windows PE
      Windows PE is a minimal Win32 subsystem with limited services, based on the Windows 7 kernel running in protected mode.
      It contains the minimal functionality that you need to run Setup, install Windows from a network share, automate basic processes, and perform hardware validation.
      Windows PE was developed specifically to address desktop and server deployment scenarios.
    53. Windows PE
    54. Passes – windowsPE
      Configures Windows PE options as well as basic Windows Setup options. These options can include configuring a disk or language settings.
    55. Passes - offlineServicing
      Applies updates to a Windows 7 image.
      Also applies packages, including software fixes, language packs, and other security updates.
    56. Passes - generalize
      The generalize pass runs only if you run sysprep/generalize. In this pass, you can minimally configure Windows 7 as well as configure other settings that must persist on your master image.
      The sysprep /generalize command removes system-specific information. For example, the unique SID and other hardware-specific settings are removed from the image.
    57. Passes - specialize
      Creates and applies system-specific information.
      For example, you can configure:
      network settings
      international settings
      domain information.
    58. Passes - auditSystem
      Processes unattended Setup settings while Windows 7 is running in system context, before a user logs on to the computer in audit mode.
      The auditSystem pass runs only if you boot in audit mode.
    59. Passes - auditUser
      Processes unattended Setup settings after a user logs on to the computer in audit mode.
      The auditUser pass runs only if you boot in audit mode.
    60. Passes - oobeSystem
      Applies settings to Windows 7 before Windows Welcome starts.
    61. Mini Setup Phase = Specialize Pass
      Windows XP
      driver installation
      Joining domain
      Sysprep.inf was the answer file for this phase
      Windows 7
      This phase is now called the ‘Specialize’ pass
      (Auto)Unattend.xml is the answer file for this pass
    62. Mini Setup Phase = Specialize Pass
    63. Windows SIM
    64. Windows SIM
    65. Windows SIM
    66. Windows SIM
    67. Windows SIM
    68. Windows SIM
    69. Windows SIM
    70. Include custom files
      If you wish to include custom files to include in the Windows 7 installation (such as files in the program files, system32 folder, OOBE (Out Of Box Experience) etc.) then make a folder called $OEM$ inside the sources folder.
      From there, the following folder structures must apply (many changed from Windows 2000 and Windows XP $OEM$ days) …..
    71. Include custom files
      $$Contains files that Windows Setup copies to the %WINDIR% (for example, C:windows) folder during installation.
      $$System32Contains files that Windows Setup copies to the %WINDIR%System32 folder during installation.
    72. Include custom files
      $1Represents the root of the drive on which you installed Windows (also called the boot partition) and contains files that Windows Setup copies to the boot partition during installation.
      $1PnpdriversContains new or updated Plug-and-Play (PnP) drivers. The user specifies the folder name in the Unattend.xml file for unattended installations. For example, this folder might be named $OEM$ Folders$1Pnpdrvs.
    73. Include custom files
      drive_lettersubfolder
      A subfolder of the drive that contains files that Windows Setup copies to the subfolder during installation. Multiple instances of this type of folder may exist under the $OEM$ Foldersdrive_letter folder, for example, $OEM$ FoldersDMyFolder.
      $$SetupScriptsSetupComplete.cmd
    74. Platform Components
    75. Microsoft Deployment Toolkit 2010
      Microsoft Deployment Toolkit 2010 (MDT 2010) provides a common console with the comprehensive tools and guidance needed to efficiently manage deployment of Windows 7 and Windows Server 2008 R2.
      Microsoft Deployment Toolkit 2010 is the recommended process and toolset to automate desktop and server deployment.
      Microsoft Deployment Toolkit 2010 provides detailed guidance and job aids for every organizational role involved with large-scale deployment projects.
    76. Microsoft Deployment Toolkit 2010
    77. Microsoft Deployment Toolkit 2010
    78. MDT 2010 Requirements
      Microsoft Management Console (MMC) version 3.0
      Microsoft .NET Framework 2.0 or later
      Windows PowerShell™ command-line interface (CLI) version 1.0 or 2.0, Community Technology Preview 3 (CTP3) or later
      Windows Automated Installation Kit (Windows AIK) for Windows 7
    79. Deployment scenario’s - LTI
      Lite Touch Installation
      Allows selection of the level of automation
      Has minimal infrastructure requirements
      Supports deployments over a network using a shared folder or locally using removable storage such as a CD, DVD, or UFD
      The deployment process can be initiated manually or automatically using Windows Deployment Services
      Requires little or no infrastructure to support deployment
    80. Deployment scenario’s - ZTI
      Zero Touch Installation
      Supports only fully automated deployments
      Requires System Center Configuration Manager
      Supports deployments only from System Center Configuration Manager distribution points
      The installation process can be initiated by System Center Configuration Manager or Windows Deployment Services
      Requires an infrastructure sufficient to deploy operating system images
    81. DeploymentWorkbench
    82. DeploymentWorkbench
    83. DeploymentWorkbench
    84. DeploymentWorkbench
    85. DeploymentWorkbench
    86. DeploymentWorkbench
    87. DeploymentWorkbench
    88. DeploymentWorkbench
    89. DeploymentWorkbench
    90. DeploymentWorkbench
    91. DeploymentWorkbench
    92. DeploymentWorkbench
    93. DeploymentWorkbench
    94. DeploymentWorkbench
    95. DeploymentWorkbench
    96. DeploymentWorkbench
    97. DeploymentWorkbench
    98. DeploymentWorkbench
    99. DeploymentWorkbench
    100. DeploymentWorkbench
    101. WSF
    102. WinPE
    103. WinPE
    104. Boot Image
    105. Boot Image
    106. Boot Image
    107. Boot Image
    108. Lite Touch Installation (LTI) deployments
    109. Lite Touch Installation (LTI) deployments
    110. Lite Touch Installation (LTI) deployments
    111. Microsoft Deployment Toolkit 2010
    112. Lite Touch Installation (LTI) deployments
    113. Lite Touch Installation (LTI) deployments
    114. Rules
    115. Lite Touch Installation (LTI) deployments
    116. Microsoft Deployment Toolkit 2010
    117. Microsoft Deployment Toolkit 2010
    118. Microsoft Deployment Toolkit 2010
      MDT Teamblog:http://blogs.technet.com/msdeployment/default.aspx
    119. Microsoft Deployment Toolkit 2010
    120. Microsoft Deployment Toolkit 2010
    121. Microsoft Deployment Toolkit 2010
    122. Platform Components
    123. Microsoft Deployment Toolkit 2010
    124. Microsoft Deployment Toolkit 2010
    125. Microsoft Deployment Toolkit 2010
    126. Microsoft Deployment Toolkit 2010
    127. Microsoft Deployment Toolkit 2010
    128. Microsoft Deployment Toolkit 2010
    SlideShare Zeitgeist 2009

    + rovaburovabu Nominate

    custom

    1330 views, 0 favs, 0 embeds more stats

    Windows 7 Deployment

    More info about this document

    © All Rights Reserved

    Go to text version

    • Total Views 1330
      • 1330 on SlideShare
      • 0 from embeds
    • Comments 0
    • Favorites 0
    • Downloads 32
    Most viewed embeds

    more

    All embeds

    less

    Flagged as inappropriate Flag as inappropriate
    Flag as inappropriate

    Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

    Cancel
    File a copyright complaint
    Having problems? Go to our helpdesk?

    Categories