To check the installation date of your Windows system #WindowsInstallDate #WindowsOS #WindowsCommands #cmd
To check the installation date of your Windows system, you can use any of these methods:
### Method 1: Using Command Prompt
1. Open Command Prompt by typing `cmd` in the Start menu and selecting **Run as administrator**.
2. Type the following command:
```
systeminfo | find "Original Install Date"
```
3. Press **Enter**. This will show the original installation date of Windows.
### Method 2: Using PowerShell
1. Open PowerShell by typing `PowerShell` in the Start menu.
2. Type the following command:
```powershell
(Get-CimInstance Win32_OperatingSystem).InstallDate
```
3. Press **Enter**. The install date will be displayed in the format `yyyyMMddHHmmss` (e.g., 20231025103000).
### Method 3: Using Windows Settings
1. Go to **Settings** > **System** > **About**.
2. Scroll down to the **Windows specifications** section.
3. Look for **Installed on** to see the installation date.
Choose any method, and let me know if you need more help!
Comments
Post a Comment