Jump to content

Recommended Posts

Posted
look at using the Microsoft toolkit with MDT, no need to capture images, just insert the ISO, build in the drivers and software. Its tricky to get the hang of a few bits but it makes life easier.
  • Thanks 1
Posted
I am Using MDT to capture Images ...I am looking into the customization Part, like Desktop Personalisation ...It would be helpful if you could suggest....
Posted
I am using MDT to capture Windows 7 Image...I am now unable to Set Lock screen and Account picture in win 8 ...could you please suggest or provide me some links whre i get best way to image windows 8
Posted
I have got a requirement from one of the customer for windows 8 ...to Inculde Customer Wallpaer, customer logo in the lock screen and user account...Remove some of Built in Apps and Make the corporate email as teh default one .....I Tried the customistion using the MDT Pause Task Sequence , but i am uncale to customise as Windows 8 doesnt allow unless it is activated...I was looking fot a solution for this.
Posted (edited)
customer logo in the lock screen

The lockscreen image can be set via Group Policy...

 

How to Manage the Lock Screen Image on Windows 8 and Windows Server 2012

 

... or the registry key below.

 

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization]
"LockScreenImage"="C:\\Pictures\\LockScreen.jpg"

 

Alternatively, you could disable it completely (if that's an option)?

 

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization]
"NoLockScreen"=dword:00000001

 

Remove some of built in apps

Here's a PowerShell script that does that. Just remove the apps you want to keep from the list (if any).

 

# Remove Built-in Windows 8 Apps
# Source: http://blogs.technet.com/b/deploymentguys/archive/2013/06/07/update-removing-built-in-applications-from-windows-8.aspx

$AppsList = "Microsoft.Bing",
           "Microsoft.BingFinance",
           "Microsoft.BingMaps",
           "Microsoft.BingNews",
           "Microsoft.BingSports",
           "Microsoft.BingTravel",
           "Microsoft.BingWeather",
           "Microsoft.Camera",
           "Microsoft.Media.PlayReadyClient",
           "microsoft.microsoftskydrive",
           "Microsoft.Reader",
           "microsoft.windowscommunicationsapps",
           "microsoft.windowsphotos",
           "Microsoft.XboxLIVEGames",
           "Microsoft.ZuneMusic",
           "Microsoft.ZuneVideo"
           
$AppsList | ForEach { Get-AppxPackage -Name $_ } | ForEach { Remove-AppxPackage $_; Remove-AppxProvisionedPackage -Online -PackageName $_ }

 

 

 

make the corporate e-mail as the default one

Outlook 2010/2013? :confused:

 

I am unable to customise as Windows 8 does not allow unless it is activated

Can you use their KMS server to activate Windows?

Edited by Arthur
  • Thanks 1
Posted

Thanks a lot Arthur... We are using KMS To Activate windows 8...Dats the worry for some DEsktop Customisation Manullay using LTISuspend

We are using Outlook 2010 ..

  • 5 months later...
Posted
You could build your image how you want. Then use MDT for sysprep and capture, set CopyProfile in the unattend to true and it will copy your admin settings. Like the others have mentioned - we moved away from making custom WIM files (thick imaging) and are now doing thin imaging. Use WSUS for updates (or inject the update packages into MDT), use MDT to install Office, etc. The beautify behind Thin imaging (installing from source) is that you do not have to keep the image itself up to date. It can all be done using WSUS/GPO/MDT/etc. With Windows Vista and above being hardware independent it makes this process very easy and an ideal way to go. Most Windows 8 settings can be found in a GPO or can be set using registry/scripts.
Posted
I do hybrid. Win7, office, c++ runtimes, all updates. Then enable windows update in the deployment ts as the image will get out of date. I rebuild the images every 3/4 may months. Though I could monthly.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...