Deleting all registry entries under an organisation
Solved
General and Desktop
-
After porting my application to Qt, the registry entries for the older releases will not be appropriate, so I want to delete them
Is it possible to
QSettings settings("HKEY_CURRENT_USER\\Software\\Organisation", QSettings::NativeFormat);
settings.clear();to delete everything under there?
-
@Perdrix
The last time this seems to have been asked here the answer was "why not try":
https://forum.qt.io/topic/72671/qsettings-delete-registry-pathAlso see
https://www.qtcentre.org/threads/43514-QSettings-and-Windows-registry-removing-a-key?p=198652#post198652
https://www.qtcentre.org/threads/42697-How-to-remove-a-QSettings-registry-group?p=195270#post195270 -