get paid to paste

@ECHO OFF

REM Create backup directory
MKDIR backups

REM To add a excluded key change the key path and the filename
REG EXPORT "HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths" "backups\AppPaths.reg"

REM Start LRC and wait for it to terminate
start /WAIT LITTLE~1.EXE

REM Restore registry
CD backups

for %%X in (*.reg) do (REG IMPORT "%%X")

Pasted: Dec 1, 2009, 7:20:27 am
Views: 23