Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. ifw

    Log in to post
    • All categories
    • LorenDB

      Unsolved [Windows] [IFW] Create shortcut in `shell:startup`
      Installation and Deployment • windows ifw startup • • LorenDB

      1
      0
      Votes
      1
      Posts
      161
      Views

      No one has replied

    • D

      Unsolved Qt Installer Framework 7zip exception not enough memory
      Tools • ifw • • dato_d

      1
      0
      Votes
      1
      Posts
      230
      Views

      No one has replied

    • D

      Solved Online installer (QtIFW) problems
      Installation and Deployment • ifw ifw 3.0 ifw update.xml ifw repository • • DJ-Ogurt

      10
      0
      Votes
      10
      Posts
      4270
      Views

      D

      @koahnig
      I don't know who's project the IFW is but could you pass along a request for better documentation? A few times I came across lines like

      For more information see ##TODO add link

    • Johnny B.

      Unsolved Qt Installer and 7z Format
      Tools • installer 7z format ifw • • Johnny B.

      3
      0
      Votes
      3
      Posts
      1430
      Views

      Chris Kawa

      Just my guess, but I would say it's something as simple as popularity? xz is not widely used on Windows and 7z is kinda universally used/recognized at this point so... I'm guessing it's just a coin-flip decision.

    • M

      Unsolved Qt Installer Framework - fetch packages list online
      General and Desktop • installer frame ifw • • MartinD

      2
      0
      Votes
      2
      Posts
      662
      Views

      VRonin

      It can indeed, see here: http://doc.qt.io/qtinstallerframework/ifw-online-installers.html

    • G

      Installer Framework working on FreeBSD
      Installation and Deployment • ifw • • GraemeA

      2
      0
      Votes
      2
      Posts
      758
      Views

      SGaist

      Hi,

      What about submitting your work to the Qt project ?

    • A

      Temporary file extracted before installation?
      Installation and Deployment • ifw • • aolszak

      2
      0
      Votes
      2
      Posts
      750
      Views

      Paul H.

      I have not used IFW, but have you seen this page and this page ? Also, this example may provide some help.
      Paul

    • M3t4d3us

      IFW - Windows Registry
      Installation and Deployment • script ifw • • M3t4d3us

      3
      0
      Votes
      3
      Posts
      1476
      Views

      M3t4d3us

      Many thanks @Wieland,

      but my problem is with the installer script (sorry for not having explained before (-_-)). The application is fine according to the customer feedback.

      Am trying to check the existence of previous installations and if so, check which version is installed. For this, I have created a registry entry containing the application path and installed version, but I don´t know how to compare the current installation version with the previously installed one.

      Thanks in advance.

    • D

      [Solved(By Ignoring)] Installer Build: Could not register file downloader for https protocol
      Installation and Deployment • installer openssl ssl ifw installer frame • • do.drs

      4
      0
      Votes
      4
      Posts
      3591
      Views

      D

      @koahnig I am using 2.0.1

    • H

      [SOLVED] IFW - How to set "run as administrator" flag on maintenancetool during install
      Installation and Deployment • script ifw • • Hertzy

      9
      0
      Votes
      9
      Posts
      3963
      Views

      H

      At last I got it to work. The parameter "/reg:64" passed to reg.exe makes it do what it's told. I just hope this won't mess things up on a 32bit windows.

      So, that needs to be

      component.addElevatedOperation("Execute",reg, "ADD",key, "/reg:64" ,"/v","@TargetDir@\\maintenancetool.exe","/t","REG_SZ","/d","~ RUNASADMIN", "/f");
    • J

      Qt IFW - How to create a shortcut to an URL
      Installation and Deployment • link ifw url addoperation createshortcut createlink • • JohnvdB

      1
      0
      Votes
      1
      Posts
      926
      Views

      No one has replied

    • J

      QT IFW addOperation reporting error
      Installation and Deployment • ifw installer framework return code exit code addoperation • • JohnvdB

      1
      0
      Votes
      1
      Posts
      1029
      Views

      No one has replied

    • S

      Custom Maintenance Tool
      Installation and Deployment • ifw maintenancetool qtifw installer frame • • Sorin179

      2
      0
      Votes
      2
      Posts
      1103
      Views

      L

      You can use "UNDOEXECUTE". For example: component.addOperation("Execute", "msiexec", "/i", "xxx.msi", "/quiet", "UNDOEXECUTE", "msiexec", "/x", "xxx.msi");

    • A

      Qt Installer Framework to differentiate 32 vs 64 @ApplicationsDir@ variable
      Tools • qt ifw 2.0 offline install ifw • • alex.araratyan

      1
      1
      Votes
      1
      Posts
      1060
      Views

      No one has replied

    • G

      installer scripting Settings operation
      Installation and Deployment • ifw settings remove registry component • • GoranShekerov

      3
      0
      Votes
      3
      Posts
      4214
      Views

      U

      @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")
      }
      }

    • j1elo

      Qt Installer Framework: How to allow only Updates?
      General and Desktop • qt installer fr qtifw qtinstallerfram ifw installer frame installer • • j1elo

      2
      0
      Votes
      2
      Posts
      2592
      Views

      j1elo

      Solution:

      Controller.prototype.IntroductionPageCallback = function() { // Installer is "updater" when it is run with "--updater" // or Controller does "installer.setUpdater()" if (installer.isUpdater()) { var widget = gui.currentPageWidget(); // Same as gui.pageById(QInstaller.Introduction); widget.findChild("UpdaterRadioButton").checked = true; // Disable paint events on these widgets, through the QWidget::updatesEnabled property. // I tried with the "visible" property, but it is not enough, because for some reason // that property gets reset under some conditions. For example, if "Next" button is pressed // and no updates are available. widget.findChild("PackageManagerRadioButton").updatesEnabled = false; widget.findChild("UninstallerRadioButton").updatesEnabled = false; } }
    • N

      Log Out after installation - Qt Installer Framework
      General and Desktop • installer ifw logout • • Noturnoz

      1
      0
      Votes
      1
      Posts
      750
      Views

      No one has replied

    • Q

      QT IFW script to automate installation process of an IFW installer
      Tools • ifw • • QTsqueezer

      1
      0
      Votes
      1
      Posts
      668
      Views

      No one has replied