Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

AUTOIT request nologic & Mhz pls read

Featured Replies

Can u guys create a autoit

if file XXX.XXX Exist run...

wait

If file bbb.bbb Exist run...

wait

if file ddd.ddd Exist run...

that is all i need

purpose: I want to combine Firefox (Simon's Silent Installer) and My Profile.exe (silent extension, themes, and etc Installer) into one Winrar file.

Instead of having to use a batch command to launch simon's installer and then my profile.exe. I want to use autoit instead.

thanks

If FileExists  ( @ScriptDir & "\setup_1.exe" ) Then
       RunWait ( @ScriptDir & "\setup_1.exe" )
EndIf

If FileExists ( @ScriptDir & "\setup_2.exe" ) Then
      RunWait ( @ScriptDir & "\setup_2.exe" )
EndIf

.....

Really don't see where AutoIt would be better than a batch for this....well its a bit more flexable in where you place files but thats it.

Any ways enjoy :)

  • Author

Just to have ...

And thanks to Mhz for correcting my problem with vueprint! it work now

Well don't take what I said wrong...I do prefer AutoIt over batch for nearly every thing...just if you had a batch file already done....it would make little since to create a AutoIt script is all. :)

Yeah I'll be posting the correct script here in a bit...next 5-10min :)

  • Author
If FileExists  ( @ScriptDir & "\Firefox10_Silent_EN.exe" ) Then

    RunWait ( @ScriptDir & "\Firefox10_Silent_EN.exe" )

EndIf

If FileExists ( @ScriptDir & "\profile.exe" ) Then

      RunWait ( @ScriptDir & "\profile.exe" )

EndIf

firefox installs ok, but my sfx profile does not install.

Conditions. Very easy with Autoit. Basically any condition can be used.

Worth learning Autoit as batch programming is limited.

Autoit is a very powerful language indeed.

Is this what you wanted to hear, Astalavista ;)

  • Author

ok ok... i will sit down and learn it.

after i finish learning installshield 10.5 ... heheheh :)

hmm try this then...

Func _Install( $i )
If FileExists  ( @ScriptDir & "\" & $i ) Then
 $PID = Run ( @ScriptDir & "\" & $i )
 ProcessWaitClose( $PID )
EndIf
EndFunc

_Install( "Firefox10_Silent_EN.exe" )
_Install( "profile.exe" )
_Install( ... )

  • Author

it is working now...

Question: Can i continue adding SFX files to this script?

Func _Install( $i )

If FileExists ( @ScriptDir & "\" & $i ) Then

$PID = Run ( @ScriptDir & "\" & $i )

ProcessWaitClose( $PID )

EndIf

EndFunc

_Install( "SFX001.exe" )

_Install( "SFX002.exe" )

_Install( "SFX003.exe" )

_Install( "SFX004.exe" )

_Install( "SFX005.exe" )

_Install( "SFX006.exe" )

_Install( "SFX007.exe" )

_Install( "SFX008.exe" )

the beauty of Autoit is that it does not show a dialog box which i really hate.

Yes? Depending on the setting of the archives for success. WinRAR uses extraction, then you have execution. 2 separate processes. Do a small test first.

  • Author

Sorry for bugging you guys (Mhz and Nologic)

what about for Nero Reloaded For Example

I have a RegTweak.reg ->> Followed by NeroReloadedSetup.exe ->> Followed by NeroReloadedHelpFileSetup.exe.

What is the autoit for registering REG file silently, then run two sfx files.

Well if your just looking for batch extraction then I'd use this -

$search	= FileFindFirstFile ( @ScriptDir & "\*.exe" )
If $search <> -1 Then
While 1
 $i = FileFindNextFile ( $search )
 If @error Then ExitLoop

 $PID = Run ( @ScriptDir & "\" & $i )
 ProcessWaitClose( $PID )
Wend
FileClose ( $search )
EndIf

That will run through the current folder and execute all *.exe files one after the other automatically...no need for extra code.

Now as MHz suggested if a secondary process is spawned then some thing like below would be better suited to your needs -

Func _Install( $i1 , $i2 )
If FileExists  ( @ScriptDir & "\" & $i1 ) Then
 $PID = Run ( @ScriptDir & "\" & $i1 )
 ProcessWaitClose( $PID )
 Sleep  ( 500 )
 If $i2 <> "" Then ProcessWaitClose( $i2 )
EndIf
EndFunc

_Install( "SFX001.exe" , "" )
_Install( "SFX002.exe" , "Firefox.exe" )
_Install( "SFX003.exe" , "" )
_Install( "SFX004.exe" , "" )
_Install( "SFX005.exe" , "EmEditor.exe" )
_Install( "SFX006.exe" , "" )
_Install( "SFX007.exe" , "WinAmp.exe" )
_Install( "SFX008.exe" , "" )

Tho maybe MHz has a suggestion for better code...

hmmm

Run ( "REGEDIT /S myreg.reg", "" )

;)

Or if regedit has issues with spaces in folder names maybe -

Run ( "REGEDIT /S " & FileGetShortName ( @ScriptDir & "\file.reg" ) , "" )

replacing "\file.reg" with your actual file name

So I guess some thing like so -

Run	( "REGEDIT /S " & FileGetShortName ( @ScriptDir & "\file.reg" ) , "" )

$search = FileFindFirstFile ( @ScriptDir & "\*.exe" )
If $search <> -1 Then
While 1
 $i = FileFindNextFile ( $search )
 If @error Then ExitLoop

 $PID = Run ( @ScriptDir & "\" & $i )
 ProcessWaitClose( $PID )
Wend
FileClose ( $search )
EndIf

Is what you would be needing for the above unless a secondary process is spawned then you would have to use the other code to deal with that.

  • Author

Thanks guys now i can use this as a template for my future projects.

I am sorry if i didn't make my question clearer.

For Nero Reloaded the Order must be

First... NeroSerials.Reg

Second... NeroReloadedSetup.exe (SFX file)

Third.... NeroLanguagePack.exe (SFX file)

Example with secondary process spawned

; Merge Reg File
Run ( "REGEDIT /S " & FileGetShortName ( @ScriptDir & "\file.reg" ) , "" )

; Basic Fuction
Func _Install( $i1 , $i2 )
If FileExists  ( @ScriptDir & "\" & $i1 ) Then
 $PID = Run ( @ScriptDir & "\" & $i1 )
 ProcessWaitClose( $PID )
 Sleep  ( 500 )
 If $i2 <> "" Then ProcessWaitClose( $i2 )
EndIf
EndFunc

; Install Nero - Using Fuction
_Install( "NeroReloadedSetup.exe" , "NeroSetup.exe" )

; Install Nero Lang Pack - Using Fuction
_Install( "NeroLanguagePack.exe" , "NeroLangSetup.exe" )

Although you may want to swap out "Run" for "RunWait" for the reg merge....

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.