Alan's sysadmin Blog

Working smarter not harder

Archive for the ‘MDT 2010’ Category

MDT 2010 – What’s my TimeZone?

Posted by Alan McBurney on March 15, 2011

When configuring the CustomSettings.ini file for MDT 2010 one thing I like to do is set the TimeZone. One problem I come across is trying to figure out the correct syntax for the time zone name.

Well there is a really handy command in Windows 7 that will give you the correct names called TZUtil.

TZUtil /g will display the current Time Zone

TZUtil /l will display all Time Zones.

Posted in MDT 2010 | Tagged: , | Leave a Comment »

MDT Refresh Task Sequence Failures

Posted by Alan McBurney on March 14, 2011

Lately I have been using MDT to refresh old machines with a fresh XP image.

The machines are all DELL and the task sequence kept bombing out during validation complaining that it couldn’t detect the disk\partition type.

After checking disk manager I noticed the standard DELL system partition configured as EISA which you can’t delete using Windows disk manager.

The solution was to use diskpart to remove the OEM partition and then the task sequence continued fine.

To remove the EISA partition follw these steps

From Command prompt run

  • DISKPART
  • List Disks
  • Select Disk 0
  • List Partitions
  • Select Partition x (In my case it was 0, be sure that its the right partition before continuing with the next step)
  • Delete Partition Override

Posted in DELL, MDT 2010 | Tagged: , | Leave a Comment »