Skip to content

Instantly share code, notes, and snippets.

@RickDB
Last active November 19, 2023 09:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RickDB/c24b73e1809444b61f38b8ffda3e5304 to your computer and use it in GitHub Desktop.
Save RickDB/c24b73e1809444b61f38b8ffda3e5304 to your computer and use it in GitHub Desktop.
@echo off
title Backing up madVR settings
if exist "settings.reg" (
del "settings.reg" >NUL
)
reg.exe export "HKEY_CURRENT_USER\Software\madshi\madVR" "settings.reg"
if exist "settings.reg" (
echo Settings were saved to settings.reg
)
if not exist "settings.reg" (
echo Settings were NOT saved to settings.reg
)
echo Completed backing up madVR settings
@RickDB
Copy link
Author

RickDB commented Jun 26, 2017

Backups madVR settings to settings.reg file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment