Merge pull request #4369 from sandboxie-plus/isaak654-registrydeletion

Update Sandboxie-Plus.iss
This commit is contained in:
DavidXanatos 2024-11-16 20:57:54 +01:00 committed by GitHub
commit e4c3761e98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -903,6 +903,9 @@ void CSettingsWindow::RemoveContextMenu()
QProcess Proc; QProcess Proc;
Proc.execute("rundll32.exe", QStringList() << "SbieShellExt.dll,RemovePackage"); Proc.execute("rundll32.exe", QStringList() << "SbieShellExt.dll,RemovePackage");
Proc.waitForFinished(); Proc.waitForFinished();
QSettings MyReg("HKEY_CURRENT_USER\\SOFTWARE\\Xanasoft\\Sandboxie-Plus", QSettings::NativeFormat);
MyReg.remove(""); // Removes the entire key and all subkeys
} }
CSbieUtils::RemoveContextMenu(); CSbieUtils::RemoveContextMenu();