Add TCP/IP printer – Access Denied

Yesterday I was trying to install a network printer on Windows Server 2008 system. After typing printer’s IP address, I received an “Access denied” error. The problem was that I tried to install the printer while I was logged on with a user that had domain admin privileges, but not the default domain Administrator account.…

February 10, 2010 · 1 min · 94 words · Vitalie Ciobanu

Find computer model and manufacturer using remote WMI

In case you need to find the computer model and manufacturer of a remote computer, just use the following command in a command prompt window: %windir%\System32\wbem\WMIC.exe /node:”ComputerNameORIpAddress” ComputerSystem Get Model, Manufacturer If you need to specify user credentials, use the following command: %windir%\System32\wbem\WMIC.exe /node:”ComputerNameORIpAddress” /user:”domain\username” /password:”password” ComputerSystem Get Model, Manufacturer

January 18, 2010 · 1 min · 50 words · Vitalie Ciobanu

Upgrade Configuration Manager client

Recently I reinstalled ConfigMgr server in my company and was looking for an easy method to upgrade all Configuration Manager clients to 4.00.6487.2000 version. Put some notes on the table and finally made the following plan: Create a report that counts all client versions. (This is optional, just for informational purposes). Report query is:SELECT TOP…

January 14, 2010 · 2 min · 216 words · Vitalie Ciobanu

Problem installing WSUS on a remote SQL server.

Today I again learned a lesson I knew for some time but was hoping that I can forget it. The lesson was about: “Trust anyone. Test for yourself.” Having to install WSUS on a remote SQL 2005 that had WSUS database installed before, I asked one SQL guy if renaming the old WSUS database is…

January 8, 2010 · 2 min · 240 words · Vitalie Ciobanu

How to create a Windows Image (.wim) file

Depending on what you need the .wim file for, you can create it manually or automatically. – To manually create a .wim file (capture image) you need a bootable CD with Windows PE (with ImageX.exe included) that you can create using Windows Automated Installation Kit. The basics steps are: Boot your computer using Windows PE…

December 21, 2009 · 2 min · 253 words · Vitalie Ciobanu

Windows cannot obtain the domain controller name error

Today a client called me and said that his second domain controller, which is on Hyper-V, is having connectivity problems. For example, running the ping command from DC2 results in very bad response times or timed out requests. Searching the event viewer, I saw many errors with Event ID 1054: “Description: Windows cannot obtain the…

December 10, 2009 · 3 min · 534 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

WMI query for processor manufacturer

Following the post regarding how to install drivers based on computer model using WMI query, here is another query you can use in your task sequences to install some processor specific software for example. To find the processor manufacturer during a task sequence, insert a condition for the step you need, and select Query WMI.…

November 10, 2009 · 1 min · 107 words · Vitalie Ciobanu

How To: Operating System deployment with MDT 2010 and ConfigMgr 2007 SP2

Johan Arwidmark, Setup & Deployment MVP, just finished working on his Version 2.0 Deployment CD. It contains the following step-by-step guides and video tutorials: MDT 2010 Lite Touch Deployments (deployment without ConfigMgr 2007 SP2 R2, just the free tools) LTI01 – Installing the server for MDT 2010 Lite Touch LTI02 – Creating a Windows 7…

October 30, 2009 · 1 min · 188 words · Vitalie Ciobanu

All reports with links to other reports

Last month, after restoring the only ConfigMgr site and importing new reports, I saw that none of the reports I’m using have a link to another report. To be sincere, this was a problem I didn’t know where to start troubleshooting. Thanks to guys from Microsoft’s ConfigMgr forum, who helped me identify the problem and…

October 2, 2009 · 1 min · 194 words · Vitalie Ciobanu