Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. registry
    Log in to post

    • UNSOLVED Not able to access registrty beyond a certain level, does it need admin rights? If yes, how to do it?
      General and Desktop • windows qsettings registry • • Tusharh  

      2
      0
      Votes
      2
      Posts
      580
      Views

      @Tusharh If you want the value of the registry entry "TaskCache" you should use QSettings::value(QString key) QObject::property(QString name) gives you the property of your QSettings object
    • installer scripting Settings operation
      Installation and Deployment • ifw component settings remove registry • • GoranShekerov  

      3
      0
      Votes
      3
      Posts
      3143
      Views

      @GoranShekerov Tried the above code to stop and remove the windows service while uninstalling from QT installer. But did not work function Controller() { installer.uninstallationStarted.connect(onUninstallationStarted); } onUninstallationStarted = function() { if (installer.isUninstaller()) { installer.performOperation("Execute", "@TargetDir@/platform/tools/Server/testServer.exe", "stop"); console.log("Server stopped") installer.performOperation("Execute", "@TargetDir@/platform/tools/Server/testServer.exe", "remove"); console.log("Server removed") } }