cmd
(BAT) 윈도우 백업 스케줄 설정
작업 스케줄러에 등록해 하루에 2번씩 섀도우 복사본을 백업하도록 할 수 있다. 1. vss 활성화, 드라이브별 용량 설정, 백업 스케쥴 등록 (bat을 통한) @echo off REM 1. Windows VSS backup 보호 활성화 (C:\, D:\) powershell -command Enable-ComputerRestore "c:", "d:" REM 2. VSS backup 횟수제한 해제 c:\windows\system32\cmd /c c:\windows\system32\reg.exe add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SystemRestore" /v SystemRestorePointCreationFrequency /t REG_DWOR..