How do I find the install time and date of Windows?

后端 未结 20 1173
孤街浪徒
孤街浪徒 2020-12-12 11:36

This might sound like a little bit of a crazy question, but how can I find out (hopefully via an API/registry key) the install time and date of Windows?

The best I c

相关标签:
20条回答
  • 2020-12-12 12:14

    Determine the Windows Installation Date with WMIC

    wmic os get installdate

    0 讨论(0)
  • 2020-12-12 12:19

    Another question elligeable for a 'code-challenge': here are some source code executables to answer the problem, but they are not complete.
    Will you find a vb script that anyone can execute on his/her computer, with the expected result ?


    systeminfo|find /i "original" 
    

    would give you the actual date... not the number of seconds ;)
    As Sammy comments, find /i "install" gives more than you need.
    And this only works if the locale is English: It needs to match the language.
    For Swedish this would be "ursprungligt" and "ursprüngliches" for German.


    In Windows PowerShell script, you could just type:

    PS > $os = get-wmiobject win32_operatingsystem
    PS > $os.ConvertToDateTime($os.InstallDate) -f "MM/dd/yyyy" 
    

    By using WMI (Windows Management Instrumentation)

    If you do not use WMI, you must read then convert the registry value:

    PS > $path = 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion'
    PS > $id = get-itemproperty -path $path -name InstallDate
    PS > $d = get-date -year 1970 -month 1 -day 1 -hour 0 -minute 0 -second 0
    ## add to hours (GMT offset)
    ## to get the timezone offset programatically:
    ## get-date -f zz
    PS > ($d.AddSeconds($id.InstallDate)).ToLocalTime().AddHours((get-date -f zz)) -f "MM/dd/yyyy"
    

    The rest of this post gives you other ways to access that same information. Pick your poison ;)


    In VB.Net that would give something like:

    Dim dtmInstallDate As DateTime
    Dim oSearcher As New ManagementObjectSearcher("SELECT * FROM Win32_OperatingSystem")
    For Each oMgmtObj As ManagementObject In oSearcher.Get
        dtmInstallDate =
            ManagementDateTimeConverter.ToDateTime(CStr(oMgmtO bj("InstallDate")))
    Next
    

    In Autoit (a Windows scripting language), that would be:

    ;Windows Install Date
    ;
    $readreg = RegRead("HKLM\SOFTWARE\MICROSOFT\WINDOWS NT\CURRENTVERSION\", "InstallDate")
    $sNewDate = _DateAdd( 's',$readreg, "1970/01/01 00:00:00")
    MsgBox( 4096, "", "Date: " & $sNewDate )
    Exit
    

    In Delphy 7, that would go as:

    Function GetInstallDate: String;
    Var
      di: longint;
      buf: Array [ 0..3 ] Of byte;
    Begin
      Result := 'Unknown';
      With TRegistry.Create Do
      Begin
        RootKey := HKEY_LOCAL_MACHINE;
        LazyWrite := True;
        OpenKey ( '\SOFTWARE\Microsoft\Windows NT\CurrentVersion', False );
        di := readbinarydata ( 'InstallDate', buf, sizeof ( buf ) );
    //    Result := DateTimeToStr ( FileDateToDateTime ( buf [ 0 ] + buf [ 1 ] * 256 + buf [ 2 ] * 65535 + buf [ 3 ] * 16777216 ) );
    showMessage(inttostr(di));
        Free;
      End;
    End;
    

    As an alternative, CoastN proposes in the comments:

    As the system.ini-file stays untouched in a typical windows deployment, you can actually get the install-date by using the following oneliner:

    (PowerShell): (Get-Item "C:\Windows\system.ini").CreationTime
    
    0 讨论(0)
  • 2020-12-12 12:19

    Ever wanted to find out your PC’s operating system installation date? Here is a quick and easy way to find out the date and time at which your PC operating system installed(or last upgraded).

    Open the command prompt (start-> run -> type cmd-> hit enter) and run the following command

    systeminfo | find /i "install date"

    In couple of seconds you will see the installation date

    0 讨论(0)
  • 2020-12-12 12:20

    You can simply check the creation date of Windows Folder (right click on it and check properties) :)

    0 讨论(0)
  • 2020-12-12 12:21

    We have enough answers here but I want to put my 5 cents.

    I have Windows 10 installed on 10/30/2015 and Creators Update installed on 04/14/2017 on top of my previous installation. All of the methods described in the answers before mine gives me the date of the Creators Update installation.

    I've managed to find few files` date of creation which matches the real (clean) installation date of my Windows 10:

    • in C:\Windows

    • in C:\

    0 讨论(0)
  • 2020-12-12 12:23

    Use speccy. It shows the installation date in Operating System section. http://www.piriform.com/speccy

    0 讨论(0)
提交回复
热议问题