WIM image has deployed to wrong partition using SCCM 2012

When you’re deploying an WIM image using System Center Configuration Manager 2012, by default the installation is done on the D:\ partition of your system. Huh….D:\ partition?? But my task sequence say C:\?? Yes indead!! During the task sequence you’ll see ”applying image 1 to C:\”, but after rebooting the system, there is no C:\ drive!! Only a D:\ drive!!

To fix this problem, you’ll need to add a new task within the task sequence.

1.) Open the System Center Configuration Manager 2012 Console
2.) Navigate to the task sequence and click Edit
3.) After the partition task, add a new task named Set Task Sequence Variable
4.) The name of the Task Sequence Variable is: Disable Disk Drive Letter (this can be anything you want!)
5.) The Task Sequence Variable will be: OSDPreserveDriveLetter
6.) The value will be: False
7.) Just PXE boot the machine again and watch te result!

Deploy_01    Deploy_02    Deploy_03

Deploy_04    Deploy_05    Deploy_06

Deploy_07   Deploy_01    Deploy_02

Deploy_03    Deploy_08

Error “Cannot edit the object, which is in use by Site P01″ in SCCM 2012

Today I want to edit an task sequence within SCCM 2012 and I received the following error message: “Cannot edit the object, which is in use by site P01″. Mmmm….that’s strange!! I’m the only Sysadmin with an ConfigMgr 2012 Management Console. To unlock this object, I’ve used an query within SQL.

1.) Open the SQL Management Console and navigate to the ConfigMgr database
2.) Open a new query
3.) To view all the locked objects, type the following query:
select * from SEDO_LockState
Execute the query and watch te results
4.) We see one object that is locked
5.) Note the ID of this specific object
6.) To unlock this object, type the following query:
delete from SEDO_LockState where ID=’ID of the object’
Execute the query and watch the results
7.) Now the object is succesfully unlocked and you’re able to edit the task sequence

Locked_01    Locked_02    Locked_03

Locked_04    Locked_05    Locked_06

Locked_07

How to: Print multiple documents from Windows Explorer using RES Workspace Manager

Normally users have the ability to right click on a file, or multiple files in the Windows Explorer, and print the file(s). When using RES Workspace Manager, this option is default not available for all your file extensions. This is a feature that you want enable for your users, for example for PDF files. So let’s configure this option.

1.) First of all start the RES Workspace Manager console
2.) Navigate to Composition / Applications /  Adobe Reader XI (in my example for PDF files)
3.) Navigate to the Properties / File Types tab and click Add
4.) Add the PDF file extension
5.) Select the command Print
6.) Select the parameter “%1″, this is default
7.) Now login with a user again and the Print option for PDF files within the Windows Explorer is back again!

2013-06-13_14h10_47    2013-06-13_14h11_17    2013-06-13_14h12_00

2013-06-13_14h12_32    2013-06-13_14h15_20

Hyper-V 2012 R2 announced!

Last week on TechEd North America, Windows Server 2012 R2 is announced. Here are some highlights of “Hyper-V – What’s New in Windows Serve 2012 R2” session (MDC-B330):

Generation 2 VM: A generation 2 VM knows that it is virtualized! It can boot ISCSI and synthetic NIC, so no emulated hardware anymore! A generation 2 VM is available for Windows 8 and Server 2012 or higher. Converting a VM to a generation 2 VM is not possible.
Automatic Activation: No more KMS servers in your environment to activate your guest VM’s. Now it is possible to automaic activate your guest VM’s using OEM or volume licenses.
Online VHDX resize: Do you need any more disk space? Increase and decrease the size of the virtual hard disks online. The VM is up and running while performing this action!
Zero downtime upgrade: Upgrade from Windows Server 2012 Hyper-V to Windows Server 2012 R2 Hyper-V without any downtime using cross version live migration.
Faster Live Migration: Live Migration is about 2 times faster now using compression.
Linux guest support: Linux VM’s are fully supported now. Use dynamic memory, online backup, online VHDX resize and better video experience using new video drivers.
Compatibility with Windows Azure IaaS:  Windows Azure IaaS uses exactly the same Virtualization as Windows Server 2012 Hyper-V, so VM’s can be moved between your private cloud and the public cloud!
Enhanced VM inteaction: Remote Desktop over the VMBUS, which enables full remote desktop capabilities, copy files, enhanced login, audio redirection, and even more.

There are a lot of more new features and capabilities within the new Hyper-V 2012 R2 release. Hopefully I can see some information in Madrid at the Microsoft TechEd Europe! :)

Upgraded my homelab!!

Finally my new home lab environment is up and running. After building a copple of hours, my new monster was ready to rock!! I’ve installed Windows Server 2012 with the Hyper-V server role….and WOW, it really rocks!! The next few moths I’m going to build a big environment, with System Center 2012, Exchange 2013, Windows Server 2012 and many, many, many more cool products!! :)

* AMD A8 3870K 3.00GHz 4MB FM1 Box
* Asus F1A75-V PRO AMD A75, SATA600 RAID, HDMI
* Corsair 32GB PC3-14900 DDR3 SDRAM Vengeance (4x 8GB, 1866MHz)

IMG_3306    IMG_3307

Exchange 2013 Architecture Poster available

Microsoft has released the Exchange Server 2013 Architecture Poster. To download the poster, click on the image below.

EXC2013_Poster

Passed the 70-246 and 70-247 exams. Now officially MCSE 2012 Private Cloud

Yesterday and today I passed the 70-246 and 70-247 exams! Right now I’m officially Microsoft Certified Solutions Expert 2012 Private Cloud (MSCE 2012). After a couple of months preperation, reading books, reading blogpost and building, building and again building some lab environments, the big day was there!! After two hours, I hit the the final button….YES, passed the first exam! Today I also passed the second exam!

With the upcoming TechEd Europe 2013 event in Madrid, it’s a great timing to have the MSCE 2012 Private Cloud status in the pocket. Do you know where I’m going to dream about this night….right, my own private cloud!! ;)

Header800x300HeartCloudAnimation

How to: Create multiple boundaries in ConfigMgr 2012 within a few seconds

When you’re installing and configuring a new ConfigMgr 2012 environment, one of the steps is to configure the right boundaries for your environment. Sometimes there’re only a few boundaries you have to create, but what if there’re several boundaries to configure. Are you gonna click that much….Let’s create some Powershell command to do the job for us.

1.) First of all we are going to import the ConfigMgr 2012 Powershell module. Use the x86 Windows PowerShell, bacause x64 is not supported!!
Import-Module “C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\bin\ConfigurationManager.psd1″
4.) Make a connection to your Primary Site server
Set-Connection P01
3.) Now we are going to create some new boundaries. In this example a whole IP subnet (172.16.10.0 and 172.16.11.0)
New-CMBoundary -Name “Client VLAN1″ -Type IPsubnet -Value “172.16.10.0″
New-CMBoundary -Name “Client VLAN2″ -Type IPsubnet -Value
“172.16.11.0″
5.) Create a new boundary group. In my example “Main Building”
New-CMBoundaryGroup -Name “Main Building”
6.) The next step is to add the boundaries to the right boundary group
Add-CMBoundaryToGroup -BoundaryName “Client VLAN1″ -BoundaryGroupName “Main Building”
Add-CMBoundaryToGroup -BoundaryName “Client VLAN2″ -BoundaryGroupName “Main
Building”

Now the job is done. How easy and fast was that…

CMB_01    CMB_02    CMB_03

CMB_04    CMB_05    CMB_06

CMB_07    CMB_08    CMB_09

CMB_10    CMB_11    CMB_12