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.

Regarding Autoit "run" command.

Featured Replies

Why doesn't this work:

Run  	( "%programfiles%\FlashFXP\Flashfxp.exe", "%programfiles\Flashfxp\", "" )

When I try that, it says "Cannot find 'd:\program files\flashfxp\flashfxp.exe'"

Yes, my program files directory is on drive d: and yes, if I click start->run and type "%programfiles%\FlashFXP\Flashfxp.exe," it works just fine.

It also works just fine if I click start->run and type "d:\program files\flashfxp\flashfxp.exe."

What gives?

Any way that I could do this using @ComSpec?

I'm using AutoIt v3, btw.

PS-

I'm currently using the following

Send 	 ("#r")
ControlClick ( "Run","","edit1","","2" )
Send  ("%programfiles%\FlashFXP\flashfxp.exe{Enter}")

But I've had some problems with that one if my computer is running slow. Besides, that won't exactly work on my unattended xp disc as there is no start button during the XP install.


Try adding this to your script.

AutoItSetOption("ExpandEnvStrings",1)

  • Author

Nah, that didn't help at all...

Anyone know how to do this using the @programfilesdir macro?

I tried

Run ( "" & @ProgramFilesDir & '\FlashFXP\flashfxp.exe""' & "", "" )

didn't work.

Then I tried.

Run (@ProgramFilesDir & "\FlashFXP\flashfxp.exe", "")

didn't work.

  • 3 years later...

try using ShellExecute($wDir&"filename.exe","open", @SW_MAXIMIZE)

Try this

RunWait ( @ComSpec & ' /k "%programfiles%\FlashFXP\Flashfxp.exe"', '"%programfiles%\Flashfxp\"' )

This will close the dos window when finished

RunWait ( @ComSpec & ' /c "%programfiles%\FlashFXP\Flashfxp.exe"', '"%programfiles%\Flashfxp\"' )

This will hide and close the dos window when finished

RunWait ( @ComSpec & ' /c "%programfiles%\FlashFXP\Flashfxp.exe"', '"%programfiles%\Flashfxp\"', @SW_HIDE )

Hope this helps (and works), having to do this from memory as i'm not at my pc at the moment!!

edit:

(Why do my code boxes take up half the page??? :} )

Fixed!

Edited by Yzöwl

try this

Run (@ProgramFilesDir&"\FlashFXP\Flashfxp.exe")

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.