How Can I Find Out What OS Was Originally Installed on My Windows Server?

0
14
Asked By CuriousCat42 On

I'm working with several servers upgraded to Windows Server 2019, and I know they were moved up from 2016 a while back. However, I'm uncertain if they were initially set up with Windows Server 2012 R2 before the 2016 upgrade. Is there a way to track and determine the original operating system that was installed on these servers?

5 Answers

Answered By TechWhiz99 On

You can check the registry to find out if your servers were upgraded. Look for the path `ComputerHKEY_LOCAL_MACHINESYSTEMSetupUpgrade`. If that key is there, it means an upgrade occurred. You can find the previous OS version in `DownlevelBuildNumber`. Also, within `ComputerHKEY_LOCAL_MACHINESYSTEMSetup`, you might see a sub-key named `Source OS (Updated on xxx)` for detailed info on what was installed before the upgrade.

Answered By OldSchoolSysAdmin On

You could also explore user profiles and application folders. When performing in-place upgrades, a lot of the original structure remains intact. Checking folder creation dates in the `Program Files` directory might give you a clue about the original install.

Answered By LogAnalyzer42 On

Another place to look is the `setupact.log` file located in `C:WindowsPanther`. This log usually contains information on how the OS was initially built, especially if it was set up through automated deployment tools. Just a heads-up, those logs can get really large, so use something like Notepad++ to open them; otherwise, it'll be a slow process with the regular Notepad.

Answered By CommandLineNinja On

Try using the command `systeminfo | find "Original"` in Command Prompt. It can tell you about the installation date, but I've noticed it sometimes doesn't work with every version of 2019—running a plain `systeminfo` might be necessary to get the info you need.

Answered By DellEnthusiast On

If you have the original quotes or specifications, like for a DELL system, entering the service tag on their support site can reveal which OS came pre-installed. That's a quick way to get the details.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.