How can i create an image system with all updates?
i try to deploy a system with a scripted installation, ans i need to creat an image with updates without uploading them from internet or other.
Can i do that with kace? if yes how can i do it ?
0 Comments
[ + ] Show comments
Answers (3)
Answer Summary:
Please log in to answer
Posted by:
SMal.tmcc
11 years ago
Create a master image with all setting and updates. Sysprep it and deploy that.
Posted by:
GeekSoldier
11 years ago
Posted by:
errachidi-h
11 years ago
thank you i will try.
i have only k2000 at the moment
Comments:
-
We have a k1000 and a k2000, but for enhanced security we deploy machines nearly as patched as possible. This downloads a good chunk of Windows updates from microsoft's site: http://www.windowsupdatesdownloader.com/Default.aspx directly so you know it is safe to use.
I use http://www.wincert.net/forum/forum/179-win-toolkit/ to slipstream updates into Windows 7, but if time in imaging is not a huge issue you can generally throw all the updates in a post-install task on the k2000 and use this in a batch file:
for /f %i in ('dir /ab *.msu') do wusa.exe "%i" /quiet
That will only install *.msu extension updates, but that is a large portion of them. - mmcspadd 11 years ago