PS Restore Points – Systemwiederherstellung

# Systemwiederherstellung aktivieren Enable-ComputerRestore -Drive ‘C:\’, ‘D:\’ # Systemwiederherstellung deaktivieren Disable-ComputerRestore -drive “D:\” # Systemwiederherstellungspunkt erstellen Checkpoint-Computer “MYPOINT” Checkpoint-Computer -description “MYPOINT” -restorepointtype “MODIFY_SETTINGS” Checkpoint-Computer -description

Weiterlesen

Powershell AD – Objekte wiederherstellen Papierkorb

AD Objekte wiederherstellen Papierkorb aktivieren: Enable-ADOptionalFeature –Identity “CN=Recycle Bin Feature,CN=Optional Features,CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration,DC=domain,DC=com” –Scope ForestOrConfigurationSet –Target easycash.de Objekte wiederherstellen: Import-Module activedirectory Get-ADObject -filter * –IncludeDeletedObjects

Weiterlesen