
Schezu
Active Members-
Posts
22 -
Joined
-
Last visited
Everything posted by Schezu
-
uninstalling msi files - (Moved)
Schezu replied to Schezu's topic in AutoIt General Help and Support
not working -
uninstalling msi files - (Moved)
Schezu replied to Schezu's topic in AutoIt General Help and Support
not working -
uninstalling msi files - (Moved)
Schezu replied to Schezu's topic in AutoIt General Help and Support
not working -
uninstalling msi files - (Moved)
Schezu replied to Schezu's topic in AutoIt General Help and Support
how to do that? could you please help me out? -
Im unable to run this. please help me out. command prompt opens but the content within {} doesnt get typed. #RequireAdmin Run("cmd.exe") WinWaitActive("Administrator: C:\Windows\system32\cmd.exe", "", 1) Send ('msiexec /x {9CB3A036-0B7E-49B7-A60B-291E245CA6B2}')
-
Ok i have a code can you please modify it such that if program is not installed it will install and if its installed it will uninstall. The code that im having is uninstalling and installing again if its aldraedy there.
-
radio buttons in switch case - (Moved)
Schezu replied to Schezu's topic in AutoIt General Help and Support
Please help @Jos -
I need to create a switch case with 3 radio buttons if install then run the program i have if overwrite also run the program i have and if uninstall, then uninstall it Please help Thanks in advance
-
@rm4453 thank u so much Its working!
-
this is not working
-
;Run("D:\20190201_RT\hmi_runtime_v2.0.0-Beta12.exe") #RequireAdmin ; if the file exists on the desktop ;Run(@ScriptDir,".exe") ; else if it exists in some file directory $path = "D:\20190201_RT\hmi_runtime_v2.0.0-Beta12.exe" ShellExecute($path) AutoItSetOption("MouseCoordMode" , 0) ;this is select setup lang WinWait("Select Setup Language") WinActivate("Select Setup Language") Sleep(100) ;delay to select language MouseClick("primary" , 172 , 129 , 1 ,0) ; this is the window set up hmiruntime WinWait("Setup - HMI Runtime v2.0.0-Beta12") WinActivate("Setup - HMI Runtime v2.0.0-Beta12") Sleep(100) MouseClick("primary" ,367 , 361 , 1 , 0) Sleep(100) ;this is to popup the window is runtime exists or not WinWait("Folder Exists") WinActivate("Folder Exists") MouseClick("primary" , 283 , 158 , 1 , 0) ; this is for yes ;MouseClick("secondary" , 360 , 159 , 1 , 0) ;this is for no Sleep(100) ; this is for the window intall button WinWait("Setup - HMI Runtime v2.0.0-Beta12") WinActivate("Setup - HMI Runtime v2.0.0-Beta12") MouseClick("primary" , 379 , 369 , 1 , 0) Sleep(100) ;this is for finish the installation WinWait("Setup - HMI Runtime v2.0.0-Beta12") WinActivate("Setup - HMI Runtime v2.0.0-Beta12") MouseClick("primary" , 378 , 363 , 1 , 0)
-
script id means?
-
and further installation has to get completed automatically
-
After the Run command, a popup appears. how to automate it. please help
-
ok thank you so much
-
but here ControlSend will just not be enough because that popup which appears after running that application, in that we got to choose more choices and then click on use a different account and then click on yes button and then username and password options appear. after which we have to give yes button then next popup should appear.
-
thank you so much it worked finally!!!!!! :):):) Now the pop up for entering credentials has come. Can i automate it such that without me actually typing it types and next popup appears?
-
I dint get you
-
I dint get you
-
Run ("hmi_runtime_v2.0.0-Beta12.exe" , "D:\20190201_RT\hmi_runtime_v2.0.0-Beta12.")
-
Run("filename.exe" , "filepath") itself is not working
-
I have an application installed in my PC. i want to automate it. It first opens with a popup asking credentials, after that it asks for language and then the tool opens. Can you please help me to write code in autoit for this