Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9103923
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T01:44:36+00:00 2026-06-17T01:44:36+00:00

I have written a script that mounts a drive before launching an application. The

  • 0

I have written a script that mounts a drive before launching an application. The application, however, should only launch if the drive mounted successfully.

I have the correct code to mount the drive and launch the application, but I need to check if the mount was successful only after the operation has finished. At the moment it appears that the if statement is running immediately after the mount.

# Get wireless network SSID
set SSID to do shell script "/System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport -I | awk '/ SSID: / {print $2}'"

# Test if we are connected to the right network(s)
# We can test for multiple networks if you’re always on the move, like me!
# if SSID is "YOUR_SSID_ONE" or SSID is "YOUR_SSID_TWO" then
if SSID is "virginmedia7912273" or SSID is "virginmedia5097309" then
    tell application "Finder"
        # Mount your disk
        mount volume "afp://nas/iTunes/"
        # Check that the disk successfully mounted
        if exists disk "iTunes" then
            # If the disk successfully mounted, launch iTunes
            tell application "iTunes"
                # Launch launches, activate brings window to focus (?)
                launch
                activate
            end tell
        else
            # If the disk didn’t mount, throw an error.
            display dialog "Unable to connect to iTunes storage device."
        end if
    end tell
else
    # If we are not connected to the right network(s), throw an error.
    display dialog "You are not connected to your home network."
end if
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T01:44:37+00:00Added an answer on June 17, 2026 at 1:44 am

    You could check if the mount was successful with a cycle like this:

    repeat until name of every disk contains "iTunes"
       delay 1
    end repeat
    

    You could also add a condition to exit the loop after a certain number of iterations:

    set i to 0
    repeat until (name of every disk contains "iTunes" or i is greater than max_number_of_iteration)
       delay 1
       set i to i + 1
    end repeat
    

    EDIT:

    The script must be modified to be compatible with latest macOS versions:

    tell application "System Events" to set diskNames to name of every disk 
    set i to 0
    set max_number_of_iteration to 5
    repeat until (diskNames contains "iTunes" or i is greater than max_number_of_iteration)
        tell application "System Events" to set diskNames to name of every disk 
        delay 1
        set i to i + 1
    end repeat
    

    Thanks to a walker for the suggestion.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a PowerShell script that will create an email, however I can't
I have written a script that fires a jQuery POST to retrieve data from
So I have a strange question. I have written a script that re-formats data
I have written a Python script that will generate a series of graphs and
I have written a data munging script that is very CPU intensive. It has
I have a written a script in PHP that reads from data from a
I have now written a number of different functions in Google Apps Script that
The script I have written outputs all lines from the file 2 that starts
I have a mechanize script written in python that fills out a web form
I'm using emacs and I have written a script which uses current-buffer. However the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.