System Events equivalent to "list disks"

I would like to mount a network share via AFP, but before doing so, I just want to check to see if it is mounted.
In my AppleScript 1-2-3 book, it tells me there is a command called "list disks"  when I execute it:
list disks
-- returns {"Macintosh HD", "A Disk Name Here", "A USB Drive Name there", "A Network Drive Name over here"}
basically, it works properly.
Now, in the book and on Apples's own site it says that "list disks is deprecated" and to use "System Events" instead.  It even gives me a sample command to try:
tell application "System Events" to get the name of every disk
it is supposed to return the same list as the command "list disks", but in my case, it errors out with an error message of -1000
What am I missing here?  I literally cut and pasted the command so I wouldn't make a mistake.

It works now....
I would type that exact command in
tell application "System Events" to get the name of every disk
and it would throw an -1000 error at me.  I even had a friend watch me to see if I was missing anything, but it still failed.  However, I did a reboot for something unrelated, and it started working.
However, it's a moot point.  I had a really bodgy workaround going but the whole script would stop functioning when the screen saver activated which is not what I wanted. 
So, in the end, I had to write a bash script so that it would run whether or not I was at the computer.  It actually seems to work better in bash than in AS. 

Similar Messages

  • AppleScript 10.9.0 System Events -10006  Update property list file item

    Have AppleScript that runs without error on Mountain Lion 10.8.5, but errors out on Mavericks  10.9.0.
    At end of script, property list items need to be updated and this is when error occurs.
    Put together a subset of the script, see below) that get the error
    Statement reads "set value of property list item "ArrayList001" to ArrayList001"
    Text of error:
         error "System Events got an error: 'xxx.plist' is not a property list file."
         number -10006 from contents of property list file "xxx05.plist"
    =============================================================================
    property myPListFile : "cbmck05.plist"
    property myPListFilePath : ""
    property constPreviousRunDay : "PreviousRunDay"
    on run
       set today to "Date01" as string
              set List001 to {}
              set List002 to {}
              set myPListFilePath to ""
              repeat with i from 1 to 8
                        set end of List001 to (i * 2) as string
              end repeat
              set myPListFilePath to path to desktop folder from user domain as string
              set fileMyPList to (myPListFilePath & myPListFile) as string
    clear_file(fileMyPList)
    -- First time! need to initalize
              tell application "System Events"
      -- create an empty property list dictionary item
                        set the parent_dictionary to make new property list item with properties {kind:record}
      -- create new property list file using the empty dictionary list item as contents
                        set new_plistfile to ¬
      make new property list file with properties {contents:parent_dictionary, name:fileMyPList}
      make new property list item at end of property list items of contents of new_plistfile ¬
      with properties {kind:string, name:constPreviousRunDay, value:today}
      make new property list item at end of property list items of contents of new_plistfile ¬
                                  with properties {kind:list, name:"ArrayList001"}
      make new property list item at end of property list items of contents of new_plistfile ¬
                                  with properties {kind:list, name:"ArrayList002"}
              end tell
              set previousRunDate to today
              set xxList to (repopulate_lists())
              set ArrayList001 to List001
              set ArrayList002 to List002
    -- save info in the plist file
              tell application "System Events"
                        tell property list file fileMyPList
                                  tell contents
                                            set value of property list item constPreviousRunDay to previousRunDate
                                            set value of property list item "ArrayList001" to ArrayList001     --   <<< ------- error caused by the statement
                                            set value of property list item "ArrayList002" to ArrayList002
                                  end tell
                        end tell
              end tell
    end run
    -- ==========================================
    on repopulate_lists()
              set newList to {}
              set List002 to {}
              repeat with i from 1 to 8
                        set end of newList to i as string
              end repeat
              set List001 to newList
              return List001
    end repopulate_lists
    -- ==========================================
    -- Does the file exist?
    on fileExists(f)
              try
      f as string as alias
                        return true
              on error errMsg number errNum
                        return false
              end try
    end fileExists
    -- Delete the  files if exist
    on clear_file(aFile)
              if fileExists(aFile) then
                        tell application "Finder"
                                  set resultObject to delete aFile
                        end tell
              end if
    end clear_file

    Here's an AppleScript handler that partially works around this bug (warning: it turns each list item into a string).
    on plistWrite(plistPath, plistItemName, plistItemValue)
      -- version 1.1, Daniel A. Shockley
      -- 1.1 - rough work-around for Mavericks bug where using a list for property list item value wipes out data
              if class of plistItemValue is class of {"a", "b"} and AppleScript version of (system info) as number ≥ 2.3 then
      -- Convert each list item into a string and escape it for the shell command:
      -- This will fail for any data types that AppleScript cannot coerce directly into a string.
                        set plistItemValue_forShell to ""
                        repeat with oneItem in plistItemValue
                                  set plistItemValue_forShell to plistItemValue_forShell & space & quoted form of (oneItem as string)
                        end repeat
                        set shellCommand to "defaults write " & quoted form of POSIX path of plistPath & space & plistItemName & space & "-array" & space & plistItemValue_forShell
      do shell script shellCommand
                        return true
              else -- handle normally, since we aren't dealing with Mavericks list bug:
                        tell application "System Events"
      -- create an empty property list dictionary item
                                  set the parent_dictionary to make new property list item with properties {kind:record}
                                  try
                                            set plistFile to property list file plistPath
                                  on error errMsg number errNum
                                            if errNum is -1728 then
                                                      set plistFile to make new property list file with properties {contents:parent_dictionary, name:plistPath}
                                            else
                                                      error errMsg number errNum
                                            end if
                                  end try
                                  tell plistFile
                                            try
                                                      tell property list item plistItemName
                                                                set value to plistItemValue
                                                      end tell
                                            on error errMsg number errNum
                                                      if errNum is -10006 then
      make new property list item at ¬
                                                                          end of property list items of contents of plistFile ¬
      with properties ¬
                                                                          {kind:class of plistItemValue, name:plistItemName, value:plistItemValue}
                                                      else
                                                                error errMsg number errNum
                                                      end if
                                            end try
                                  end tell
                                  return true
                        end tell
              end if
    end plistWrite

  • AppleScript: System Events - delete

    I've been trying to get System Events delete command to accept multiple files and no matter how I try to preset the files to the delete command I get an error.
    According to the dictionary entry for System Events - delete it would appear it should take multiple files:
    delete v : Delete disk item(s).
    delete disk item : The disk item(s) to be deleted.
    This is what I have
    tell application "System Events"
              set ss to every disk item in desktop folder whose name contains "Screen Shot" and name extension is "png"
      delete ss
    end tell
    And this is the log window
    tell application "System Events"
      get every disk item of desktop folder whose name contains "Screen Shot" and name extension = "png"
      --> {file "Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.02 .png", file "Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.17 .png"}
      delete {file "Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.02 .png", file "Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.17 .png"}
      --> error number -1700 from {file "Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.02 .png", file "Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.17 .png"} to reference
    Result:
    error "System Events got an error: Can’t make {file \"Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.02 .png\", file \"Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.17 .png\"} into type reference." number -1700 from {file "Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.02 .png", file "Mac OS Lion:Users:frank:Desktop:Screen Shot 2013-03-22 at 14.31.17 .png"} to reference
    Now if I do
    delete item 1 of ss
    the file is deleted. Also if I do a repeat through the list I can delete each file.
    I've tried every which way I can thing of to play with the list to get multiple files to delete with no success. But I have to admit that file references still send me to the book to get it right.
    So what basic bit of AppleScript vodoo am I missing or is this one of those cases where the dictionary does not match the code?
    thanks

    The only way I've ever been able to get that to work is to do the delete immediately:
    tell application "System Events"
              delete (disk items of desktop folder whose name contains "Screen Shot" and name extension = "png")
    end tell
    it seems that when you store it into a variable, system events no longer accepts it.  The only reason I can think for this is that the scripting dictionary asks for a disk item rather than a list of disk items.  It's possible that editing the scriptSuite files to tell it to accept a list would solve the issue, but I've never experimented.

  • Help "Where is System Events.app?"

    ok i did a cache cleaning with the itool, after restart my computer a mesage apear, a window of Choose Application pop up with thise, "Where is System Events.app?" after that the list of app's in my computer to choose, what should i do? and what is System Events?

    It's located in /System/Library/CoreServices/. However, there's no reason that alert should appear. I suggest doing two things. First,
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger and Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger, and 4.1 for Leopard) and/or TechTool Pro (4.6.1 for Leopard) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    Second, is to restart the computer.

  • Windows 8.1 - Windows Couldn't connect to the System Event Notification Service service

    I have an issue that has been bothering me for a while on new 8.1 computers. Standard users are not able to log into the computer on the first try consistently. They receive the error message: Group Policy client service failed the sign-in access is
    denied. They are stuck at the logon screen.
    If an administrator logs in (local or domain), they can log in but get a black desktop with two error messages. The first is Location is Not available - C:\Windows\system32\config\systemprofile\Desktop is unavailable. The second error message is a popup
    balloon. It states "Failed to Connect to a Windows service. Windows couldn't connect to the System Event Notification Service service."
    When a standard user attempts to log in, event viewer records three warnings. They are listed in order from oldest to newest
    The winlogon notification subscriber <Profiles> was unavailable to handle a critical notification event. -Logged 9:14:44
    The winlogon notification subscriber <GPClient> failed a critical notification event. - Logged 9:14:44
    The winlogon notification subscriber <Profiles> was unavailable to handle a notification event. - Logged 9:14:49
    After a reboot, users still have the issue. I noticed that the user profile services and system event notification service are not running though their startup type is automatic. They start after a minute or two.

    Hi Joseph__Moody,
    Based on your description ,I assume it is a domain environment .First of all ,I would suggest you to try to update all the machine .
    "I have an issue that has been bothering me for a while on new 8.1 computers"
    Do you mean all the Windows 8.1 machine share the same symptom or just a specific one ?Did the machine work correctly before ?When did the issue start to occur ?Have you installed any third party software before ?Can we operate the machine when we login with
    an administrator account ?
    If the issue occurred with the specific machine :
    "The first is Location is Not available - C:\Windows\system32\config\systemprofile\Desktop is unavailable."
    Please try the following suggestions if we can operate the machine when we login with the administrator account :
    Open Windows Explorer and navigate to: C:\Windows\system32\config\systemprofile and verify if it has the Desktop folder there.If the folder doesn`t exit, we can copy from C:\users\Default\Desktop location(This folder is hidden by default).
    We also can try the following suggestions to have a troubleshoot :
    1.Run "sfc /scannow"or "dism /online /cleanup-image /restorehealth" to check the health of the system files.
    2.Perform a full scan with an antivirus software.
    3."They start after a minute or two."
    I suspect there is a third party service confilct here. Please perform a clean boot to verify whether there is a third party conflict here .
    How to perform a clean boot in Windows
    https://support.microsoft.com/en-us/kb/929135
    If the issue occurred with multiple machines in the domian ,I would suggest you to check whether you have configured any logon scripts and logon group policy .We can remove the machine from the domain to have  a troubleshoot .
    If the issue occurred recently ,we can perform a system restore to recover the machine to a previous normal point.
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected].

  • Viewing Events in a List Format

    Trying to Organize on Iphoto over 15k Photos that were previously very organized on my PC. On the PC I had my photos in what would be considered folders/albums on I photos. I did the import from my external harddrive and ended up with a lot of random events - many in order many not. Guess I'm used to viewing photos differently and the view in events is not cutting it at all.
    Is there a way to view events in a list format - similar to explorer on the PC. What have you found as the best way to organize photos coming from a PC? I had mine by year - example 2009/ then named for each month - 1Jan09NewYears, 2Feb09Valentine's Day etc. on the PC.
    I know this is really a personal choice - just looking for ideas and a WAY to View Events in a LIST Format.
    Thanks

    Is there a way to view events in a list format - similar to explorer on the PC.
    No. iPhoto is about the Photos not the Filenames.
    What have you found as the best way to organize photos coming from a PC? I had mine by year - example 2009/ then named for each month - 1Jan09NewYears, 2Feb09Valentine's Day etc. on the PC.
    You can find all the photos from a specific date very easily:
    a: Click on the Magnifying Glass in the Search Box at the bottom of the iPhoto Window. Select Date. Now you can find all the pics from any Year, Month or Day, just by selecting that Year, Month or Day
    b: Use a Smart Album: (File -> New Smart Album) based on Date will again, find all the pics from a Date or Date Range.
    However, If I might comment: Looking for a List View, Sorting on Date are simply trying to use File Organisation on your Photos. iPhoto has many more ways of doing things, and much more flexible. For instance, while knowing the date a pic was taken makes it really easy to find, what if you don't know the date? Again, the date is easy, but what if you want to have a separate heading for your favourite photos, regardless of date and so on. This is a canned answer I use and it explains my organising system:
    I use Events simply as big buckets of Photos: Spring 08, July - Nov 06 are typical Events in my Library. I use keywords and Smart Albums exensively. I title the pics broadly.
    I keyword on a
    Who
    What
    Where basis (The When is in the photos's Exif metadata). I also rate the pics on a 1 - 5 star basis.
    Using this system I can find pretty much find any pic in my 25k library in a couple of seconds.
    So, for example, I have a batch of pics titled 'Seattle 08' and a typical keywording might include: John, Anne, Landscape, mountain, trees, snow. With a rating included it's so very easy to find the best pics we took at Mount Rainier.
    File -> New Smart Album
    set it to 'All"
    title contains Seattle
    keyword is mountain
    keyword is snow
    rating is 5 stars
    Or, want a chronological album of John from birth to today?
    New Smart Album
    Keyword is John
    Set the View options to Sort By Date Ascending
    Want only the best pics?
    add Rating is greater than 4 stars
    The best thing about this system is that it's dynamic. If I add 50 more pics of John to the Library tomorrow, as I keyword and rate them they are added to the Smart Album.
    Keywording takes time to set up, there's no doubt about it. I use Keyword Manager as it's much more powerful than the inbuilt system, and adds the possibility of nested keywords. So, for instance, if I add John to a photo it also adds 'Family'. Now I can add many keywords to a pic quickly.
    In the end, organisation is about finding the pics. The point is to make locating that pic or batch of pics findable fast. This system works for me.
    Regards
    TD

  • In windows system events observed below bugcheck at the time of restart. Error _02/08/2015 11:27:58 _BugCheck _none _0x00000050 (0xfffff8a01cba4000, 0x0000000000000000, 0x... _1001

    In windows system events observed below bugcheck at the time of restart.

    Hi,
    It seems to be a system crash issue, we need to analyze the crash dump file to narrow down the root cause of the issue. Unfortunately, it is not effective for us to debug the crash dump file here in the forum. I would like to suggest that you contact Microsoft
    Customer Service and Support (CSS) via telephone so that a dedicated Support Professional can assist with your request.
    To obtain the phone numbers for specific technology request please take a look at the web site listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;OfferProPhone#faq607
    Best Regards,
    Mandy
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Mysterious repeat log entries in System events log

    I tried unsuccessfully to share internet connection with 2 iMacs without router(That doesn't matter). But after this, my iMac (24" 2.8 GHz) not networked or on internet now shows this repeated log entries every minute:
    com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds
    This message gets repeated every minute on System events log. Daily, Monthly maintenance was not done automatically earlier today on this iMac (usually it did without any problem) which was on all-night.
    I checked with Disk Utility, repaired permissions. Although no problems in working, this continuous log writings disturbs me.
    Thanks for any help & Happy New Year!
    Best.

    Thanks, V.K. Did that (was asked password). System log showed after restart:
    com.apple.launchd[1] (com.apple.InternetSharing[152]): Exited with exit code: 1
    com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds
    com.apple.launchd[1] (com.apple.InternetSharing153): Exited with exit code: 1
    com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds
    Then it started again the same way as above - with each aditional line each time as shown above. Thanks for sticking with me on this. Hope you will offer other suggestions.
    Best.

  • NetBT 4321 Errors in Member Server's System Event Logs

    Hi,
    I've searched high and low and can't find a resolution to this issue.  We have approximately 30 windows server 2003 servers, most R2, all SP2.  We have 2 domain controllers - 10.0.0.10 & 10.0.0.11 (the first one holds the PDC role).
    In the System event log of nearly all the member servers is the NetBT 4321 error, with the following text:
    "The name "OURDOMAIN :1d" could not be registered on the Interface with IP address 10.0.0.43. The machine with the IP address 10.0.0.10 did not allow the name to be claimed by this machine."
    On each machine the first IP mentioned is always that machine's IP (10.0.0.43 in this case), with the second one (the one not allowing 1d to be registered) being the PDC emulator's IP (10.0.0.10).  Now I can understand why this is failing - these machines are all on the same subnet and I would guess that the domain (1d) should only be registered by the PDC emulator anyway.  What I can't work out is why these errors started appearing about 3 months ago - we can't work out what, if any, change occured at that time.
    We run a DNS-only environment (no WINS), 2k3 Native domain.  We're looking to upgrade to a 2k8 Native domain (ie upgrading our DCs) but are wanting to get this niggling issue sorted first.
    Any help would be much appreciated.
    Regards,
    Ben N.

    Hi,
    At some stage I've not been clear - no we most certainly don't have two IPs per server - the two IPs together above are the two domain controllers.
    Here's the IPconfig:
    DOMAIN CONTROLLER:
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : svrdomain1
    Primary Dns Suffix . . . . . . . : us.local
    Node Type . . . . . . . . . . . . : Unknown
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : No
    DNS Suffix Search List. . . . . . : us.local
    Ethernet adapter Local Area Connection 3:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : HP Network Team #1
    Physical Address. . . . . . . . . : 00-0B-CD-23-12-F9
    DHCP Enabled. . . . . . . . . . . : No
    IP Address. . . . . . . . . . . . : 10.0.0.10
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . : 10.0.0.1
    DNS Servers . . . . . . . . . . . : 10.0.0.10
    10.0.0.11
    PROBLEMATIC SERVER:
    Windows IP Configuration
    Host Name . . . . . . . . . . . . : svrfile1
    Primary Dns Suffix . . . . . . . : us.local
    Node Type . . . . . . . . . . . . : Broadcast
    IP Routing Enabled. . . . . . . . : No
    WINS Proxy Enabled. . . . . . . . : No
    DNS Suffix Search List. . . . . . : us.local
    Ethernet adapter Local Area Connection:
    Connection-specific DNS Suffix . :
    Description . . . . . . . . . . . : VMware Accelerated AMD PCNet Adapter
    Physical Address. . . . . . . . . : 00-50-56-89-14-79
    DHCP Enabled. . . . . . . . . . . : No
    IP Address. . . . . . . . . . . . : 10.0.0.43
    Subnet Mask . . . . . . . . . . . : 255.255.255.0
    Default Gateway . . . . . . . . . : 10.0.0.1
    DNS Servers . . . . . . . . . . . : 10.0.0.10
    10.0.0.11
    Thanks,
    Ben.

  • Can I queue a system event?

    I have an application where the event handling is processed in the RunUserInterface() loop.
    I would like to simulate pressing a sequence of command buttons and thus activate their callbacks, hence I would like to add a system event (EVENT_COMMIT on a given control) to the event queue to be handled in the event loop, (or just call their callback directly) - and then I need to add an event to the system queue to get back to my "simulation" subroutine (which I just implement as a call back as well).
    I can of course add user events, but if I understand correctly, these events are not handled in the RunUserInterface() loop?
    (How) can I add events to the system(?) event queue to be handled in the RunUserInterface() loop? Or do I need to set up my own event handling loop?

    Sure - I just tried it, and it works as expected.
    I created a MIDI region at about 3 1 1 1, selected it, opened up the event list, clicked on "Create" to enter the create events mode, and clicked on the "Meta Events" button to create a meta event inside that region (which by default, goes to the current position, which in my case is 3 1 1 1).
    Change the "Num" value of the event to 52 ("Stop Playback" is displayed in the Length/Info event column).
    Now, playing the song from 1 1 1 1 plays until it reaches 3 1 1 1 (where the stop event is) and Logic stops.
    You can of course move the region containing the stop event to wherever you need it.
    Simple as that - there isn't any more detail I can go into

  • Startup error message:System Events got an error: NSInternalScriptError (8)

    I just upgraded from Panther to Tiger on my mac Mini and I can't seem to get rid of this message everytime I boot up:
    System Events got an error: NSInternalScriptError (8)
    Any idea how I can "fix" this?
    Much thanks.

    Do you have any login items listed in the Accounts pane of your System Preferences? If so, disable them and restart to see if that clears the message. If so, then re-enable them one by one and restart to see which one it is.
    In doing a Google search, that message appears to come from an AppleScript. So perhaps you have an AppleScript running at login that needs to be modified to be compatible with Tiger...
    charlie

  • System Events startup problem

    Recently I noticed my Macbooks fans where spinning all the time for no apparent reason.
    Upon further investigation I found out every single time I reboot my Macbook an application titled "System Events" will use up 50-60% of my CPU (continuously) until I force quit it from within the Activity Monitor and after this it will happily idle at around 3% presumably doing what ever task it does.
    I didn’t want to outright delete the application as I have no idea what it does and its also inside a folder labeled "Core Services", seemed like an area to tread carefully within.
    At least I have found a relatively simple work around but I was wondering if there is anyway to stop this happening all together?
    So far I've tried to disable each application that is being loaded on startup one at time to see if its any of them, Ive also tried adding and deleting the offending System Events application from the startup applications.
    Ive had no luck so far so any help will be much appreciated, if you need any further information on my Macbook I will be more than happy to provide it.
    Thanks for reading.
    EDIT: Ive also tried leaving the Macbook running while I was at work for around 6 hours, when I came home System Events was still at 60%, the logic behind doing this was to see if it was doing some sort of task system wide and I wasn’t giving it enough time to execute.
    Also these are the current applications running on startup.
    Quote:
    Ruby:~ Juo$ defaults read loginwindow | grep Path
    Path = "/Applications/iTunes.app/Contents/Resources/iTunesHelper.app";
    Path = "/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app" ;
    Path = "/Applications/Quicksilver.app";
    Path = "/Users/juo/Library/PreferencePanes/SynergyKM.prefPane/Contents/Resources/Syner gyd.app";
    Path = "/Applications/Colloquy.app";
    Path = "/Applications/Google Notifier.app";
    Path = "/Users/juo/Library/PreferencePanes/BusySync.prefPane/Contents/Resources/BusySy nc.app";
    Path = "/Volumes/Juo";
    Path = "/Applications/Adium.app";
    Path = "/Applications/Twitterrific.app";
    Path = "/Users/juo/Library/PreferencePanes/GrabUp.prefPane/Contents/Resources/GrabUpDa emon.app";
    Path = "/Users/juo/Library/PreferencePanes/GeekTool.prefPane/Contents/Resources/GeekTo ol.app";
    Path = "/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlMenu.app";
    Finally I am running Leopard 10.5.2 and have all the latest updates available within "Software Update"

    Welcome to the forums!
    "System Events" is widely used by AppleScript and by apps using AppleScript. Do NOT touch the app itself. You can certainly remove it from Login Items without making a scrap of difference - it will simply take a fraction of a second longer for the calling app to use it.
    IMO, you are going about things the right way. I am, in fact, surprised that one of those items you list is not the culprit. The culprit is most likely to be something in your Login Items or in /Library/StartupItems. You can ascertain which by logging into another, clean, account - create a temporary one if you don't have one. That will immediately tell you if the problem is limited to your account or is global.
    Tell us whether the problem is global or not, and that there is no doubt that you have exonerated the above items, and one of us will tell you where to look next.

  • Page not loading - Events, To-do list, Notes

    Hi,
    I am having this error of not loading events, to-do list or notes pages. It gives me following message.
    "Sorry, we're having some problems bringing you this page. It's our fault not yours, so please try again later."
    I saw similar posts regarding this on this discussions forums. Some suggested solutions were to change browser agent and clear browswer cache.
    I already tried signin into Ovi using different browsers (FF, IE, Opera and Chrome) on different computers. I still get the same error message.
    Also, when I try to sync Notes to my Nokia N82, Phones gives me an error message "System Error". Device firmware is V 30.0.019.
    Anybody else get this error? Any solutions?
    Your help will be really appreciated since I have important information on my notes.
    Thank you.

    Did the problem appear just now or have you had it since beginning?
    Are you using any specific language or charactersin your devices or are they all in english?
    For me the cache clear has always helped but as you mentioned, you have already tried that. so it sounds like there is something wrong with your account? Did you try to contact Nokia?

  • Playing Sound Effects with System events

    I remember that years ago, it was possible to play sound effects with system events (start up, shutdown, insert/eject disks etc.) and am wondering if it's possible to do the same under Tiger and, if so, how.
    Thanks & regards,
    Cliff
    Brighton, UK

    9 had a slew of sound effects. OS X is not so forth coming but in one of the System Preferences, maybe Accounts or General (I'm at work on a PC and can't check) there is an option to turn on what few sounds are offered.

  • Snow Leopard upgrade "where is system events" message on first boot

    I just upgraded Mac OS 10.5.8 to Snow Leopard via retail DVD on my mid-2007 MacBook Pro (just upgrade, not Erase and Install). The install succeeded and the machine rebooted....Setup Assistant started and I got a pop-up window with "Choose Application" in the header and the message "Where is System Events" and the bottom pane showing the list of applications on the machine and the options to Browse, Cancel or Choose...
    What does this message refer to?
    What should I do?

    nobody seems to know for sure why this messages comes up for some people after upgrade. some 3rd party app you have is doing it.
    http://www.macosxhints.com/article.php?story=20090828102610398
    it's ok to hit cancel but it's also ok to select 'system events" which is located in /system/library/coreservices". also check your login items. if system events is there remove it from login items.

Maybe you are looking for