Has anyone created an AppleScript/Application to launch PlexConnect at startup?

Hi, didn't followed really last pages and want to catch up, so a few things:

i am using the script from post #97 i think, and PlexConnect app created with this script open on login and it's all good. Except of the fact that PMS will open without a password in the login screen with your guide, Will there be anything else different?

Thanks :)

Not sure i follow what you mean by "Except of the fact that PMS will open without a password in the login screen with your guide".  The applescript still requires an entry in Keychain so that it has access to the user and password to run the script with administrator privileges.  The only changes i made to the script were to not use the "screen" command since it appears broken in 10.9 Mavericks and instead rely on the daemon bash script that is now in the latest release of the PlexConnect code.

Not sure i follow what you mean by "Except of the fact that PMS will open without a password in the login screen with your guide".  The applescript still requires an entry in Keychain so that it has access to the user and password to run the script with administrator privileges.  The only changes i made to the script were to not use the "screen" command since it appears broken in 10.9 Mavericks and instead rely on the daemon bash script that is now in the latest release of the PlexConnect code.

Of course he down, but his guide contains a .plist or something that make PMS open in the login screen, before putting the password in-To make the opening time of all login items shorter.

Just a sec, is there a new code for the applescript since post #97

What post is it? I want to update to be Mavericks-ready :)

Of course he down, but his guide contains a .plist or something that make PMS open in the login screen, before putting the password in-To make the opening time of all login items shorter.

Just a sec, is there a new code for the applescript since post #97

What post is it? I want to update to be Mavericks-ready :)

The changes you need to make to the applescript to work with Mavericks is in post 233. You need to have the latest code for PlexConnect from Github to make it work since it relies on the daemon bash script.

The changes you need to make to the applescript to work with Mavericks is in post 233. You need to have the latest code for PlexConnect from Github to make it work since it relies on the daemon bash script.

Sorry, didn't catch it all up yet. What is the deamon bash script and what does it do? 


Ok i figured out how to fix this to work on Mavericks. By using the daemon script that has been added to the most recent version of PlexConnect, you can modify the applescript to use it instead of using the "screen" command. Here's the changes you need to make.

1. In PlexConnect_daemon.bash script, change the INSTALL_DIR variable to the fully path of your PlexConnect directory

INSTALL_DIR="/Users/rob/Development/PlexConnect"

2. In the applescript, change the "py" variable to point to the daemon script

set py to "/Users/rob/Development/PlexConnect/PlexConnect_daemon.bash"

3. In the applescript, change the "do shell" and "on quit" sections to pass the start and stop parameters to the daemon script. Take notice that there is a space before "start" and "stop"

do shell script py & " start" user name un password thePassword with administrator privileges

on quit
do shell script py & " stop" user name un password thePassword with administrator privileges
continue quit
end quit

Will this work on ML too? I'm not on Mavericks yet. And the deamon file will change sometimes in the future, so i'll have to do this every time?

And about the last step with the do shell stuff-should i just Rewrite your do shell and on quit or add it? here's my do shell and on quit, what should i do with them?

do shell script "screen -A -m -d -S PlexConnect " & py user name un password thePassword with administrator privileges

 

on quit

do shell script "kill `ps -u root | grep [P]lexConnect | grep [Pp]ython | awk '{print $2}'`" user name un password thePassword with administrator privileges

continue quit

end quit

Will this work on ML too? I'm not on Mavericks yet. And the deamon file will change sometimes in the future, so i'll have to do this every time?

And about the last step with the do shell stuff-should i just Rewrite your do shell and on quit or add it? here's my do shell and on quit, what should i do with them?

do shell script "screen -A -m -d -S PlexConnect " & py user name un password thePassword with administrator privileges

 

on quit

do shell script "kill `ps -u root | grep [P]lexConnect | grep [Pp]ython | awk '{print $2}'`" user name un password thePassword with administrator privileges

continue quit

end quit

Ok, answered a few of my own questions:

It works with ML.

I replaced the do shell and on quit with the new lines .. And it works

Last question:

The deamon file will change in the future, with more lines, fixes & stuff, so i'll have to edit it every time?

Ok, answered a few of my own questions:

It works with ML.

I replaced the do shell and on quit with the new lines .. And it works

Last question:

The deamon file will change in the future, with more lines, fixes & stuff, so i'll have to edit it every time?

If the daemon file changes in the github repository, you'll need to just change the INSTALL_DIR variable in the daemon script. No changes would be required to the applescript.

If the daemon file changes in the github repository, you'll need to just change the INSTALL_DIR variable in the daemon script. No changes would be required to the applescript.

Understood that :)

But why can't we develop an app in Xcode based on this applescript that'll check for updates and PlexConnect folder will be installed in it's files, so the install_dir will be the same at all devices? It'll be on the bar like PMS and download the newest zip automatically without telling you, and when the code itself will update, there will be a check for updates button.

They are working on a launcher it seems upstream. There is a comment that describes how to create the launcher:

http://forums.plexapp.com/index.php/topic/70149-has-anyone-created-an-applescriptapplication-to-launch-plexconnect-at-startup/page-5#entry424256

For the time being, I created an Application to make launching PlexConnect.py easier with automator. Here is location of the one I created with included icon. In directions below there is link to a tarball link if you do not want to clone the repo.

https://github.com/sbradley7777/dot.config/tree/master/osx/automator/automator.apps/Launch-PlexConnect.app

How to install and run:

1) You will need to create a keychain for PlexConnect.py to use that has admin rights so that sudo can be ran:

   login -> password -> application  called PlexConnect

2) Create a symlink for PlexConnect.py

$ mkdir ~/bin
$ ln -s ~/github/PlexConnect/PlexConnect.py ~/bin/PlexConnect.py

3) Clone the repo or download the tarball that contains Launch-PlexConnect.app.

     If you download the tarball then just extract the tarball if OSX does not do automatically.

$ cd ~/Downloads
$ tar jxvf Launch-PlexConnect.app.tar.bz2

4) To launch the app Launch-PlexConnect.app then just double click on the app or add to startup login.

Miscellaneous  Items

If you need to stop or list processes of the apps then just add the following alias to your ~/.bashrc file.

