Как я могу зарегистрировать мои написанные dll в Windows 7?
Я нашел этот фрагмент кода, но он не работает в Windows 7:
public static void registerDLL(string dllPath)
{
try {
//'/s' : indicates regsvr32.exe to run silently.
string fileinfo = "/s" + " " + "\"" + dllPath + "\"";
Process reg = new Process();
reg.StartInfo.FileName = "regsvr32.exe";
reg.StartInfo.Arguments = fileinfo;
reg.StartInfo.UseShellExecute = false;
reg.StartInfo.CreateNoWindow = true;
reg.StartInfo.RedirectStandardOutput = true;
reg.Start();
reg.WaitForExit();
reg.Close();
}
catch(Exception ex) {
MessageBox.Show(ex.Message);
}
}