A few people have asked if there was a scripted way to deploy the win 7 deployment tools so I thought I would share it.
This link has all the info that you need.
http://technet.microsoft.com/en-us/library/ee449483(v=ws.10).aspx
basically install Windows6.1-KB958830-x86-RefreshPkg.MSU using /quiet /norestart
(as a post install)
Then have a batch file that runs to install the components that you want.
dism /online /get-features to display the features that you need installed (on a machine that is already setup).
An example of using group policy management console is
dism /online /enable-feature /featurename:RemoteServerAdministrationTools /featurename:RemoteServerAdministrationTools-Features /featurename:RemoteServerAdministrationTools-Features-GP
Refer to the URL for additional options.
Comments