alias kill_plexconnect="sudo pkill -9 -f PlexConnect.py";
alias ps_plexconnect="pgrep -l -f PlexConnect.py";

The run the following command to source the new alias in. If PlexConnect.py it will list any running processes, kill any running processes, and then will list any running processes that contain the string PlexConnect.py.

$ source ~/.bashrc
$ ps_plexconnect
$ kill_plexconnect
$ ps_plexconnect

I agree that we need a better solution that does not involve sudo/root to open sockets. I am not sure if possible in OSX.

UPDATE:

I updated the automater app so that a generic path is used: ~/bin/PlexConnect.py. This means that there is no need to modify the automater application.

If you have questions or problems just reply to thread.

UPDATE:

I removed automator from my git repo master, but here is commit before I removed it: https://github.com/sbradley7777/dot.config/blob/73892d56b226d6eadbf0f21579d65bdfe7de02be/osx/automator/automator.apps/Launch-PlexConnect.app.tar.bz2

They are working on a launcher it seems upstream. There is a comment that describes how to create the launcher:

http://forums.plexapp.com/index.php/topic/70149-has-anyone-created-an-applescriptapplication-to-launch-plexconnect-at-startup/page-5#entry424256

For now, I wanted to create a launcher and here is location of the one I created with included icon

https://github.com/sbradley7777/dot.config/tree/master/osx/automator/automator.apps/Launch-PlexConnect.app

You will need to create a keychain for PlexConnect to use that has admin rights so that sudo can be ran:

   login -> password -> application  called PlexConnect

To launch the app Launch-PlexConnect.app then just double click on the app or add to startup login.

If you need to stop or list processes of the apps then just add the following alias to your ~/.bashrc file.

alias kill_plexconnect="sudo pkill -9 -f PlexConnect.py";
alias ps_plexconnect="pgrep -l -f PlexConnect.py";

The run the following command if PlexConnect is running. If you want to source it in the current terminal or you will need to logout to run in terminal:

$ source ~/.bashrc
$ ps_plexconnect
$ kill_plexconnect
$ ps_plexconnect

I agree that we need a better solution that does not involve sudo/root to open sockets. I am not sure if possible in OSX.

UPDATE:

Just forgot that install path is different, so you will need to change that in workflow file. Might fix that later.

https://github.com/sbradley7777/dot.config/blob/master/osx/automator/automator.apps/Launch-PlexConnect.app/Contents/document.wflow#L58

But is there a problem to create a normal app based on the apple script with all the features i talked about?

Mavericks launchctl and applescript complete guide moved to here:

http://forums.plexapp.com/index.php/topic/84307-launchctl-and-applescript-methods-for-plexconnect-on-mavericks-osx/

I created a easy way to autostart plexconnect using applescript on mavericks if anyone is interested. Its based on the old plexconnect.py but works well for my situation. I have been told this may be a security issue on this forum so use at your own risk. Im sure you could change it to work with the newer versions of plexconnect and there is launchctl options as well but I prefer applescript so to each their own. Until a sure fire way is created with applescript if it ever is I personally will be using this instead of launchctl. Thanks to chrisbcole for his OP on this. Enjoy :)

Fastuser.app info is in my signature if needed. Here are the icons as well if needed.

That's actually just like applescript so don't need it :) And added icon long time ago.

What is needed is a real applications based on the apple script with all the features i already talked about ..

Ok i figured out how to fix this to work on Mavericks. By using the daemon script that has been added to the most recent version of PlexConnect, you can modify the applescript to use it instead of using the "screen" command. Here's the changes you need to make.

1. In PlexConnect_daemon.bash script, change the INSTALL_DIR variable to the fully path of your PlexConnect directory

INSTALL_DIR="/Users/rob/Development/PlexConnect"

2. In the applescript, change the "py" variable to point to the daemon script

set py to "/Users/rob/Development/PlexConnect/PlexConnect_daemon.bash"

3. In the applescript, change the "do shell" and "on quit" sections to pass the start and stop parameters to the daemon script. Take notice that there is a space before "start" and "stop"

do shell script py & " start" user name un password thePassword with administrator privileges

on quit
do shell script py & " stop" user name un password thePassword with administrator privileges
continue quit
end quit

I was stupid enough to update to Maverick, lots of things are not working anymore..  Seems there is no way back either.

One of the programs that dont work is PlexConnect, have very limited knowledge and even less experience in banging about in .py and such like...

I can't figure out what you mean by: 2. In the applescript, change the "py" variable to point to the daemon script

I have looked in all he files in the PlexConnect directory and can not figure out which file you mean, if I did i don't know here to change/paste what you are suggesting.

I made the change to PlexConnect_daemon.bash.

Please help!

That’s the change required to the AppleScript in post 97.

 Ok, I made the above changes and viola it works until I reboot. Currently, I have my plex media server and the PlexConnect Apple Script to "Open on Login"

 

Prior to Maveriks, I just turn on the computer, both would load, and trailer would work perfectly.

 

Now when I reboot, both load as per previously, however going to trailers on ATV gives me an error..."no plex Library Sections Available".

 

All I have to do is stop the Plex Script and restart it and I can get trailers to work.

 

I know this is not a big deal but I have little kids that have figured out the ATV button pushes to get their shows on trailers but the computer (stopping and restarting the Plex Script" is a little beyond them yet.

 

I believe it likely relates to the boot login order but I cannot get it figured out.

 

Here is the ;log after I reboot, shut down Plex script and restart pled script.

 

10/26/2013 4:32:00.922 PM shutdown[421]: SHUTDOWN_TIME: 1382826720 921807

10/26/2013 4:32:00.944 PM Plex Media Server[244]: XPC error messaging com.apple.IconServicesAgent: Connection interrupted

10/26/2013 4:32:00.944 PM Plex Media Server[244]: XPC error messaging com.apple.IconServicesAgent: Connection invalid

10/26/2013 4:32:00.947 PM Dock[176]: XPC error messaging com.apple.IconServicesAgent: Connection interrupted

10/26/2013 4:32:00.949 PM Dock[176]: XPC error messaging com.apple.IconServicesAgent: Connection invalid

10/26/2013 4:32:00.950 PM quicklookd[198]: XPC error messaging com.apple.IconServicesAgent: Connection interrupted

10/26/2013 4:32:13.000 PM bootlog[0]: BOOT_TIME 1382826733 0

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.appstore" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".

Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.authd" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.bookstore" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.eventmonitor" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.install" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.iokit.power" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.mail" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.MessageTracer" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.performance" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.securityd" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.securityd" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.securityd" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.securityd" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.securityd" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.securityd" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM syslogd[19]: Configuration Notice:

ASL Module "com.apple.securityd" claims selected messages.

Those messages may not appear in standard system log files or in the ASL database.

10/26/2013 4:32:16.000 PM kernel[0]: Longterm timer threshold: 1000 ms

10/26/2013 4:32:16.000 PM kernel[0]: PMAP: PCID enabled

10/26/2013 4:32:16.000 PM kernel[0]: Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64

10/26/2013 4:32:16.000 PM kernel[0]: vm_page_bootstrap: 1974004 free pages and 106764 wired pages

10/26/2013 4:32:16.000 PM kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]

10/26/2013 4:32:16.000 PM kernel[0]: zone leak detection enabled

10/26/2013 4:32:16.000 PM kernel[0]: "vm_compressor_mode" is 4

10/26/2013 4:32:16.000 PM kernel[0]: standard timeslicing quantum is 10000 us

10/26/2013 4:32:16.000 PM kernel[0]: standard background quantum is 2500 us

10/26/2013 4:32:16.000 PM kernel[0]: mig_table_max_displ = 74

10/26/2013 4:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled

10/26/2013 4:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=1 Enabled

10/26/2013 4:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled

10/26/2013 4:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=5 Enabled

10/26/2013 4:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=0 Disabled

10/26/2013 4:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=0 Disabled

10/26/2013 4:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=0 Disabled

10/26/2013 4:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=0 Disabled

10/26/2013 4:32:16.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet

10/26/2013 4:32:16.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)

10/26/2013 4:32:16.000 PM kernel[0]: calling mpo_policy_init for Sandbox

10/26/2013 4:32:16.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)

10/26/2013 4:32:16.000 PM kernel[0]: calling mpo_policy_init for Quarantine

10/26/2013 4:32:16.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)

10/26/2013 4:32:16.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993

10/26/2013 4:32:16.000 PM kernel[0]: The Regents of the University of California. All rights reserved.

10/26/2013 4:32:16.000 PM kernel[0]: MAC Framework successfully initialized

10/26/2013 4:32:16.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers

10/26/2013 4:32:16.000 PM kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)

10/26/2013 4:32:16.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87

10/26/2013 4:32:16.000 PM kernel[0]: ACPI: sleep states S3 S4 S5

10/26/2013 4:32:16.000 PM kernel[0]: pci (build 22:16:29 Sep 19 2013), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000

10/26/2013 4:32:16.000 PM kernel[0]: [ PCI configuration begin ]

10/26/2013 4:32:16.000 PM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0035

10/26/2013 4:32:16.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 22:16:38 Sep 19 2013) initialization complete

10/26/2013 4:32:16.000 PM kernel[0]: console relocated to 0xf80030000

10/26/2013 4:32:16.000 PM kernel[0]: [ PCI configuration end, bridges 7, devices 16 ]

10/26/2013 4:32:16.000 PM kernel[0]: [ PCI configuration begin ]

10/26/2013 4:32:16.000 PM kernel[0]: [ PCI configuration end, bridges 8, devices 22 ]

10/26/2013 4:32:16.000 PM kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size

10/26/2013 4:32:16.000 PM kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]

10/26/2013 4:32:16.000 PM kernel[0]: Pthread support ABORTS when sync kernel primitives misused

10/26/2013 4:32:16.000 PM kernel[0]: rooting via boot-uuid from /chosen: 7089BCE5-ABF8-32A8-BEAF-18271FF32E20

10/26/2013 4:32:16.000 PM kernel[0]: Waiting on IOProviderClassIOResourcesIOResourceMatchboot-uuid-media

10/26/2013 4:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start

10/26/2013 4:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start

10/26/2013 4:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded

10/26/2013 4:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded

10/26/2013 4:32:16.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready

10/26/2013 4:32:16.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchSeriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDriver/APPLE SSD TS512B Media/IOGUIDPartitionScheme/Customer@2

10/26/2013 4:32:16.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 2

10/26/2013 4:32:16.000 PM kernel[0]: BTCOEXIST off 

10/26/2013 4:32:16.000 PM kernel[0]: BRCM tunables:

10/26/2013 4:32:16.000 PM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]

10/26/2013 4:32:16.000 PM kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID e80688fffec1dc54; max speed s800.

10/26/2013 4:32:16.000 PM kernel[0]: USBMSC Identifier (non-unique): 000000009833 0x5ac 0x8403 0x9833, 2

10/26/2013 4:32:16.000 PM kernel[0]: hfs: mounted Macintosh HD on device root_device

10/26/2013 4:32:13.692 PM com.apple.launchd[1]: *** launchd[1] has started up. ***

10/26/2013 4:32:13.692 PM com.apple.launchd[1]: *** Shutdown logging is enabled. ***

10/26/2013 4:32:16.215 PM com.apple.launchd[1]: (com.insynchq.insync.daemon) Unknown key for string: Version

10/26/2013 4:32:16.215 PM com.apple.launchd[1]: (com.insynchq.insync.daemon) Unknown key: Version

10/26/2013 4:32:16.281 PM com.apple.SecurityServer[15]: Session 100000 created

10/26/2013 4:32:16.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification

10/26/2013 4:32:16.000 PM kernel[0]: IO80211Interface::efiNVRAMPublished():  

10/26/2013 4:32:17.522 PM com.apple.SecurityServer[15]: Entering service

10/26/2013 4:32:17.591 PM UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin

10/26/2013 4:32:17.608 PM UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive

10/26/2013 4:32:17.000 PM kernel[0]: AGC: 3.4.12, HW version=1.9.21, flags:0, features:20600

