docs4you's picture
Upload 487 files
27867f1 verified
raw
history blame contribute delete
564 Bytes
;--------------------------------
; General Attributes
Name "Timeout Test"
OutFile "to.exe"
RequestExecutionLevel user
;--------------------------------
;Interface Settings
!include "MUI2.nsh"
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_LANGUAGE "English"
;--------------------------------
;Installer Sections
Section "Dummy Section" SecDummy
; additional headers. Sample php returns raw headers
inetc::get /receivetimeout 12 "http://localhost/to.php" "$EXEDIR\to.html"
Pop $0
MessageBox MB_OK "Download Status: $0"
SectionEnd