Windows Deployment
Esta sección contiene información y enlaces de utilidad a la hora de realizar una imágen corporativa de un sistema operativo Windows (Windows XP, Windows Vista o Windows 7) para desplegarla en una empresa.
Videos
- Windows Deployment Session Videos – UK Techdays 2010
- Preparation & planning your deployment
- Inside the Application Compatibility Toolkit 5.6: Finding, Testing, and Fixing Applications on Windows 7
- Simple deployments with WAIK and WDS
- Zero Touch Deployment using System Center Configuration Manager 2007 and Microsoft Deployment Toolkit 2010
- Exploring the User State Migration Toolkit (USMT) 4.0
Windows XP
Windows Vista
- Comparing Windows XP and Windows Vista Deployment Technologies
- Vista, Sysprep and SkipRearm (Artículo de Mark Minasi sobre el proceso que hay que seguir para no tener problemas con el número limitado de activaciones que tiene un Windows Vista)
- How to Automatically Rearm and Extend Activation Grace Period in Windows Vista and Server 2008
- Add a Custom Script to Windows Setup, explica como añadir un script propio a la instalación de Windows, p.ej. para borrar el unattend.xml al final del proceso ;-)
Windows 2008
- How to Sysprep in Windows 2008 (Ejemplo de uso de Windows System Image Manager (WSIM) paso a paso; incluye la creación del fichero
SetupComplete.cmdpara borrar elunattend.xml) - How to Sysprep in Windows Server 2008 R2 and Windows 7
- Windows Server 2008: Sample sysprep unattend file (generado mediante Windows System Image Manager, parte de WAIK)
sysprep /generalize /oobe /shutdown /unattend:unattend.xml
Windows 7
- How to customize the default local user profile when you prepare an image of Windows Vista, Windows Server 2008, Windows XP, or Windows Server 2003
- Windows 7 – Unable to Copy a User Profile, explica que en Windows 7 y Windows 2008 R2 el botón de "Copy To" para copiar el perfil del Administrator al Default User está deshabilitado. Se puede hacer la copia manual o usar una herramienta llamadada Windows Enabler para habilitar el botón ;-)
- Engineering Windows 7 Disk Space (Post about disk space and the disk space “consumed” by Windows 7)
- Deploying Windows Vista with Sysprep and ImageX, Installing WinRE in Windows Vista, etc. en http://www.svrops.com/svrops/default.htm
- (eBook) Deploying Windows® 7 Essential Guidance from the Windows 7 Resource Kit and Microsoft® TechNet Magazine
- The Machine SID Duplication Myth, es un post de Mark Russinovich donde explica porqué se elimina la herramienta NewSID. A partir de la publicación de Russinovich comenzó el debate acerca de la necesidad de tener SID únicos y en el post Why Sysprep is an necessary Windows deployment tool – Part 2: Unique SIDs are necessary se explica que, a parte del tema SID, la ejecución de sysprep borra la información de los CMID necesarios para conectar con los servidores de licencias KMS.
- Volume Activation information for Windows Vista, Windows Server 2008, Windows Server 2008 R2 and Windows 7 (MAK)
- Error message when you try to activate Windows Vista Enterprise, Windows Vista Business, Windows 7, or Windows Server 2008: "Code 0x8007232b" (slmgr -ipk)
Prepare to Capture an Image for Deployment (Generalize)
"If you anticipate needing to generalize the computer more than a few times, you can specify that the Windows Software Licensing Rearm program be skipped:
1. Set the Microsoft-Windows-Security-SPP\SkipRearm unattend setting value to 1. This specifies that the computer will not be rearmed, and it will not be restored to its original, out-of-box state. All activation-related licensing and registry data will remain and will not be reset. Similarly, any grace-period timers will not be reset."
I have tried it in my VMware environment and it works great. Just add the "Microsoft-Windows-Security-SPP" to "3 - Generalize" at AIK and set the "SkipRearm" to 1.
I hope that it help somebody else that needs that like me. Very useful for lab class training environments.
- Hack to Remove 100 MB System Reserved Partition When Installing Windows 7 (varios trucos para eliminar la partición reservada de Windows
Generally, it is not recommended to disable IPv6. If you disable IPv6, you'll lose functions of some features such as Windows Meeting Space or any application that relies on the Windows Peer-to-Peer Networking platform or the Teredo transition technology. However, currently I haven't found any options in unattend.xml file on disabling IPv6 with WAIK. We need to disable it after installing Windows 7 through either registry or writing scripts like the following:
Set objShell = WScript.CreateObject("WScript.Shell")
strIPv6 = "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\DisabledComponents"
objShell.RegWrite strIPv6, "255", "REG_DWORD"
For references:
- Disable/Enable Hibernate
- User Account Picture Change (a partir de esta recopilación de trucos)