10/26/2013 4:32:17.000 PM kernel[0]: fNumVRAMBlocks is 4

10/26/2013 4:32:17.000 PM kernel[0]: Previous Shutdown Cause: 3

10/26/2013 4:32:17.000 PM kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode

10/26/2013 4:32:17.000 PM kernel[0]: IOBluetoothUSBDFU::probe

10/26/2013 4:32:17.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8218 FirmwareVersion - 0x0042

10/26/2013 4:32:17.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x3c00 ****

10/26/2013 4:32:17.000 PM kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x3c00 ****

10/26/2013 4:32:17.000 PM kernel[0]: NVDAStartup: Official

10/26/2013 4:32:17.000 PM kernel[0]: NVDANV50HAL loaded and registered

10/26/2013 4:32:17.000 PM kernel[0]: init

10/26/2013 4:32:17.000 PM kernel[0]: probe

10/26/2013 4:32:17.000 PM kernel[0]: APExtframeBuffer starting: max resolution 1920x1080

10/26/2013 4:32:17.000 PM kernel[0]: Initializing Framebuffer.

10/26/2013 4:32:17.000 PM kernel[0]: start

10/26/2013 4:32:17.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x3c00 

10/26/2013 4:32:17.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed

10/26/2013 4:32:17.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService

10/26/2013 4:32:17.000 PM kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x0bc0 -- 0x6800 -- 0x3c00 ****

10/26/2013 4:32:17.000 PM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1

10/26/2013 4:32:18.000 PM kernel[0]: IOMemoryDescriptor 0x62d1abb5ee4bb789 prepared read only

10/26/2013 4:32:18.000 PM kernel[0]: Backtrace 0xffffff80006b982e 0xffffff7f821c20e1 0xffffff7f821ccfe2 0xffffff800069297f 0xffffff800069253f 0xffffff800068e119 0xffffff8000693093

10/26/2013 4:32:18.000 PM kernel[0]: Kernel Extensions in backtrace:

10/26/2013 4:32:18.000 PM kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.1.8)[CA277D41-793F-3665-8F67-04A8B906142B]@0xffffff7f8afa4000->0xffffff7f8b063fff

10/26/2013 4:32:18.000 PM kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff7f896c4000

10/26/2013 4:32:18.000 PM kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0xffffff7f899e1000

10/26/2013 4:32:18.000 PM kernel[0]: IOMemoryDescriptor 0x62d1abb5ee53be89 prepared read only

10/26/2013 4:32:18.000 PM kernel[0]: Backtrace 0xffffff80006b982e 0xffffff7f821c22db 0xffffff7f821ccfe2 0xffffff800069297f 0xffffff800069253f 0xffffff800068e119 0xffffff8000693093

10/26/2013 4:32:18.000 PM kernel[0]: Kernel Extensions in backtrace:

10/26/2013 4:32:18.000 PM kernel[0]: com.apple.driver.AppleIntelHDGraphics(8.1.8)[CA277D41-793F-3665-8F67-04A8B906142B]@0xffffff7f8afa4000->0xffffff7f8b063fff

10/26/2013 4:32:18.000 PM kernel[0]: dependency: com.apple.iokit.IOPCIFamily(2.8)[447B4896-16FF-3616-95A2-1C516B2A1498]@0xffffff7f896c4000

10/26/2013 4:32:18.000 PM kernel[0]: dependency: com.apple.iokit.IOGraphicsFamily(2.3.6)[38E388A5-92D6-3388-B799-F2498E582287]@0xffffff7f899e1000

10/26/2013 4:32:18.000 PM kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x3c00 ****

10/26/2013 4:32:18.000 PM kernel[0]: DSMOS has arrived

10/26/2013 4:32:18.000 PM kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key MOTP (kSMCKeyNotFound)

10/26/2013 4:32:18.000 PM kernel[0]: [AGPM Controller] build GPUDict by Vendor8086Device0046

10/26/2013 4:32:18.000 PM kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0a29

10/26/2013 4:32:18.725 PM com.apple.launchd[1]: (com.displaylink.usbnivolistener[86]) Job specified non-existent working directory: /System/Library/Extensions/DisplayLinkDriver.kext/DisplayLinkAgent

10/26/2013 4:32:18.745 PM com.apple.launchd[1]: (com.displaylink.usbnivolistener[86]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory

10/26/2013 4:32:18.745 PM com.apple.launchd[1]: (com.displaylink.usbnivolistener[86]) Job failed to exec(3) for weird reason: 2

10/26/2013 4:32:18.753 PM loginwindow[65]: Login Window Application Started

10/26/2013 4:32:18.756 PM hidd[70]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins

10/26/2013 4:32:18.757 PM hidd[70]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1

10/26/2013 4:32:18.758 PM awacsd[79]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)

10/26/2013 4:32:19.000 PM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).

10/26/2013 4:32:19.791 PM configd[18]: network changed.

10/26/2013 4:32:19.791 PM configd[18]: setting hostname to "Deans-MacBook-Pro.local"

10/26/2013 4:32:20.000 PM kernel[0]: VM Swap Subsystem is ON

10/26/2013 4:32:20.368 PM awacsd[79]: InnerStore CopyAllZones: no info in Dynamic Store

10/26/2013 4:32:20.470 PM sudo[89]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/sbin/mknod /dev/bpf4 c 23 4

10/26/2013 4:32:20.477 PM digest-service[87]: label: default

10/26/2013 4:32:20.477 PM digest-service[87]: dbname: od:/Local/Default

10/26/2013 4:32:20.477 PM digest-service[87]: mkey_file: /var/db/krb5kdc/m-key

10/26/2013 4:32:20.477 PM digest-service[87]: acl_file: /var/db/krb5kdc/kadmind.acl

10/26/2013 4:32:20.480 PM digest-service[87]: digest-request: uid=0

10/26/2013 4:32:20.485 PM mDNSResponder[62]: mDNSResponder mDNSResponder-522.1.11 (Aug 24 2013 23:49:34) starting OSXVers 13

10/26/2013 4:32:20.491 PM sudo[98]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/sbin/mknod /dev/bpf5 c 23 5

10/26/2013 4:32:20.508 PM sudo[100]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/sbin/mknod /dev/bpf6 c 23 6

10/26/2013 4:32:20.532 PM sudo[106]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/bin/chmod a=rwx /dev/bpf0 /dev/bpf1 /dev/bpf2 /dev/bpf3 /dev/bpf4 /dev/bpf5 /dev/bpf6

10/26/2013 4:32:20.532 PM digest-service[87]: digest-request: netr probe 0

10/26/2013 4:32:20.533 PM digest-service[87]: digest-request: init request

10/26/2013 4:32:20.543 PM digest-service[87]: digest-request: init return domain: BUILTIN server: DEANS-MACBOOK-PRO indomain was:

10/26/2013 4:32:20.544 PM apsd[81]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)

10/26/2013 4:32:20.549 PM sudo[108]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/bin/chmod a=rwx /dev/bpf0 /dev/bpf1 /dev/bpf2 /dev/bpf3 /dev/bpf4 /dev/bpf5 /dev/bpf6

10/26/2013 4:32:20.552 PM com.apple.usbmuxd[46]: usbmuxd-323 on Jul 29 2013 at 23:21:29, running 64 bit

10/26/2013 4:32:20.591 PM configd[18]: network changed.

10/26/2013 4:32:20.593 PM configd[18]: network changed: DNS*

10/26/2013 4:32:20.599 PM mDNSResponder[62]: D2D_IPC: Loaded

10/26/2013 4:32:20.599 PM mDNSResponder[62]: D2DInitialize succeeded

10/26/2013 4:32:20.603 PM mDNSResponder[62]:   4: Listening for incoming Unix Domain Socket client requests

10/26/2013 4:32:20.651 PM networkd[124]: networkd.124 built Aug 24 2013 22:08:46

10/26/2013 4:32:20.655 PM WindowServer[95]: Server is starting up

10/26/2013 4:32:20.661 PM WindowServer[95]: Session 256 retained (2 references)

10/26/2013 4:32:20.661 PM WindowServer[95]: Session 256 released (1 references)

10/26/2013 4:32:20.670 PM mds[61]: (Normal) FMW: FMW 0 0

10/26/2013 4:32:20.686 PM WindowServer[95]: Session 256 retained (2 references)

10/26/2013 4:32:20.689 PM WindowServer[95]: init_page_flip: page flip mode is on

10/26/2013 4:32:20.829 PM airportd[83]: airportdProcessDLILEvent: en1 attached (up)

10/26/2013 4:32:20.000 PM kernel[0]: createVirtIf(): ifRole = 1

10/26/2013 4:32:20.000 PM kernel[0]: in func createVirtualInterface ifRole = 1

10/26/2013 4:32:20.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init name role 1

10/26/2013 4:32:20.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init() role 1

10/26/2013 4:32:20.000 PM kernel[0]: Created virtif 0xffffff801cf33000 p2p0

10/26/2013 4:32:20.918 PM systemkeychain[93]: done file: /var/run/systemkeychaincheck.done

10/26/2013 4:32:20.926 PM mds[61]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"

10/26/2013 4:32:20.952 PM sudo[133]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/sbin/mknod /dev/bpf4 c 23 4

10/26/2013 4:32:20.965 PM sudo[137]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/sbin/mknod /dev/bpf5 c 23 5

10/26/2013 4:32:20.981 PM sudo[139]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/sbin/mknod /dev/bpf6 c 23 6

10/26/2013 4:32:21.004 PM locationd[67]: NBB-Could not get UDID for stable refill timing, falling back on random

10/26/2013 4:32:21.005 PM com.apple.kextd[12]: kext foo.tun  100009000 is in exception list, allowing to load

10/26/2013 4:32:21.000 PM kernel[0]: tun kernel extension version 20111101

10/26/2013 4:32:21.181 PM locationd[67]: Location icon should now be in state 'Inactive'

10/26/2013 4:32:21.312 PM sandboxd[127]: ([83]) airportd(83) deny file-read-data /private/var/root/Library/Preferences/ByHost/.GlobalPreferences.C87E9CC0-0D9F-5A12-BF86-040E63AF8B7F.plist

10/26/2013 4:32:21.000 PM kernel[0]: AppleLMUController found an AG vendor product (0x9cb7), notifying SMC.

10/26/2013 4:32:21.000 PM kernel[0]: APExternalDisplay Memory Reserved: 8331264 bytes

10/26/2013 4:32:21.980 PM WindowServer[95]: Found 1 modes for display 0x00000000 [1, 0]

10/26/2013 4:32:22.000 PM kernel[0]: en1: 802.11d country code set to 'US'.

10/26/2013 4:32:22.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165

10/26/2013 4:32:22.043 PM WindowServer[95]: Found 42 modes for display 0x00000000 [33, 9]

10/26/2013 4:32:22.047 PM WindowServer[95]: Found 1 modes for display 0x00000000 [1, 0]

10/26/2013 4:32:22.048 PM WindowServer[95]: Found 1 modes for display 0x00000000 [1, 0]

10/26/2013 4:32:22.106 PM WindowServer[95]: mux_initialize: Mode is dynamic

10/26/2013 4:32:22.108 PM WindowServer[95]: Found 42 modes for display 0x00000000 [33, 9]

10/26/2013 4:32:22.115 PM WindowServer[95]: Found 1 modes for display 0x00000000 [1, 0]

10/26/2013 4:32:22.115 PM WindowServer[95]: Found 1 modes for display 0x00000000 [1, 0]

10/26/2013 4:32:22.176 PM WindowServer[95]: WSMachineUsesNewStyleMirroring: false

10/26/2013 4:32:22.178 PM WindowServer[95]: Display 0x04272dc0: GL mask 0x5; bounds (0, 0)[1680 x 1050], 42 modes available

Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cb7, S/N 0, Unit 0, Rotation 0

UUID 0x0dd0e4cb9815451eb82218b6243ae528

10/26/2013 4:32:22.178 PM WindowServer[95]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available

off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0

UUID 0xffffffffffffffffffffffffffffffff

10/26/2013 4:32:22.178 PM WindowServer[95]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available

off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0

