Posted on

Batch Script สร้าง System Restore Point

สคริปต์Batchสร้างจุดคืนค่าระบบ (System Restore Point)

@echo off
echo Creating System Restore Point...
powershell.exe -Command "Checkpoint-Computer -Description \"My Restore Point\" -RestorePointType \"MODIFY_SETTINGS\""
echo System Restore Point Created!
pause