Skip to content
Follow
Windows

How to Check When Windows Was Installed on Your PC

Richard
Written by
Richard
Nov 18, 2021 Updated Jul 14, 2026 3 min read
How to Reset Your Microsoft Account Password
How to Reset Your Microsoft Account Password

Knowing when Windows was installed on your PC tells you how old your operating system is, which can help fix slow performance or check if you have the latest version, like Windows 11.

This information is found in two main places: the system’s uptime or the Windows Event Logs.

Checking your system’s uptime is a quick way to estimate your Windows version. If you recently installed Windows, this number will be low. The Task Manager shows your PC’s uptime and resets after a fresh Windows installation.

You can also find the exact date your operating system first started by looking in the Event Viewer. This tool keeps a record of system events, including the very first boot after installation.

⚡ Quick Answer

Open Command Prompt or PowerShell and type `wmic os get installdate` or `([WMI]”).ConvertToDateTime((Get-WmiObject Win32_OperatingSystem).InstallDate`) respectively. This will display the original installation date of your Windows operating system.

What happens when you are done?

📝Good to Know
The Windows Registry editor displays the specific date and time your current Windows operating system build was deployed. This confirmation provides a clear baseline for your system's maintenance history, helping you decide if a clean install is needed.

Method 1Using Command Prompt

You can easily check your Windows installation date using the Command Prompt. Just open the tool, type a short command, and press Enter to see exactly when Windows was first put on your computer.

  1. Click the Start menu.
  2. Type Command Prompt in the search bar.
  3. Select the app from the list.
Searching for Command Prompt in the Windows 11 start menu
windows 11 search for command prompt 1

When the black window opens, type this command and press Enter:

💻Code
wmic os get installdate

You will see a line that looks like this:

Original Install Date: 20210629200901.000000+000

Command Prompt window displaying the Windows original install date information
windows find installed date

If you want to see more details, simply type the following and press Enter:

systeminfo

Systeminfo command output showing the specific Windows original install date
windows find oritinal installed date

For more details, visit the official Microsoft documentation on systeminfo.

Method 2Using PowerShell

PowerShell offers another quick way to find your Windows installation date. Right-click the Start button, pick PowerShell or Terminal, type a specific command, and hit Enter to see when Windows was installed on your PC.

  1. Right-click the Start button and select Terminal or PowerShell.
  2. Type the following command and press Enter:
💻Code
([WMI]'').ConvertToDateTime((Get-WmiObject Win32_OperatingSystem).InstallDate)

This command translates the raw system data into a human-readable format immediately.

Method 3Using the Registry Editor

Your Windows installation date is stored within the Registry Editor, a tool that requires administrator access. You can find this information by opening the Registry Editor, going to a specific location, and looking for the ‘InstallDate’ value.

First, open Registry Editor by typing regedit in the Start menu search.

Navigate to this path:

🗝️Registry
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion

Find the file named InstallDate. The value you see is in “epoch time.” To make sense of it, copy that number and use an epoch converter website to turn it into a normal date.

Summary

📝Good to Know
Finding your Windows installation date is simple. You can use the Command Prompt, PowerShell, or the Registry Editor. Remember that if you upgraded your OS, the date reflects that upgrade. Always check your OS build version to ensure your system is fully up to date.

Does a Windows update change the original installation date?

Generally, no. Standard Windows updates do not change the original installation date. However, performing a major “feature update” or a “repair install” of the operating system can sometimes reset this timestamp to the date the new files were deployed to your hard drive.

Why does the Registry show a different date than the Windows folder?

The Windows folder creation date reflects when the directory was first placed on the drive. The Registry InstallDate reflects when the OS configuration was finalized. If you moved your drive or performed a major upgrade, these dates may differ due to how Windows tracks system deployment.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Uninstall Programs in Windows 11
Windows How to Uninstall Programs in Windows 11
How to Set Windows Terminal to Open with Command Prompt on Windows 11
Windows How to Set Windows Terminal to Open with Command Prompt on Windows 11
How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11
Windows 11 Taskbar: What is the Start Feature
Windows Windows 11 Taskbar: What is the Start Feature

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *