Hi all,
Im noob in AutoIt:) could you please tell me how make simple installator:
- I will need to run some simple parameters which run some external file in graphical mode but in this I need to change some parameters (rollbox probably).
For example what Ineed to run:"start /wait msiexec.exe /i "XXXXXX.msi" /l*v "%temp%\XXXXXXXX.log" AGENT_SERVER= Parameters which i need to change"
I was start with this(Its without any condition):
Could you help me how to solve it?
Thank you for response
Im noob in AutoIt:) could you please tell me how make simple installator:
- I will need to run some simple parameters which run some external file in graphical mode but in this I need to change some parameters (rollbox probably).
For example what Ineed to run:"start /wait msiexec.exe /i "XXXXXX.msi" /l*v "%temp%\XXXXXXXX.log" AGENT_SERVER= Parameters which i need to change"
I was start with this(Its without any condition):
[ autoit ]
#Region ### START Koda GUI section ### Form=C:\Data\03_Application\KODA\Forms\01_test.kxf ; Main menu table__________________________________ $CA_ITCM = GUICreate("CA_ITCM", 615, 421, 388, 411) GUISetIcon("C:\feed_viewer_setup.exe", -1); GUISetFont(10, 400, 0, "MS Sans Serif") GUISetBkColor(0xFFFFFF) ;Progress button__________________________________ $Progress = GUICtrlCreateProgress(8, 376, 593, 25) GUICtrlSetResizing(-1, $GUI_DOCKBOTTOM) ;Switch button___________________________________ $Change_button = GUICtrlCreateCombo("Choose location", 24, 104, 145, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL)) GUICtrlSetData(-1, "[b]XXXXX|YYYYY|ZZZZZ|AAAAAAA[/b]") GUICtrlSetFont(-1, 10, 800, 0, "MS Sans Serif") GUICtrlSetCursor (-1, 0) ;PICture $Pic1 = GUICtrlCreatePic("C:\suit.jpg", 184, -40, 505, 401); ;Start Install button $Start_install = GUICtrlCreateButton("Start Install", 24, 208, 145, 113) GUICtrlSetBkColor(-1, 0xE3E3E3) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ###
Could you help me how to solve it?
Thank you for response