UUID 0xffffffffffffffffffffffffffffffff

10/26/2013 4:32:22.179 PM WindowServer[95]: WSSetWindowTransform: Singular matrix

10/26/2013 4:32:22.180 PM WindowServer[95]: WSSetWindowTransform: Singular matrix

10/26/2013 4:32:22.185 PM WindowServer[95]: Display 0x04272dc0: GL mask 0x5; bounds (0, 0)[1680 x 1050], 42 modes available

Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cb7, S/N 0, Unit 0, Rotation 0

UUID 0x0dd0e4cb9815451eb82218b6243ae528

10/26/2013 4:32:22.185 PM WindowServer[95]: Display 0x003f003f: GL mask 0x8; bounds (2704, 0)[1 x 1], 1 modes available

off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0

UUID 0xffffffffffffffffffffffffffffffff

10/26/2013 4:32:22.185 PM WindowServer[95]: Display 0x003f003d: GL mask 0x2; bounds (2705, 0)[1 x 1], 1 modes available

off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0

UUID 0xffffffffffffffffffffffffffffffff

10/26/2013 4:32:22.185 PM WindowServer[95]: CGXPerformInitialDisplayConfiguration

10/26/2013 4:32:22.185 PM WindowServer[95]:   Display 0x04272dc0: Unit 0; Alias(0, 0x5); Vendor 0x610 Model 0x9cb7 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1680 x 1050], Rotation 0, Resolution 1

10/26/2013 4:32:22.186 PM WindowServer[95]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2704,0)[1 x 1], Rotation 0, Resolution 1

10/26/2013 4:32:22.186 PM WindowServer[95]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2705,0)[1 x 1], Rotation 0, Resolution 1

10/26/2013 4:32:22.186 PM WindowServer[95]: CGXMuxBoot: Boot normal

10/26/2013 4:32:22.246 PM WindowServer[95]: GLCompositor: GL renderer id 0x01022612, GL mask 0x00000003, accelerator 0x00004ba3, unit 0, caps QEX|MIPMAP, vram 512 MB

10/26/2013 4:32:22.260 PM WindowServer[95]: GLCompositor: GL renderer id 0x01022612, GL mask 0x00000003, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT

10/26/2013 4:32:22.260 PM WindowServer[95]: GLCompositor: GL renderer id 0x01024300, GL mask 0x00000004, accelerator 0x00003427, unit 2, caps QEX|MIPMAP, vram 288 MB

10/26/2013 4:32:22.263 PM WindowServer[95]: GLCompositor: GL renderer id 0x01024300, GL mask 0x00000004, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT

10/26/2013 4:32:22.263 PM WindowServer[95]: GLCompositor enabled for tile size [256 x 256]

10/26/2013 4:32:22.263 PM WindowServer[95]: CGXGLInitMipMap: mip map mode is on

10/26/2013 4:32:22.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 84:1b:5e:45:f5:32  MAC AUTH succeeded

10/26/2013 4:32:22.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0

10/26/2013 4:32:22.000 PM kernel[0]: AirPort: Link Up on en1

10/26/2013 4:32:22.000 PM kernel[0]: en1: BSSID changed to 84:1b:5e:45:f5:32

10/26/2013 4:32:22.288 PM loginwindow[65]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.

10/26/2013 4:32:22.000 PM kernel[0]: AirPort: RSN handshake complete on en1

10/26/2013 4:32:22.367 PM WindowServer[95]: Display 0x04272dc0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)

10/26/2013 4:32:22.408 PM com.apple.launchd[1]: (com.displaylink.useragent[159]) Job specified non-existent working directory: /System/Library/Extensions/DisplayLinkDriver.kext/DisplayLinkAgent

10/26/2013 4:32:22.414 PM com.apple.launchd[1]: (com.displaylink.useragent[159]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory

10/26/2013 4:32:22.414 PM com.apple.launchd[1]: (com.displaylink.useragent[159]) Job failed to exec(3) for weird reason: 2

10/26/2013 4:32:22.415 PM launchctl[151]: com.apple.findmymacmessenger: Already loaded

10/26/2013 4:32:22.445 PM com.apple.SecurityServer[15]: Session 100005 created

10/26/2013 4:32:22.510 PM loginwindow[65]: Setting the initial value of the magsave brightness level 1

10/26/2013 4:32:22.517 PM UserEventAgent[153]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin

10/26/2013 4:32:22.558 PM loginwindow[65]: Login Window Started Security Agent

10/26/2013 4:32:22.000 PM kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1

10/26/2013 4:32:22.650 PM SecurityAgent[161]: This is the first run

10/26/2013 4:32:22.650 PM SecurityAgent[161]: MacBuddy was run = 0

10/26/2013 4:32:22.667 PM WindowServer[95]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fd193c0c080) - enabling OpenGL

10/26/2013 4:32:22.670 PM SecurityAgent[161]: User info context values set for Deurich

10/26/2013 4:32:23.008 PM loginwindow[65]: Login Window - Returned from Security Agent

10/26/2013 4:32:23.107 PM airportd[83]: _doAutoJoin: Already associated to “Gandalf_EXT”. Bailing on auto-join.

10/26/2013 4:32:23.143 PM loginwindow[65]: USER_PROCESS: 65 console

10/26/2013 4:32:23.000 PM kernel[0]: AppleKeyStore:Sending lock change 0

10/26/2013 4:32:23.280 PM com.apple.launchd.peruser.501[169]: Background: Aqua: Registering new GUI session.

10/26/2013 4:32:23.302 PM com.apple.launchd.peruser.501[169]: (com.apple.cmfsyncagent) Ignored this key: UserName

10/26/2013 4:32:23.302 PM com.apple.launchd.peruser.501[169]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles

10/26/2013 4:32:23.303 PM com.apple.launchd.peruser.501[169]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self

10/26/2013 4:32:23.307 PM launchctl[171]: com.apple.pluginkit.pkd: Already loaded

10/26/2013 4:32:23.307 PM launchctl[171]: com.apple.sbd: Already loaded

10/26/2013 4:32:23.321 PM distnoted[173]: # distnote server agent  absolute time: 10.670207556   civil time: Sat Oct 26 16:32:23 2013   pid: 173 uid: 501  root: no

