TeachingTech

Backup Simplify3D registry settings

Feb 13th, 2022 (edited)
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Courtesy of Brain:
  2. I wrote bat file to backup the settings some time ago, and I thought I'd share. It creates a file in the following format: [Simplify3D-BKUP-YYYYMMDD-HHMMSS.reg]
  3. Feel free to offer it up:
  4. Backup Simplify3D.bat
  5. ---------------------
  6. @echo off
  7. :STAMP
  8. set hh=%time:~0,2%
  9. if "%time:~0,1%"==" " set hh=0%hh:~1,1%
  10. set dt=%date:~10,4%%date:~4,2%%date:~7,2%-%hh:~0,2%%time:~3,2%%time:~6,2%
  11. :BKUP
  12. reg.exe export HKCU\Software\Simplify3D "%~dp0Simplify3D-BKUP-%dt%.reg" > nul
  13. :EOF
  14. cls
  15. exit
Add Comment
Please, Sign In to add comment