Menu

#1090 Uninstall components window will hide when Pressing ALT+F4

2.0 Series
open
nobody
None
5
2014-02-10
2014-01-22
archie_msi
No

Uninstalling Software Using NSIS using 2.4.6

I've created a software using NSIS and installed it in my PC. I tried uninstalling the said software through the installer. During uninstallation progress of files, I pressed ALT+F4. What happened was the uninstallation progress page disappeared even though there are no active/enable buttons in the page. But later on the progress will be successful and page will proceed to unsinstall complete page wizard.

Do you have any way to disable all keyboard command during uninstallation progress page?

Related

Bugs: #1090

Discussion

  • Anders

    Anders - 2014-02-10

    I cannot reproduce this with 2.46 nor 3.0 alpha. Can you provide a example script where this problem exists?

    !include MUI2.nsh
    !insertmacro MUI_PAGE_WELCOME
    !insertmacro MUI_PAGE_INSTFILES
    !insertmacro MUI_PAGE_FINISH
    !insertmacro MUI_UNPAGE_CONFIRM
    !insertmacro MUI_UNPAGE_INSTFILES
    !insertmacro MUI_UNPAGE_FINISH
    !insertmacro MUI_LANGUAGE English
    
    Section "Dummy"
    DetailPrint ${NSIS_VERSION}
    Sleep 3333
    WriteUninstaller $temp\testun.exe
    Sleep 3333
    Exec '"$temp\testun.exe"'
    Quit
    SectionEnd
    Section Uninstall
    Sleep 3333
    Delete $temp\testun.exe
    Sleep 3333
    SectionEnd
    
     
    • archie_msi

      archie_msi - 2014-03-12

      Maybe the problem is with the script I've created using NSIS. I just don't
      know how to fix it. Every time I uninstall my software through the
      installer I've created, when the page wherein the progress bar is running
      while removing the files will appear (cancel button is disabled), the
      window with the progress bar will disappear. But later on, the page will
      proceed to the Uninstall Complete page. I'll just try to add something on
      my script.

      You may close this report.

      Thanks
      archie

      On Tue, Feb 11, 2014 at 4:12 AM, Anders anders_k@users.sf.net wrote:

      I cannot reproduce this with 2.46 nor 3.0 alpha. Can you provide a example
      script where this problem exists?

      !include MUI2.nsh!insertmacro MUI_PAGE_WELCOME!insertmacro MUI_PAGE_INSTFILES!insertmacro MUI_PAGE_FINISH!insertmacro MUI_UNPAGE_CONFIRM!insertmacro MUI_UNPAGE_INSTFILES!insertmacro MUI_UNPAGE_FINISH!insertmacro MUI_LANGUAGE English
      Section "Dummy"DetailPrint ${NSIS_VERSION}Sleep 3333WriteUninstaller $temp\testun.exeSleep 3333Exec '"$temp\testun.exe"'QuitSectionEndSection UninstallSleep 3333Delete $temp\testun.exeSleep 3333SectionEnd


      Status: open
      Created: Wed Jan 22, 2014 04:35 AM UTC by archie_msi
      Last Updated: Wed Jan 22, 2014 04:35 AM UTC
      Owner: nobody

      Uninstalling Software Using NSIS using 2.4.6

      I've created a software using NSIS and installed it in my PC. I tried
      uninstalling the said software through the installer. During uninstallation
      progress of files, I pressed ALT+F4. What happened was the uninstallation
      progress page disappeared even though there are no active/enable buttons in
      the page. But later on the progress will be successful and page will
      proceed to unsinstall complete page wizard.

      Do you have any way to disable all keyboard command during uninstallation
      progress page?


      Sent from sourceforge.net because you indicated interest in
      https://sourceforge.net/p/nsis/bugs/1090/

      To unsubscribe from further messages, please visit
      https://sourceforge.net/auth/subscriptions/

       

      Related

      Bugs: #1090


Log in to post a comment.