Jump to content

Need help Finding a drive


Recommended Posts

I have tried a simple If but I dont know if I used to many ElseIf's or if there wasnt a limit you could use it. =/ anyways here is what I have so far. Any help will be great :)

$Drive = ""


;Detect which drive we are using to grab our executables off of.
If FileExists("D:\file.EXE") Then
    $Drive = "D:\"
    Send("{S}")
ElseIf FileExists("E:\file.EXE") Then
    $Drive = "E:\"
    Send("{S}")
ElseIf FileExists("F:\file.EXE") Then
    $Drive = "F:\"
    Send("{S}")
ElseIf FileExists("G:\file.EXE") Then
    $Drive = "G:\"
    Send("{S}")
ElseIf FileExists("H:\file.EXE") Then
    $Drive = "H:\"
    Send("{S}")
EndIf

$Path = $Drive & "WINDOWS TOOLS\MISC"
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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...