Link to home
Start Free TrialLog in
Avatar of punkrawkdude99
punkrawkdude99

asked on

How to figure out what operating system is on a server without access to it

Ok so here is the scenario

I picked up a customer with a dead server.... old IT guy used basic windows backup with incremental backups...sigh... the max size is 64 GB

anyhow.... is there a way to go through the backed up files... like say perhaps the windows directly and identify what version of windows was actually installed on this old POS.... i am guessing windows 2003 server... not sure what SP or if it was R1 or R2....

I actually never have encountered this... usually i get servers that are half alive.... not completed dead...

i want to restore the system state and data to another PC however without knowing what OS it had it is virtually impossible....
Avatar of Will Szymkowski
Will Szymkowski
Flag of Canada image

If you have powershell installed you can query Active Directory for the machine you are looking for. From there it will tell you what OperatingSystem it is running.

Import-module activedirectory
Get-AdComputer -Identity <computername> -Properties OperatingSystem, OperatingSystemVersion | fl

Open in new window


Will.
Avatar of punkrawkdude99
punkrawkdude99

ASKER

the computer in question doesnt power on..

all i have is a somewhat current back up of it on an external drive....
SOLUTION
Avatar of McKnife
McKnife
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The computer does not need to be powered on to run the script above. If the computer account is still in active directory then you will be able to find the info you need.

Will.
Will,

You are saying to run the script from one of the workstations that is part of the domain?
That is correct. You need to have your Active Directory running on 2008 or higher to take advantage of Powershell. That is the caviet.

Also, if you are running this from a regular workstation you will also need to have Remote Server Admin Tools to be able to import the active directory module as well.

Will.
I'm guessing from the age of the server we are probably dealing with server 2003

I figured there would be an ini or cfg file somewhere in the %windir% that would identify the windows version and build
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial