Browsing the archives for the Windows Server category.


Group Policy Management Console and RSAT

Office, Vista, Windows Server, Work Experience

I suppose I could have expanded the title, but then it would cramp the page. ;)

Today’s scenario. Co-worker running vista, installs the Remote Server Administration Tools package, pops into the Administrative Tools folder and cannot find the Group Policy Management Console.image

The solution? The GPMC is disabled by default after installing RSAT. You need to visit Programs and Features in the Control Panel, and then click on the Turn Windows features on or off link to bring up what used to be called Windows Components. From that dialog, you can scroll down to find the Remote Server Administration Tools node and click the checkbox for each admin tool you need access to.

While you are in there, enable the telnet client. Been asked before where telnet disappeared to in Vista. It’s there, just not on by default.

For more information on the RSAT, visit KB 941314. It describes the tools and limitations of RSAT. Also, RSAT does not include the Hyper-V manager console. That can be downloaded with this link and more information is available in KB 952627.

No Comments

My every move, and Orlando bound…

Windows Server, tech-ed08


June is coming quickly, and there’s one thing that has always been associated with June for me — the annual trip to be with the techies at Tech-Ed. This year Microsoft has split the conference in two, maybe to free up space or allow more people to attend, but in either case I’ll be at the IT pro sessions the second week of June.

I’m excited to go this year to my fifth Tech-Ed conference, not only because there are great products, learning experiences, and weather in Orlando but this year I’ll have an even larger surrounding of friends and colleagues there than ever before.

Speaking on that issue, keeping track of everything that I’m up to can be quite a task with a number of web services out there. I’ve found that the best way to follow what I’m up to, reading, analyzing, or toying around with is to track my FriendFeed. This service aggregates all of my content from this blog, my Twitter account, and many other sources of publishing on the web that I do. It is a great gathering place for ideas and conversation as well. Sign up your content sources and share with the world.

With that, I can tell you that there’s a good post coming up shortly on doing a domain integration exercise when the acquired company is using Small Business Server. Not to be missed!

No Comments

Windows Server 2008 admin tools for Vista

Exchange, PowerShell, Vista, Windows Server

Now available and in the "must download" list of software.

Microsoft® Remote Server Administration Tools enables IT administrators to remotely manage roles and features in Windows Server® 2008 from a computer running Windows Vista® with Service Pack 1 (SP1).

Download Link (x86) | Download Link (x64)

While you are out, pick up the HyperV admin console for Vista SP1 as well.

No Comments

Loading multiple drivers into a PE 2.0 image

Windows Server

Here’s one that had us searching around the Internet the other day. We were adding drivers to a Windows PE 2.0 (Vista/2008) image with the PEIMG command. Unfortunately, as with most environments, we have a room full of servers with all different makes and models. In order to make the PE image as flexible as possible, we needed to include a large section of our driver library.

How to do it fast? Well, you could write a nifty script, or you could use the good ‘ol FOR command.

for /R .\ %i in (*.inf) do peimg /inf=”%i” e:\winpe_x86\mount\Windows

Simple. I love it. Tip of the hat goes to J. Greg for the idea. (one of those "hey, that’s so simple why didn’t we think of that!" moments).

No Comments

Active Directory & Exchange Schema Versions

Exchange, Windows Server

If you are running into environments and working on aspects of them such as Exchange, OCS, PKI, or other Active Directory integrated applications, you will encounter situations where you may need to update the AD schema. Of course, the first question is, what version am I at today?

Here’s a handy way to find out:

Query for the objectVersion attribute of the CN=Schema,CN=Configuration,DC=yourdomainhere of your Active Directory domain and compare the value to the table below.

I’ve provided links to the schema update information (where available), if you are curious as to what is updated in each.

objectVersion AD Schema Update
13 Windows 2000 Server
30 Windows Server 2003 **
31 Windows Server 2003 R2
44 Windows Server 2008

** The Windows Server 2003 upgrade from 2000 also adds the CN=Windows2003Update,CN=ForestUpdates,CN=Configuration,DC=yourdomainhere and sets its revision attribute to 9. This hasn’t been used again, yet.

Exchange Server saves the current version of its schema updates in an attribute of two locations.

For /forestprep operations, query the rangeUpper attribute of the CN=ms-Exch-Schema-Version-Pt,CN=Schema,CN=Configuration,DC=yourdomainhere object.

For /domainprep operations, query the Microsoft Exchange System Objects object in each domain for its objectVersion value.

The table below provides the number to version translation.

Value Exchange Version
4406 Exchange 2000 Server
6936 Exchange Server 2003
10628 Exchange Server 2007
No Comments
« Older Posts