Select Page

Required Files: None


Get a table showing Restore Points upload text file to Asset


 

Import-Module $env:SyncroModule
 
Get-ComputerRestorePoint | Format-Table SequenceNumber, @{Label="Date"; Expression={$_.ConvertToDateTime($_.CreationTime)}}, Description -Auto ; | Out-File C:\temp\restorepoints.txt
 
get-content "C:\temp\restorepoints.txt" | write-host