Find OS Architecture using Win32_OperatingSystem class

WMI queries to find 64 and 32 bit computers: SELECT * FROM Win32_OperatingSystem WHERE OSArchitecture = “64-bit” SELECT * FROM Win32_OperatingSystem WHERE OSArchitecture = “32-bit”

October 19, 2012 · 1 min · 25 words · Vitalie Ciobanu

Install software using Task Sequence

Besides using Software Distribution to install software, you can do this using a Task Sequence too. This can be done during and Operating System Deployment process or not. Usually, I install software during an OSD. For this, you must have a package for that software product (of course) and at least one program that runs…

November 20, 2009 · 2 min · 229 words · Vitalie Ciobanu

During OSD, format first partition only

Our helpdesk asked me to make a task sequence that can be used on computers with more than one partition. In this case, I had to make sure that the operating system will install only on first partition and will not touch the data on other partitions. To achieve this, I copied another TS and…

August 13, 2009 · 1 min · 142 words · Vitalie Ciobanu

Deploy ePolicy Orchestrator (ePO) agent

Having to create a package with McAfee ePO agent, I wanted to make it available to task sequence too so it can be installed during the operating system setup. For this, I had to make it install unattended or silent not requiring any user input. As I have never worked with McAfee, first, I did…

May 14, 2009 · 1 min · 198 words · Vitalie Ciobanu

Failed to Run Task Sequence – 0x80072EE7

If you receive the following error: “An error occurred while retrieving policy for this computer (0x80072EE7)” when Task Sequence Wizard starts, this can happen if you have DHCP or DNS problems. You should check if you can contact the DHCP server in order to get an IP address or you can configure a static IP…

March 26, 2009 · 1 min · 71 words · Vitalie Ciobanu

Failed to Run Task Sequence

I just spent half an hour trying to understand why my task sequence cannot find the files on a distribution point; although the TS runs normally, I see all available TSs and I can choose the one I need. Then I found why: I missed something I never missed before and that must not be…

March 26, 2009 · 2 min · 247 words · Vitalie Ciobanu

Troubleshooting Task Sequences in SCCM

I don’t do this usually, but this time this is really interesting. I want to recommend a very good blog post written by Kenneth Van Surksum about troubleshooting Task Sequences in Configuration Manager. Find it here http://www.techlog.org/archive/2009/03/01/troubleshooting_task_sequences. He talks about the smsts.log file, where to find it during installation and what tool you can use…

March 3, 2009 · 1 min · 89 words · Vitalie Ciobanu

Setup Windows and ConfigMgr – 0x80004005

Suppose you have created a task sequence, advertised it and booted from task sequence media or however you want; if you receive the following error: “Task Sequence: has failed with the error code (0x80004005). For more information, please contact your system administrator or helpdesk operator.” at Setup Windows and ConfigMgr step you might…

February 11, 2009 · 1 min · 143 words · Vitalie Ciobanu

“The hash value is not correct”

Here is another error related to Task Sequence and MDT 2008. After creating and advertising a task sequence, most probably you will run it :). Make sure you have the latest version of your packages on the distribution point, otherwise you will receive an error while running the task sequence. This will be something like…

December 31, 2008 · 1 min · 159 words · Vitalie Ciobanu

“The ConfigMgr Provider reported an error”

Today I came across an interesting problem in ConfigMgr while creating a Windows Vista image of reference computer. And again, ConfigMgr 2007 displays the error with not much intuitive help. I’m using Microsoft Deployment Toolkit 2008 with ConfigMgr 2007 when I need to deploy an operating system. At the end of the imported Task Sequence,…

December 31, 2008 · 2 min · 236 words · Vitalie Ciobanu