Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
UAC prevents writing files to the same directory as the install location of a program. You'll need to pick a better directory, use Environment.GetFolderPath() or Path.GetTempFileName(). – Hans Passant Jan 6 at 18:54
@HansPassant UAC is disable in my laptop! – ahmadali shafiee Jan 6 at 18:56
@HansPassant How about backups directory in the dir path? I tried that but that didn't work! – ahmadali shafiee Jan 6 at 18:58
why did it get -1?!? – ahmadali shafiee Jan 6 at 19:12

1 Answer

up vote 2 down vote accepted

You should enquote the path if it contains whitespaces

private void BackupRegistry()
{
    var dir = Path.GetDirectoryName(Application.ExecutablePath);
    Process.Start("reg", string.Format("export HKEY_CURRENT_USER\\Software\\DownloadManager \"{0}\\idm.reg\"", dir));
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.