Server 2003 R2 question

shodge37

Member
Aug 9, 2007
153
0
0
This is my first time installing R2 on a server and I've tried it twice now and I can't figure out when it downloads SP2 how to make it be R2 and not just a regular SP2. I believe that the license I used was for R2. Is there a chance that the R2 just doesnt show up in System Info, but that it's really R2? I can't even find good guidance for this on microsoft's website. So I'm hoping someone here has experience with this.

TIA,
Sonja
 

CalvinHobbes

Diamond Member
Feb 27, 2004
3,524
0
0
The first disc of R2 is identical to the normal Windows 2003 server disc. The only place it actually says R2 is maybe on the login screen other than that it's identical. The thing that made it "R2" was really just the second CD that had all the extra utilities and tools.
 

RebateMonger

Elite Member
Dec 24, 2005
11,586
0
0
Did you install the second Install CD? That's what makes it "R2".

If it's SBS 2003 R2, it'll say so at the top right of the "Server Management Console".

Have you tried typing "Winver" at the MS DOS Command Prompt? This won't work for SBS, but it apparently works for straight Server 2003.

Also: Microsoft: How Can I tell which of our Windows 2003 Computers are running R2?

"Q: Hey, Scripting Guy! We have a bunch of Windows Server 2003 computers in our organization. Some of these computers are running Windows Server 2003 R2 and some are not. How can I tell which of our Windows Server 2003 computers are running R2?

-- TX


A: Hey, TX. You know, that?s a question that people have been trying to answer for hundreds and hundreds of years: how can I determine whether a computer is running Windows Server 2003 R2 or not? And we?re not exaggerating here, either: after all, who could ever forget Julius Caesar?s last words: ?R2, Brute??

Now, if a Julius Caesar had no idea how to determine whether or not a computer is running Windows Server 2003 R2, what makes anyone think the Scripting Guys can succeed where even the mighty Caesar failed? Well, it?s definitely true that Caesar had wealth, power, and a genius for military tactics. What he didn?t have, however, was WMI:

strComputer = "."

Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")

Set colItems = objWMIService.ExecQuery("Select * from Win32_OperatingSystem")

For Each objItem in colItems
If InStr(objItem.OtherTypeDescription, "R2") Then
WScript.Echo "This computer is running Windows Server 2003 R2."
Else
WScript.Echo "This computer is not running Windows Server 2003 R2."
End If
Next


Yes, we know: it seems like this script should be a little fancier than that, doesn?t it? But this will do the trick, and in just a second we?ll explain how, and why.

The script starts off like most WMI scripts: it simply makes a connection to the WMI service on the local computer. (And, like most WMI scripts it can easily be modified to run against a remote computer: just assign the name of that remote computer to the variable strComputer.) We then use this line of code to retrieve information about the operating system currently in use on the machine:

Set colItems = objWMIService.ExecQuery("Select * from Win32_OperatingSystem")

Now comes the part that will have people singing the praises of the Scripting Guys long after they have forgotten Julius Caesar. As it turns out, the Win32_OperatingSystem class includes a property named OtherTypeDescription. Throughout recorded history this property has always returned a Null value. (Try it on a computer running Windows 2000 Server or Windows XP or regular old Windows Server 2003. You?ll always get back the same value: Null.) On a computer running Windows Server 2003 R2, however, this property does return a value. Not only that, but that value includes the string R2. And that?s how you determine whether or not a computer is running R2: you simply check to see if the string R2 can be found anywhere within the OtherTypeDescription property.

Needless to say, then, that?s what we do with the rest of the script. We set up a For Each loop to walk through the collection of operating systems returned by our query. (There will be only one such operating system, but we still need to use a For Each loop, something which will not be the case in Windows Vista.) We then use the InStr function to check for the presence of the string R2 in the OtherTypeDescription property:

If InStr(objItem.OtherTypeDescription, "R2") Then

If InStr returns True we report back the fact that the computer is running R2; otherwise we report back the fact that the computer is not running R2. That?s all we have to do.

So is this the most important script ever written? Well, we wouldn?t go quite that far. On the other hand, Julius Caesar didn?t know about the OtherTypeDescription property and look what happened to him. So on second thought ?."
 

shodge37

Member
Aug 9, 2007
153
0
0
Originally posted by: RebateMonger
Did you install the second Install CD? That's what makes it "R2".

If it's SBS 2003 R2, it'll say so at the top right of the "Server Management Console".
I don't think I installed the second one...I guess that's what I need. What I really need the R2 version for is the replication components of DFS. Apparently these are not included in straight 2003.

I'll see if someone around here has Disc 2.

Thanks
 

shodge37

Member
Aug 9, 2007
153
0
0
Originally posted by: RebateMonger
If it's SBS 2003 R2, there ARE NO R2-type DFS features. It was removed from SBS 2003 R2.

no, this is not SBS. it is standard edition
 

mooseracing

Golden Member
Mar 9, 2006
1,711
0
0
It's on the second disk like what has been said then. I just did this about a week ago as one of our servers somehow missed the R2 features. I also had needed it for DFS. IIRC SP2 is the same for Server 03 and Server 03 R2
 

shodge37

Member
Aug 9, 2007
153
0
0
i just found this post and hopefully someone that knows about R2 can help me. i tried installing the Disc 2 on a VMWare Domain Controller a couple weeks ago and it would not even run the install. gave me an error about not being compatible with the system or something. i dont remember it exactly, but i could find out, if needed.

