I tried this code to export a registry key to a file.
private void BackupRegistry()
{
var dir = Path.GetDirectoryName(Application.ExecutablePath);
Process.Start("reg", string.Format("export HKEY_CURRENT_USER\\Software\\DownloadManager {0}\\idm.reg", dir));
}
but when I execute the method there isn't any idm.reg in executable dir.
backupsdirectory in thedirpath? I tried that but that didn't work! – ahmadali shafiee Jan 6 at 18:58