Export OBDC's on a Bat file

CNCOneWorld

Active Member
Export OBDC\'s on a Bat file

I am trying to setup a scheduled job on Windows 2000 Advanced Server. This job will export the ODBC to a .reg that can be backed up for Disaster Recovery. Does anyone have or know a tool/script that this would work with?

Thank you in advanced.
 
Re: Export OBDC\'s on a Bat file

From the command line:

regedit /s /e test.reg HKEY_LOCAL_MACHINE\SOFTWARE\ODBC

/s - switch to run silent
/e - switch to export
test.reg - name of file to export to
HKEY_LOCAL_MACHINE\SOFTWARE\ODBC - registry tree to export

Cheers,
 
Back
Top