private void btnEnable_Click(object sender, EventArgs e)
{
try
{
this.ExecuteCommandSync((object) "reg.exe add \"HKCU\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\\InprocServer32\" /f");
this.restartExpolorer();
}
catch
{
}
}
private void btnDisable_Click(object sender, EventArgs e)
{
try
{
this.ExecuteCommandSync((object) "reg.exe delete \"HKCU\\Software\\Classes\\CLSID\\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\" /f");
this.restartExpolorer();
}
catch
{
}
}