Jump to content

Recommended Posts

Posted

hello not sure why this is showing up i looked over the script and cant find the reason for the error. it says

error the indicated module wasnt found

i searched but didnt find anything its a german error as im on german windows.

here is the code

;Corel Draw 10 Install
Run("\\Server3\NoBackup\EDV\Software\CD10-DXUXR-699R412343300_DXK4NR-3211K57575\setup32.exe")
WinWaitActive("Corel Setup-Assistent", "Dieses Programm installiert")
Send("!w")
WinWaitActive("Es wurde keine frühere Installation gefunden.", "Für diese Installation wird")
Send("{ENTER}")
WinWaitActive("Corel Setup-Assistent", "Setzen Sie sich")
Send("{TAB}")
Send("{TAB}")
Send("xxx9993202012")
Send("{ENTER}")
WinWaitActive("Corel Setup-Assistent", "Die Folgende")
Send("{TAB}")
Send("{TAB}")
Send("{ENTER}")
WinWaitActive("Corel Setup-Assistent", "Machen Sie bitte")
Send("{TAB}")
Send("{TAB}")
Send("Helmut Hund GmbH")
Send("{TAB}")
Send("Helmut Hund GmbH")
Send("{TAB}")
Send("{TAB}")
Send("{ENTER}")

does it mean that it couldnt find the installer exe ?

Posted

The error is probably coming from setup32.exe

Do you get the error when you do this procedure manually?

Posted

The error is probably coming from setup32.exe

Do you get the error when you do this procedure manually?

nope not getting it manually thats the weird thing and im pretty sure its an error coming from auto it because of that
Posted

Set the working directory maybe?

Run("\\Server3\NoBackup\EDV\Software\CD10-DXUXR-699R412343300_DXK4NR-3211K57575\setup32.exe","\\Server3\NoBackup\EDV\Software\CD10-DXUXR-699R412343300_DXK4NR-3211K57575")
Posted

I would go to the end of the script, comment out each line until you no longer see the error, that way you can identify what command is causing it.

Posted

I would go to the end of the script, comment out each line until you no longer see the error, that way you can identify what command is causing it.

found my issue its not a script problem its some type of problem because of the location of the file not sure. when i just enter the line in the explorer i get the same error but when i manually click on the exe it works fine ... any tips ? doesnt do it with any other installs
Posted

You could try making a temporary drive mapping:

$MAP = DriveMapAdd ( "X:", "\\Server3\NoBackup\EDV\Software\CD10-DXUXR-699R412343300_DXK4NR-3211K57575",8 )

If $MAP = 0 Then 
    MsgBox(0,"","Drive mapping failed") 
EndIf

Run("X:\setup32.exe","X:\")
ill give it a shot otherwise i got an msi i can utiliese even easier

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
×
×
  • Create New...