Jump to content

AutoitExe not working on Win 10


Recommended Posts

Hello all! 

I am having a bit of trouble and was wondering if anyone may have a workaround for my issue. I made a script that would automatically install a piece of software each night on a Windows 7 Box. Now I have been instructed to do the same with a Windows 10 box since the application is now being tested on Windows 10. 

The way I did the win7 installation was that I made a script and then made an executable that I call with a batch file along with the Installer. So the process is 
AutoitMainFile calls batch file, batch file opens Installer, and the automatedinstaller.exe  The automatedinstlaller waits 10-20 seconds to make sure the Installer has been fully loaded.

When I try to do the same both get loaded but the automatedinstallation.exe does not send commands to the installer. The code does work and nothing from the program we are wanting to install has changed as our Windows 7 runs every night no problem. 

 

Do I need to make a new automatedinstall script for windows 10? 

Any advice is appreciated 

Thanks,

Richard

Link to comment
Share on other sites

Hello all! 

I am having a bit of trouble and was wondering if anyone may have a workaround for my issue. I made a script that would automatically install a piece of software each night on a Windows 7 Box. Now I have been instructed to do the same with a Windows 10 box since the application is now being tested on Windows 10. 

The way I did the win7 installation was that I made a script and then made an executable that I call with a batch file along with the Installer. So the process is 
AutoitMainFile calls batch file, batch file opens Installer, and the automatedinstaller.exe  The automatedinstlaller waits 10-20 seconds to make sure the Installer has been fully loaded.

When I try to do the same both get loaded but the automatedinstallation.exe does not send commands to the installer. The code does work and nothing from the program we are wanting to install has changed as our Windows 7 runs every night no problem. 

 

Do I need to make a new automatedinstall script for windows 10? 

Any advice is appreciated 

Thanks,

Richard

Link to comment
Share on other sites

  • Moderators
52 minutes ago, afallenhope said:

So the process is AutoitMainFile calls batch file, batch file opens Installer

@afallenhope let me start out by saying :x on using autoit to control batch to control (I'm assuming) MSI. Will be much less headache for you down the road if you stick to a single language (which we can help with).

Secondly, you will find that it is very rare that we will be able to assist problems with code when you don't actually post the code. By posting the full code (or at least something that reproduces the issue) we can test on our end and give suggestions. Without that, we're left to peer into our crystal balls and take a guess :)

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

@JLogan3o13 thanks for your response and sorry for tagging multiple topics. I'll make note of that :)

This is a snippet from the AutoitMainFile

;Starts Batch file that will open C# installer and launches XInstaller.exe
            ShellExecute("C:\Users\NTS\Desktop\Autoit\cmdprmt.bat", "")
            sleep(10000)
            ShellExecute("C:\Users\NTS\Desktop\AutoIt\XInstallerAuto.exe")
            ;Waits for XInstaller to display the word success
            WinWaitActive("XInstaller","Success")
            WinKill("[CLASS:XInstaller Software Installation]", "Finish")

            Sleep(5000)
            WinKill("[CLASS:Restart XPlan]", "restarted")

This is my cmdprmt code

@echo off
CD "C:\Users\NTS\Desktop\AutoIt\XPlanUnzipped"
start XInstaller.exe
CD "C:\Users\NTS\Desktop\AutoIt"
start XInstallerAuto.exe
exit

The XInstallerAuto.exe is the executeable made by Autoit. I have seem to have misplace the original source code for that file. What it was comprised of was just wait 5 seconds send Alt+N keystroke then wait another 5 seconds etc. 
 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...