would anyone know if this could possibly result from the license keys being for different types of channels? i.e. open license vs. single or some other cause?
 

bsobel

Moderator Emeritus<br>Elite Member
Dec 9, 2001
13,346
0
0
Originally posted by: shodge37
i just found this post and hopefully someone that knows about R2 can help me. i tried installing the Disc 2 on a VMWare Domain Controller a couple weeks ago and it would not even run the install. gave me an error about not being compatible with the system or something. i dont remember it exactly, but i could find out, if needed.

would anyone know if this could possibly result from the license keys being for different types of channels? i.e. open license vs. single or some other cause?

A vmware domain controller????????
 

shodge37

Member
Aug 9, 2007
153
0
0
Originally posted by: bsobel
Originally posted by: shodge37
i just found this post and hopefully someone that knows about R2 can help me. i tried installing the Disc 2 on a VMWare Domain Controller a couple weeks ago and it would not even run the install. gave me an error about not being compatible with the system or something. i dont remember it exactly, but i could find out, if needed.

would anyone know if this could possibly result from the license keys being for different types of channels? i.e. open license vs. single or some other cause?

A vmware domain controller????????

yes...a virtual domain controller...

it wasn't me! it was my boss lol

 

bsobel

Moderator Emeritus<br>Elite Member
Dec 9, 2001
13,346
0
0
Originally posted by: shodge37
Originally posted by: bsobel
Originally posted by: shodge37
i just found this post and hopefully someone that knows about R2 can help me. i tried installing the Disc 2 on a VMWare Domain Controller a couple weeks ago and it would not even run the install. gave me an error about not being compatible with the system or something. i dont remember it exactly, but i could find out, if needed.

would anyone know if this could possibly result from the license keys being for different types of channels? i.e. open license vs. single or some other cause?

A vmware domain controller????????

yes...a virtual domain controller...

it wasn't me! it was my boss lol

Ok, what you meant to say is a Windows PDC running in a Vmware virtual machine. There is no construct called a vmware domain controller.

That said, sounds like your mixing the r2 second disk with a standard 2003 server install. You must install from the r2 disk 1 to be able to install from disk 2, you can not upgrade a 2003 server to r2 by just running the second disk.

 

shodge37

Member
Aug 9, 2007
153
0
0
Originally posted by: bsobel
Originally posted by: shodge37
Originally posted by: bsobel
Originally posted by: shodge37
i just found this post and hopefully someone that knows about R2 can help me. i tried installing the Disc 2 on a VMWare Domain Controller a couple weeks ago and it would not even run the install. gave me an error about not being compatible with the system or something. i dont remember it exactly, but i could find out, if needed.

would anyone know if this could possibly result from the license keys being for different types of channels? i.e. open license vs. single or some other cause?

A vmware domain controller????????

yes...a virtual domain controller...

it wasn't me! it was my boss lol

Ok, what you meant to say is a Windows PDC running in a Vmware virtual machine. There is no construct called a vmware domain controller.

That said, sounds like your mixing the r2 second disk with a standard 2003 server install. You must install from the r2 disk 1 to be able to install from disk 2, you can not upgrade a 2003 server to r2 by just running the second disk.

hhmmm...ok...i'll look into that. thanks
 
sale-70-410-exam    | Exam-200-125-pdf    | we-sale-70-410-exam    | hot-sale-70-410-exam    | Latest-exam-700-603-Dumps    | Dumps-98-363-exams-date    | Certs-200-125-date    | Dumps-300-075-exams-date    | hot-sale-book-C8010-726-book    | Hot-Sale-200-310-Exam    | Exam-Description-200-310-dumps?    | hot-sale-book-200-125-book    | Latest-Updated-300-209-Exam    | Dumps-210-260-exams-date    | Download-200-125-Exam-PDF    | Exam-Description-300-101-dumps    | Certs-300-101-date    | Hot-Sale-300-075-Exam    | Latest-exam-200-125-Dumps    | Exam-Description-200-125-dumps    | Latest-Updated-300-075-Exam    | hot-sale-book-210-260-book    | Dumps-200-901-exams-date    | Certs-200-901-date    | Latest-exam-1Z0-062-Dumps    | Hot-Sale-1Z0-062-Exam    | Certs-CSSLP-date    | 100%-Pass-70-383-Exams    | Latest-JN0-360-real-exam-questions    | 100%-Pass-4A0-100-Real-Exam-Questions    | Dumps-300-135-exams-date    | Passed-200-105-Tech-Exams    | Latest-Updated-200-310-Exam    | Download-300-070-Exam-PDF    | Hot-Sale-JN0-360-Exam    | 100%-Pass-JN0-360-Exams    | 100%-Pass-JN0-360-Real-Exam-Questions    | Dumps-JN0-360-exams-date    | Exam-Description-1Z0-876-dumps    | Latest-exam-1Z0-876-Dumps    | Dumps-HPE0-Y53-exams-date    | 2017-Latest-HPE0-Y53-Exam    | 100%-Pass-HPE0-Y53-Real-Exam-Questions    | Pass-4A0-100-Exam    | Latest-4A0-100-Questions    | Dumps-98-365-exams-date    | 2017-Latest-98-365-Exam    | 100%-Pass-VCS-254-Exams    | 2017-Latest-VCS-273-Exam    | Dumps-200-355-exams-date    | 2017-Latest-300-320-Exam    | Pass-300-101-Exam    | 100%-Pass-300-115-Exams    |
http://www.portvapes.co.uk/    | http://www.portvapes.co.uk/    |