How to change Installed On date to current on win10 setting about page


  1. Posts : 2
    window10
       #1

    How to change Installed On date to current on win10 setting about page


    Pls. How to change Installed On date to current date on windows 10 setting about page..
    i already change to current date from registry, cmd->systeminfo-> Original install date is changed, but not affect to Setting about page.

    How to change Installed On date to current on win10 setting about page-screenshot-2020-09-11-104243.png


    How to change Installed On date to current on win10 setting about page-screenshot-2020-09-11-103500.png

    - - - Updated - - -

    Already solve...

    - - - Updated - - -

    Already solve .....
      My Computer


  2. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #2

    Welcome to TenForums @rawley.

    Perhaps you could share your solution so that anyone with the same problem coming across this thread can also benefit!

    Thanks.
      My Computer


  3. Posts : 2
    window10
    Thread Starter
       #3

    change the value of "InstallTime" in registry..
      My Computer


  4. Posts : 18,044
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #4

    rawley said:
    change the value of "InstallTime" in registry..
      My Computer


  5. Posts : 5
    Windows
       #5

    My custom powershell script to spoof the Install Date + Time


    Code:
    # Generating a random date between Jan 1, 2011, and Dec 31, 2022
    $start = [datetime]::new(2011, 1, 1)
    $end = [datetime]::new(2022, 12, 31)
    $randomDate = $start.AddSeconds((Get-Random -Maximum (($end - $start).TotalSeconds)))
    
    # Converting the DateTime object to Unix timestamp
    $unixTimestamp = [int][double]::Parse(($randomDate.ToUniversalTime() - [datetime]'1970-01-01T00:00:00').TotalSeconds)
    
    # Calculating LDAP/FILETIME timestamp directly
    $LDAP_FILETIME_timestamp = ($unixTimestamp + 11644473600) * 10000000
    
    Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name "InstallDate" -Value "$unixTimestamp" -Force
    Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name "InstallTime" -Value "$LDAP_FILETIME_timestamp" -Force
    
    if ((Get-Service w32time).Status -eq 'Stopped') {
    	Start-Service -Name w32time
    }
    
    w32tm /config /syncfromflags:manual /manualpeerlist:"0.pool.ntp.org 1.pool.ntp.org 2.pool.ntp.org 3.pool.ntp.org" /update
    Restart-Service -Name w32time -Force ; w32tm /resync
    How to change Installed On date to current on win10 setting about page-d200gv8kfx.pngHow to change Installed On date to current on win10 setting about page-dpe3baxapi.png
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 10:27.
Find Us




Windows 10 Forums