10/26/2013 4:32:23.579 PM WindowServer[95]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.

10/26/2013 4:32:23.748 PM sharingd[190]: Starting Up...

10/26/2013 4:32:23.821 PM SystemUIServer[180]: Cannot find executable for CFBundle 0x7f9308c30100 (not loaded)

10/26/2013 4:32:23.976 PM SystemUIServer[180]: Cannot find executable for CFBundle 0x7f9308c3f240 (not loaded)

10/26/2013 4:32:24.002 PM SystemUIServer[180]: Cannot find executable for CFBundle 0x7f9308e409d0 (not loaded)

10/26/2013 4:32:24.159 PM com.apple.launchd.peruser.501[169]: (com.logmein.LMILaunchAgentFixer[218]) Exited with code: 2

10/26/2013 4:32:24.161 PM com.apple.launchd.peruser.501[169]: (com.displaylink.useragent[221]) Job specified non-existent working directory: /System/Library/Extensions/DisplayLinkDriver.kext/DisplayLinkAgent

10/26/2013 4:32:24.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=223[GoogleSoftwareUp] final status 0x0, allow (remove VALID)ing page

10/26/2013 4:32:24.180 PM WindowServer[95]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.

10/26/2013 4:32:24.180 PM com.apple.launchd.peruser.501[169]: (com.displaylink.useragent[221]) Exited with code: 2

10/26/2013 4:32:24.180 PM com.apple.launchd.peruser.501[169]: (com.displaylink.useragent) Throttling respawn: Will start in 5 seconds

10/26/2013 4:32:24.251 PM WindowServer[95]: Received display connect changed for display 0x4272dc0

10/26/2013 4:32:24.261 PM WindowServer[95]: Found 14 modes for display 0x04272dc0 [11, 3]

10/26/2013 4:32:24.284 PM WindowServer[95]: CGXMuxAcknowledge: Posting glitchless acknowledge

10/26/2013 4:32:24.380 PM com.apple.launchd.peruser.501[169]: (com.apple.CSConfigDotMacCert-deurich@me.com-SharedServices[224]) Exited with code: 2

10/26/2013 4:32:24.388 PM WindowServer[95]: Received display connect changed for display 0x4272dc0

10/26/2013 4:32:24.388 PM WindowServer[95]: Found 1 modes for display 0x04272dc0 [1, 0]

10/26/2013 4:32:24.389 PM WindowServer[95]: Received display connect changed for display 0x3f003d

10/26/2013 4:32:24.390 PM WindowServer[95]: Found 1 modes for display 0x003f003d [1, 0]

10/26/2013 4:32:24.394 PM apsd[81]: Unexpected connection from logged out uid 501

10/26/2013 4:32:24.405 PM com.apple.SecurityServer[15]: Session 100006 created

10/26/2013 4:32:24.532 PM 1PasswordAgent[222]: Starting 1PasswordAgent 3.8.21 #32009 built Apr 24 2013 16:09:31

10/26/2013 4:32:24.533 PM 1PasswordAgent[222]: Trying to load Localizable.strings [English] from the main bundle

10/26/2013 4:32:24.536 PM 1PasswordAgent[222]: Cannot find English version, using English localization for Localizable.strings

10/26/2013 4:32:24.579 PM accountsd[238]: assertion failed: 13A603: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25

10/26/2013 4:32:24.910 PM configd[18]: network changed: DNS* Proxy

10/26/2013 4:32:24.910 PM UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Gandalf_EXT' making interface primary (protected network)

10/26/2013 4:32:24.912 PM UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating

10/26/2013 4:32:24.913 PM UserEventAgent[11]: Captive: en1: Probing 'Gandalf_EXT'

10/26/2013 4:32:24.921 PM configd[18]: network changed: v4(en1!:192.168.1.70) DNS+ Proxy+ SMB

10/26/2013 4:32:24.997 PM UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated

10/26/2013 4:32:26.176 PM ntpd[43]: proto: precision = 1.000 usec

10/26/2013 4:32:26.606 PM Alfred 2[229]: [TIMER] 0.253273 seconds to initialise Alfred

10/26/2013 4:32:26.886 PM WindowServer[95]: Display 0x04272dc0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)

10/26/2013 4:32:26.947 PM Google Drive[237]: PyObjCPointer created: at 0xa11b2418 of type {__CFBoolean=}

10/26/2013 4:32:26.948 PM Google Drive[237]: PyObjCPointer created: at 0xa11b2410 of type {__CFBoolean=}

10/26/2013 4:32:26.950 PM Google Drive[237]: PyObjCPointer created: at 0xa11b2420 of type {__CFNumber=}

10/26/2013 4:32:26.952 PM Google Drive[237]: PyObjCPointer created: at 0xa11b2430 of type {__CFNumber=}

10/26/2013 4:32:26.952 PM Google Drive[237]: PyObjCPointer created: at 0xa11b2440 of type {__CFNumber=}

10/26/2013 4:32:27.213 PM Plex Media Server[232]: Unknown class 'NATMappingController', using 'NSObject' instead. Encountered in Interface Builder file at path /Applications/Plex Media Server.app/Contents/Resources/English.lproj/PMSStatusItem.nib.

10/26/2013 4:32:27.274 PM WindowServer[95]: Display 0x04272dc0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)

10/26/2013 4:32:27.345 PM xpcproxy[261]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2

10/26/2013 4:32:27.427 PM com.apple.IconServicesAgent[258]: IconServicesAgent launched.

10/26/2013 4:32:27.439 PM com.apple.SecurityServer[15]: Session 100008 created

10/26/2013 4:32:27.572 PM xpcproxy[263]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2

10/26/2013 4:32:27.885 PM WindowServer[95]: Display 0x04272dc0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)

10/26/2013 4:32:28.059 PM authexec[269]: executing /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/uid

10/26/2013 4:32:28.059 PM WiFiKeychainProxy[198]: [NO client logger] WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...

10/26/2013 4:32:28.060 PM WiFiKeychainProxy[198]: [NO client logger] WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy

10/26/2013 4:32:28.286 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.

