Advertisement
Guest User

Untitled

a guest
Nov 9th, 2020
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. PS C:\WINDOWS\system32> (Get-CimInstance Win32_OperatingSystem).InstallDate
  2.  
  3. 25 августа 2020 г. 21:14:56
  4.  
  5.  
  6. PS C:\WINDOWS\system32> Get-Hotfix -id KB4562830, KB4517245 | ft HotFixID, Description, InstalledOn
  7. Get-Hotfix : Не удается найти запрошенное исправление на компьютере "localhost". Проверьте введенные данные и повторите
  8.  выполнение команды.
  9. строка:1 знак:1
  10. + Get-Hotfix -id KB4562830, KB4517245 | ft HotFixID, Description, Insta ...
  11. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  12.     + CategoryInfo          : ObjectNotFound: (:) [Get-HotFix], ArgumentException
  13.     + FullyQualifiedErrorId : GetHotFixNoEntriesFound,Microsoft.PowerShell.Commands.GetHotFixCommand
  14.  
  15. PS C:\WINDOWS\system32> Get-ChildItem -Path HKLM:\System\Setup\Source* | ForEach-Object {Get-ItemProperty -Path Registry::$_} | Select-Object ProductName, ReleaseID, CurrentBuild, @{n="Install Date"; e={([DateTime]'1/1/1970').AddSeconds($_.InstallDate)}} | Sort-Object "CurrentBuild"
  16.  
  17. ProductName                       ReleaseId CurrentBuild Install Date
  18. -----------                       --------- ------------ ------------
  19. Windows 10 Pro                    1511      10586        29.07.2016 14:45:49
  20. Windows 10 Pro                    1607      14393        24.09.2016 13:04:38
  21. Windows 10 Pro                    1703      15063        08.08.2017 2:38:09
  22. Windows 10 Pro                    1709      16299        27.01.2018 1:32:49
  23. Windows 10 Pro                    1803      17134        01.05.2018 1:24:42
  24. Windows 10 Pro                    1903      18362        28.06.2019 8:45:15
  25. Windows 10 Pro                    1909      18363        16.07.2019 12:34:30
  26. Windows 8.1 Pro with Media Center           9600         19.10.2013 1:24:06
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement