Windowsがコンピューターまたはデバイスにいつインストールされたかを知る必要がありますか、それとも知りたいだけですか?多分あなたはあなたの仕事のためにこの情報を必要としますか?何年にもわたる悪用の後、オペレーティングシステムがどれほど安定しているかを自慢したいからですか?または、 Windows(Windows)を再インストールせずに6か月以上実行したくない場合もあります。理由が何であれ、Windowsのインストール日を確認する方法は次のとおりです。
元のWindows(Windows)のインストール日を探すときに注意すること
まず、このガイドは、 (First)Windows 10、Windows 7、Windows 11を含むすべての最新のWindowsバージョンで機能することを知っておく必要があります。次に、共有するすべてのメソッドがテストされ、3つのバージョンすべてで機能することが確認されています。
ただし、インストールしたWindows(Windows)とそのインストール方法に応じて、自分自身を見つけることができる状況がいくつかあります。
- Windows(clean Windows install )のクリーンインストールを(最初から)行いました。この場合、このチュートリアルのすべてのメソッドが機能し、良好な結果が得られます。
- 古いバージョンのWindowsを新しいバージョンにアップグレードしました。たとえば、古いWindows7の更新としてWindows10をインストールしました。(You’ve upgraded your old version of Windows to a newer one, like installing Windows 10 as an update to your old Windows 7.)この場合、最初の4つの方法で、現在のWindowsバージョンのインストール日が表示されます。たとえば、Windows7をWindows10にアップグレードした場合、Windows7のインストール(Windows 10)日(Windows 7)ではなくWindows10のインストール日が表示されます。最初に使用したWindows(Windows)の元のインストール日、およびWindowsをアップグレードしたときの日付を確認する場合は(Windows)、このチュートリアルの最後の方法に従ってください。
- Windows10またはWindows11を使用しており、これがPCに搭載されている唯一のオペレーティングシステムです。ただし、最初にPCを入手したとき、または最初にWindowsをインストールしたときから、オペレーティングシステムは1つ以上のメジャーアップデートを受け取りまし(since you first got your PC or when you first installed Windows, the operating system received one or more major updates)た。たとえば、元々Windows 10 Creators Update(バージョン1703)がインストールされていましたが、それ以降、オペレーティングシステムは多くの更新を受け取り、現在、Windows 10 May 2021 Update(バージョン21H1)を実行しています。この場合、最初の4つの方法は、最後のバージョンまたはメジャーアップデートのインストール日を示します。元のインストール日( Windows10(Windows 10)を最初にインストールしたとき)を見つける方法を知りたい場合)、このガイドの最後の方法を確認してください。また、すべてのWindows10アップグレードのインストール日も表示されます。
1.コマンドプロンプト(Command Prompt)またはPowerShellでsysteminfoコマンドを使用してWindowsのインストール日を確認する方法(Windows)
最初の方法では、コマンドプロンプト(Command Prompt)またはPowerShellを使用します。好みに応じて、CMDを開く(Open CMD)か、 PowerShellを起動します。(start PowerShell)管理者権限で開く必要はありません。次のコマンドを入力して、キーボードのEnterキーを押します。(Enter)
systeminfo | find "Install Date"
Windowsのインストール日を確定するには、cmdを使用してsysteminfo|を実行します。「インストール(Install) 日(Date)」を検索
1〜2秒で、元のインストール日(Original Install Date)が表示されます。
2.ファイルエクスプローラー(File Explorer)またはWindowsエクスプローラーから(Windows Explorer)Windowsのインストール日を確認する方法
Windows10またはWindows11(Windows 11)を使用している場合は、ファイルエクスプローラーを開きます(open File Explorer)。Windows 7を使用している場合は、Windowsエクスプローラー(Windows Explorer)を開きます。次に、Windowsがインストールされている(Windows)C:ドライブに移動し、 Windowsフォルダーを右クリックして、[プロパティ(Properties)]を選択します。
Windowsフォルダを見つけて、そのプロパティを開きます
[ Windowsのプロパティ]ウィンドウで、[(Windows Properties)全般(General)]タブの[作成済み(Created)]フィールドを探します。これは、Windowsフォルダーがコンピューターまたはデバイス上にいつ作成されたかを示します。このフォルダは、 Windows(Windows)をインストールしたときに作成されました。
WindowsがいつインストールされたかをWindowsの(Windows) プロパティで確認します(Properties)
プログラムファイル(Program Files)などの他のシステムフォルダを使用して、同じ手順に従うことができます。
3.Windows10(Windows 10)の設定でOSのインストール日を確認する方法
Windows 10を使用している場合は、設定アプリを開き(open the Settings app)ます。次に、[システム]に移動し、[(System)バージョン情報](About)を選択します。[設定](Settings)ウィンドウの右側で、 [ Windowsの仕様(Windows specifications)]セクションを探します。そこで、下で強調表示されている「インストール先」(“Installed on”)フィールドにインストール日が表示されます。
設定でWindows10(Windows 10)のインストール日を確認する方法
4. wmiおよびレジストリコマンドを使用して、 PowerShellで(PowerShell)Windowsのインストール日を確認する方法
PowerShellでは、必要な結果を返す他のより複雑なコマンドを実行できます。PowerShell(Open PowerShell)を開き、次のコマンドを実行します。
([WMI]'').ConvertToDateTime((Get-WmiObject Win32_OperatingSystem).InstallDate)
PowerShellでWindowsのインストール日を確認する
数秒後、読み取り可能な形式でインストール日が表示されます。
別のコマンド( PowerShell(PowerShell)で使用できます)は、インストール日を格納するレジストリキーの値を読み取ります。コマンドは次のとおりです。
[timezone]::CurrentTimeZone.ToLocalTime(([datetime]'1/1/1970').AddSeconds($(get-itemproperty 'HKLM:\Software\Microsoft\Windows NT\CurrentVersion').InstallDate))
PowerShellから(PowerShell)Windowsのインストール日を取得する
次に、インストール日を読み取り可能な形式で表示します。唯一の問題は、それが拡張コマンドであるということです。幸い、このチュートリアルからコピーして、PowerShellウィンドウに貼り付けることができます。
5.元のインストール日はいつですか。Windows 10がいつインストールされたかを確認するにはどうすればよいですか?(&アップグレード)
この最後の方法では、PowerShellを使用して(PowerShell)Windowsレジストリ(Windows Registry)から情報を抽出し、読み取り可能な形式に変換します。これは、 Windows(Windows)の元のインストール日を知ることができる唯一の方法でもあります。
古いバージョンのWindows(Windows)(Windows7からWindows10など)(Windows 10)にアップグレード(Windows 7)した場合、またはWindows 10が時間の経過とともに1つ以上のメジャーアップデートを受信した場合、元のWindowsインストール日を確認するのは非常に難しい場合があります。仕組みは次のとおりです。
PowerShellを開き、次の2つのコマンドを実行します(コピーして貼り付けることができます)。
$OS=@(Get-ChildItem -Path HKLM:\System\Setup\Source* | ForEach-Object {Get-ItemProperty -Path Registry::$_}; Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion')
$OS | Select-Object ProductName, ReleaseID, CurrentBuild, @{Name='InstallDate'; Expression={[timezone]::CurrentTimeZone.ToLocalTime(([datetime]'1/1/1970').AddSeconds($_.InstallDate))}} | Sort-Object "InstallDate"
Enterキー(Enter)を押して、 PowerShellが特定された(PowerShell)Windowsのインストール日のリストを表示するのを確認します。
高度なPowerShell(PowerShell)コマンドを使用して、 Windowsの元のインストール日とそれに続くアップグレードを確認します
ご覧のとおり、テスト用のWindows 10コンピューターでは、2021年8月4日に(August 4)Windows 7 Ultimateが最初にインストールされました。ただし、その後、 Windows 10にアップグレードし、その後、他の2つのメジャーアップデートもインストールしました。チュートリアルで以前の方法を使用すると、最新のWindows 10インストール日であるバージョン2009のみが提供されます。この方法では、 Windowsレジストリで利用可能なすべての(Windows Registry)Windowsインストール履歴が表示されます。
Windowsがいつインストールされたかを確認する他の方法を知っていますか?
Windowsのインストール日時を取得する方法は他にもあるかもしれません。それでも、理解できるように、提供されたデータを変換する必要がある場合もあります。Windowsのインストール日を示す他の方法を知っている場合は、以下のコメントでそれらを共有してください。他の読者を助けるために、このチュートリアルをできるだけ早く更新することをお約束します。
Find out when Windows was installed. What is its original install date?
Do you nеed or јust want to know when Windows was installed on your сomputer or device? Maybe you need this іnformation for yoυr work? Is it because you want to brag about how stable your operatіng systеm is after all these years of abuse? Or pеrhaps you just don’t wаnt your Windows to run for more than six months without reinstalling іt. Whatever the rеason, here’s how to check the Windows installation date:
Things to be aware of when looking for the original Windows install date
First of all, you should know that this guide works for all modern Windows versions, including Windows 10, Windows 7, and Windows 11. Secondly, all the methods we share are tested and confirmed to work in all three versions.
However, there are a couple of situations in which you can find yourself, depending on what Windows you installed and how you installed it:
- You did a clean Windows install (from scratch). In this case, all the methods in this tutorial work and deliver good results.
- You’ve upgraded your old version of Windows to a newer one, like installing Windows 10 as an update to your old Windows 7. In this case, the first four methods show you the installation date of your current Windows version. For example, if you upgraded Windows 7 to Windows 10, they show you the installation date of Windows 10, not that of Windows 7. If you want to find the original installation date of the first Windows you had, as well as when you upgraded Windows, follow the last method of this tutorial.
- You use Windows 10 or Windows 11, and it is the only operating system you had on your PC. However, since you first got your PC or when you first installed Windows, the operating system received one or more major updates. For example, although you originally had Windows 10 Creators Update installed (version 1703), the operating system has received many updates since then, and right now, you’re running Windows 10 May 2021 Update (version 21H1). In this case, the first four methods show you the installation date of the last version or major update. If you want to know how to find the original install date (when you first installed Windows 10), check the last method of this guide. It also shows you the installation dates of all the Windows 10 upgrades.
1. How to find the Windows install date using the systeminfo command in Command Prompt or PowerShell
The first method involves using the Command Prompt or PowerShell. Open CMD or start PowerShell, depending on what you prefer. You do not have to open it with administrator rights. Type the following command and press Enter on your keyboard:
systeminfo | find "Install Date"
To fin the Windows installation date, use cmd to run systeminfo | find "Install Date"
In a second or two, you see the Original Install Date displayed.
2. How to check the Windows install date from File Explorer or Windows Explorer
If you use Windows 10 or Windows 11, open File Explorer. If you use Windows 7, open Windows Explorer. Then, navigate to the C: drive where Windows is installed, right-click the Windows folder, and choose Properties.
Locate the Windows folder and open its Properties
In the Windows Properties window, look for the Created field in the General tab. It shows when the Windows folder was created on your computer or device. This folder was created when you installed Windows.
Find out the when Windows was installed in the Windows Properties
You can follow the same procedure using other system folders like Program Files.
3. How to check the OS installation date in Windows 10’s Settings
If you are using Windows 10, open the Settings app. Then, go to System, and choose About. On the right side of the Settings window, look for the Windows specifications section. There, you have the installation date in the “Installed on” field highlighted below.
How to check the Windows 10 install date in Settings
4. How to find the Windows install date with PowerShell, using wmi and registry commands
In PowerShell, you can run other, more complex commands that return the result you want. Open PowerShell, run the command:
([WMI]'').ConvertToDateTime((Get-WmiObject Win32_OperatingSystem).InstallDate)
See the Windows installation date in PowerShell
After a few seconds, you see the installation date in a readable format.
Another command (that you can use in PowerShell) reads the value of a registry key that stores the installation date. The command is the following:
[timezone]::CurrentTimeZone.ToLocalTime(([datetime]'1/1/1970').AddSeconds($(get-itemproperty 'HKLM:\Software\Microsoft\Windows NT\CurrentVersion').InstallDate))
Get the Windows install date from PowerShell
It then displays the installation date in a readable format. The only issue is that it’s an extended command. Luckily, you can copy it from this tutorial and paste it into your PowerShell window.
5. What is the original install date? How do I find out when Windows 10 was installed? (& upgraded)
This last method uses PowerShell to extract information from the Windows Registry and convert it to a readable format. It’s also the only method we know that can tell you the original installation date of Windows.
The original Windows install date might be very difficult to find out if you’ve upgraded from an older version of Windows (like from Windows 7 to Windows 10), or if your Windows 10 has received one or more major updates as time passed by. Here’s how it works:
Open PowerShell and run the following two commands (you can copy/paste them):
$OS=@(Get-ChildItem -Path HKLM:\System\Setup\Source* | ForEach-Object {Get-ItemProperty -Path Registry::$_}; Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion')
$OS | Select-Object ProductName, ReleaseID, CurrentBuild, @{Name='InstallDate'; Expression={[timezone]::CurrentTimeZone.ToLocalTime(([datetime]'1/1/1970').AddSeconds($_.InstallDate))}} | Sort-Object "InstallDate"
Press Enter and watch PowerShell show you the list of Windows installation dates identified:
Find out what is the original install date of Windows and following upgrades using advanced PowerShell commands
As you can see, on our test Windows 10 computer, we’ve had Windows 7 Ultimate originally installed on August 4, 2021. However, after that, we’ve upgraded to Windows 10 and also installed two other major updates afterward. Using the previous methods in our tutorial would only deliver the latest Windows 10 installation date, version 2009. This method shows you all the Windows installation history available in the Windows Registry, which is better, don’t you think?
Do you know other methods for checking when Windows was installed?
There might be other methods for getting the Windows installation date and time. Still, they might also require you to convert the data they give, so that you can understand it. If you know other methods that give you the Windows installation date, share them in a comment below. We promise to update this tutorial as soon as possible to help other readers.