10/26/2013 4:32:28.286 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.

10/26/2013 4:32:28.286 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.

10/26/2013 4:32:28.286 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.

10/26/2013 4:32:28.286 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.

10/26/2013 4:32:28.286 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.

10/26/2013 4:32:28.287 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.

10/26/2013 4:32:28.287 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.

10/26/2013 4:32:28.287 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.

10/26/2013 4:32:28.287 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.

10/26/2013 4:32:28.287 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.

10/26/2013 4:32:28.287 PM com.apple.audio.DriverHelper[274]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.

10/26/2013 4:32:28.323 PM com.apple.audio.DriverHelper[274]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.

10/26/2013 4:32:28.323 PM com.apple.audio.DriverHelper[274]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.

10/26/2013 4:32:28.323 PM com.apple.audio.DriverHelper[274]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.

10/26/2013 4:32:28.434 PM coreaudiod[182]: 2013-10-26 04:32:28.434022 PM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM,  44100 Hz, 16-bit, Stereo

10/26/2013 4:32:28.487 PM UserEventAgent[172]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin

10/26/2013 4:32:28.819 PM com.apple.SecurityServer[15]: Session 100013 created

10/26/2013 4:32:29.037 PM PhotoStreamAgent[197]: ApplePushService: APSConnection being used without a delegate queue

10/26/2013 4:32:29.122 PM 1PasswordAgent[222]: reloadAllObjects

10/26/2013 4:32:29.435 PM imagent[207]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)

10/26/2013 4:32:29.435 PM imagent[207]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)

10/26/2013 4:32:29.673 PM com.apple.NotesMigratorService[287]: Joined Aqua audit session

10/26/2013 4:32:29.756 PM SystemUIServer[180]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.

10/26/2013 4:32:29.756 PM SystemUIServer[180]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.

10/26/2013 4:32:29.781 PM secd[266]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)

10/26/2013 4:32:29.782 PM secd[266]:  securityd_xpc_dictionary_handler WiFiKeychainProx[198] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)

10/26/2013 4:32:29.862 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 1

10/26/2013 4:32:29.866 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 2

10/26/2013 4:32:29.871 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 3

10/26/2013 4:32:29.876 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 4

10/26/2013 4:32:29.880 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 6

10/26/2013 4:32:29.885 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 7

10/26/2013 4:32:29.891 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 8

10/26/2013 4:32:29.895 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 9

10/26/2013 4:32:29.899 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 10

10/26/2013 4:32:29.905 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 11

10/26/2013 4:32:29.911 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 12

10/26/2013 4:32:29.915 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 13

10/26/2013 4:32:29.920 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 14

10/26/2013 4:32:29.924 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 15

10/26/2013 4:32:29.928 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 16

10/26/2013 4:32:29.932 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 17

10/26/2013 4:32:29.937 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 18

10/26/2013 4:32:29.942 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 19

10/26/2013 4:32:29.946 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 20

10/26/2013 4:32:29.951 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 21

10/26/2013 4:32:29.957 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 22

10/26/2013 4:32:29.963 PM com.apple.time[172]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).

10/26/2013 4:32:29.964 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 23

10/26/2013 4:32:29.970 PM mDNSResponder[62]: ERROR: handle_resolve_request bad interfaceIndex 24

10/26/2013 4:32:30.019 PM iTunes[235]: TuneUp Plugin main received 'tini' from 10.9

10/26/2013 4:32:30.072 PM M4PConverter[291]: Load M4PConverter virtual CD Burner

10/26/2013 4:32:30.126 PM com.apple.kextd[12]: kext com.AhaMediaSoft.driver.M4PToMP3CDBurner  200009000 is in exception list, allowing to load

10/26/2013 4:32:30.139 PM com.apple.kextd[12]: Can't load /System/Library/StartupItems/CDBurnerService/CDBurner.kext - no code for running kernel's architecture.

10/26/2013 4:32:30.144 PM SystemStarter[48]: m4pTomp3 CD Burner (132) did not complete successfully

10/26/2013 4:32:30.145 PM SystemStarter[48]: The following StartupItems failed to start properly:

10/26/2013 4:32:30.145 PM SystemStarter[48]: /System/Library/StartupItems/CDBurnerService

10/26/2013 4:32:30.145 PM SystemStarter[48]:  - execution of Startup script failed

10/26/2013 4:32:30.302 PM com.apple.launchd.peruser.501[169]: (com.displaylink.useragent[293]) Job specified non-existent working directory: /System/Library/Extensions/DisplayLinkDriver.kext/DisplayLinkAgent

10/26/2013 4:32:30.302 PM com.apple.launchd.peruser.501[169]: (com.displaylink.useragent[293]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory

10/26/2013 4:32:30.302 PM com.apple.launchd.peruser.501[169]: (com.displaylink.useragent[293]) Job failed to exec(3) for weird reason: 2

10/26/2013 4:32:30.538 PM com.apple.time[172]:

@deurich you may want to see this discussion (it may be relevant):


https://github.com/iBaa/PlexConnect/pull/171

I created a new app with some fixes that matches Mavericks and can't replace the icon .. I downloaded the picture a few posts up and changes extension to .icns .. And it just showing new the preview photo with .icns on it .. From the get info it doesn't changes too

Icon guide moved to here:

http://forums.plexapp.com/index.php/topic/84307-launchctl-and-applescript-methods-for-plexconnect-on-mavericks-osx/

To change the icon of any app first select get info on the app you want to change to a new icon. Open the icon file as a .png in safari. Drag and drop from safari the desired picture(.png) onto the icon in get info you opened previously. Drag it to the same place it says test.html as the example below illustrates. You actually could drag and drop the icon from the post above if you opened this forum in safari to your app. This is extremely easy to do. Do not change the extension to .icns.

If for some reason you cant get it to work, download and open my plexconnect app posted above in automator and change the applescript code to whatever you want, save it in automator and you should be able to figure out the rest.

Awesome. Thanks

@deurich you may want to see this discussion (it may be relevant):

https://github.com/iBaa/PlexConnect/pull/171

Thank you! That thread worked by adding in the delay as suggested in the thread. Cheers.