Multiple desktops and mail

The multiple desktops in Lion (replacing Spaces) - how do I keep Mail from coming up in every Desktop?  I'd like to keep all of my "communication" (Skype, Mail, Twitter, etc) in one Desktop (2 additional monitors if it matters - I dont think it does) , and have things I am working on in another...but Mail comes up regardless of the Desktop I switch to.  I want it to stay in the "communications" desktop.  Any ideas?  Possible?

Navigate to your "Communication" desktop and Right/Control click on a running application in the Dock and select Options > Assign to This Desktop.

Similar Messages

  • Multiple desktops and how do I remove them?

    How do I even end up with multiple desktops and how do I remove them. All gets very confusing!
    Thank you

    Swipe up with 4 fingers, or press F3 (or fn+F3 depending on how you have your keyboard configured)
    At the top of your screen should be all your desktops simply hover your mouse around the top left area of one of them (apart from the first one) and a X will appear which you can click to close it

  • Multiple accounts and Mail 3.5 (Leopard)

    I've been trying to get Mail to get and send e-mail from multiple accounts using a single ISP (in this case, my Verizon DSL account). My older app, Eudora Pro, can easily do this (for both POP and IMAP), as it has a system called "Personalities," where you can setup a main personality (i.e., your primary ISP account), yet allow other personalities/accounts to use that ISP for the outgoing mail server. It seems that in Mail though, while getting incoming mail from multiple servers isn't the problem, sending mail from multiple accounts through one outgoing server (which requires what Eudora calls "relay SMTP authorization") is problematic. I've set up multiple accounts in Mail and can get incoming mail from them, but can't seem to send outgoing mail except from my main ISP account.
    Any suggestions?

    I have the same problem - My kids each have their own email account within their own user profile, and while they can receive mail, they cannot send it. Sending from my (admin) account is fine, and their outbound accounts are set up identical to mine. I love having separate accounts because I can control how much time each of my kids get (6 of them!)and I get to supervise content on the web but this issue and itunes does not allow them to play back any DRM purchased itunes - acts like they are on a separate computer, not a separate user on the same machine - all itunes are in the shared folder...

  • Multiple instances and mail config

    Maybe I dont understand the right concept of multiple
    instances but what I did was the following:
    Setup up an instance for each domain I have running as a
    VHost on apache.
    What I was trying to accomplish is the failover of any one
    domain and also to use separate mail settings for each domain.
    But this is where I seem to have misunderstood the concept of
    multiple instances, is it not possible to use a different smtp
    server for each domain? When my forms for each domain generates an
    email I want the email to originate from that domain not the main
    one setup in CF...
    Thanks

    Your on the right track.
    Set up say 4 websites (virtual hosts) eg www.mydomain1.com,
    www.mydomain2.com etc
    Set up 4 cf instances if you have 4 domains, maybe call them
    mydomain1, mydomain2 etc
    Using the Web Server configuration tool, config the cf
    instance mydomain1 to virtual host mydomain1, cf instance mydomain2
    to VH mydomain2 etc
    The website should now be working using their own Cf
    instances.
    Go into the CF Admin, scroll to the bottom of the left menu
    and you should see Instance Manager
    Clicking on this should either reveal the 4 cf instances or
    you may have to add them (should be a button)
    Once you see all 4, you should be able to click on the admin
    for each individual instance and change the smtp server as
    appropriate.
    This won't give you failover though, if a CF instance goes
    down, that site is gone. Clustering is the way to give failover and
    you can achieve this fairly easily.
    Expanding on the above example, you would create 8 CF
    instances eg mydomain1-1 mydomain1-2, mydomain2-1 mydomain2-2.
    Create 4 clusters eg mydomain1cluster, mydomain2cluster etc
    In the CF Administrator Add mydomain1-1, mydomain1-2
    instances to mydomain1cluster etc
    Using the Web Server configuration tool, config the cluster
    mydomain1cluster to virtual host mydomain1 etc
    each domain should now be using 2 cf instances, you will be
    able to down on of those instances the the site will continue
    working.
    Back in the instance manager under CF Admin, you should now
    have 8 instances - config mydomain1-1, mydomain1-2 to the
    appropriate smtp server etc
    The above is for CF MX 6 onwards too, not sure about previous
    versions.
    I think thats what your after? I've skimmed over some parts
    above in relation to the clustering, but there's a handy doc
    floating around on the web by Herrlich & Ramuschkat that will
    guide you through it.
    BTW, those instances can sit on multiple physical servers for
    hardware redundancy. Depending on how many domains you have and the
    power of your machines, this is a preferred way to go although
    expensive due to multiple CF licences

  • Script to take pictures of desktop and mail results

    Hi,
    I am reposting as posted before finishing and I can not edit the message, > server tels me I am not allowed to edit.
    I have a headless server. It has a problem I cannot recreate manually.
    It is programmed to do a restart and if this fails to do a forced restart. However when it does the forced restart I would like to know what is happening and why it failed. So I thought if I have it take pictures of the desktop I might see what dialogue boxes are open and hence find what programme is hanging and stopping the restart.
    This is what I found from dev_sleidy (http://discussions.apple.com/thread.jspa?messageID=6670993&#6670993):
    set dFolder to "~/Desktop/screencapture/"
    do shell script ("mkdir -p " & dFolder)
    repeat 2 times -- Repeat 2 times.
    set tTime to do shell script "date +%H%M%S"
    do shell script ("screencapture " & dFolder & tTime & ".png") -- Capture screen.
    delay 30 -- Wait for 30 seconds.
    end repeat
    So far so good it works.
    Now I want this file to be send per email to me, for which it first needs to be compressed, unless I send all the individual pictures which would also be fine as well.
    How would I do this using mail?
    I have broken my head over the script (I am not very good) to no avail. Any help out there?

    01. Code with '.zip' file attached to each e-Mail message.
    -- Code starts here --
    property tAddress : "[email protected]" -- e-Mail address.
    set tFolder to ((path to desktop folder from user domain) as string) & "screencapture" & ":" -- Screen capture folders' path.
    set dFolder to quoted form of (POSIX path of tFolder) -- Screen capture folders' path, in UNIX form.
    repeat -- Infinite loop.
    do shell script ("mkdir -p " & dFolder) -- Create 'screencapture' folder.
    set tTime to do shell script "date +%H%M%S" -- Obtain current time.
    do shell script ("screencapture " & dFolder & tTime & ".png") -- Capture screen.
    do shell script "zip -r -j " & (dFolder & tTime & ".zip") & " " & (dFolder & tTime & ".png") -- 'zip' the '.png' file.
    tell application "Finder" to set tAttachments to files of folder tFolder whose name contains ".zip" -- Obtain list of all '.zip' files.
    if ((count tAttachments) > 0) then -- If list of '.zip' files exist, continue.
    delay 2
    tell application "Mail"
    activate
    set nMessage to make new outgoing message with properties {visible:false, subject:tTime, content:"" & return & return}
    tell nMessage
    make new to recipient at end of to recipients with properties {address:tAddress}
    tell content
    repeat with i in tAttachments -- Cycle through '.zip' files, attaching each to e-Mail message.
    make new attachment with properties {file name:((i as string) as alias)} at after the last paragraph
    end repeat
    end tell
    send -- Send the e-Mail message.
    end tell
    end tell
    delay 3
    do shell script ("rm -rf " & dFolder) -- Delete 'screencapture' folder.
    end if
    delay (60 * 10) -- Delay for 30 minutes.
    end repeat
    -- Code ends here --
    02. Code with '.png' file attached to each e-Mail message.
    -- Code starts here --
    property tAddress : "[email protected]" -- e-Mail address.
    set tFolder to ((path to desktop folder from user domain) as string) & "screencapture" & ":" -- Screen capture folders' path.
    set dFolder to quoted form of (POSIX path of tFolder) -- Screen capture folders' path, in UNIX form.
    repeat -- Infinite loop.
    do shell script ("mkdir -p " & dFolder) -- Create 'screencapture' folder.
    set tTime to do shell script "date +%H%M%S" -- Obtain current time.
    do shell script ("screencapture " & dFolder & tTime & ".png") -- Capture screen.
    tell application "Finder" to set tAttachments to files of folder tFolder whose name contains ".png" -- Obtain list of all '.png' files.
    if ((count tAttachments) > 0) then -- If list of '.png' files exist, continue.
    delay 2
    tell application "Mail"
    activate
    set nMessage to make new outgoing message with properties {visible:false, subject:tTime, content:"" & return & return}
    tell nMessage
    make new to recipient at end of to recipients with properties {address:tAddress}
    tell content
    repeat with i in tAttachments -- Cycle through '.png' files, attaching each to e-Mail message.
    make new attachment with properties {file name:((i as string) as alias)} at after the last paragraph
    end repeat
    end tell
    send -- Send the e-Mail message.
    end tell
    end tell
    delay 3
    do shell script ("rm -rf " & dFolder) -- Delete 'screencapture' folder.
    end if
    delay (60 * 10) -- Delay for 30 minutes.
    end repeat
    -- Code ends here --

  • Is there a way to set up multiple displays to show different DeskTops and/or multiple Full-Screen apps independently?

    Hello Apple users/ develpers.....
    I have been thinking about this long and hard and it seems like there should be some way to display separate Full-Screen Apps and/or mulitple Desktops.
    This would be a key feature that would make Lion surprisingly more efficient than any of its predicessors.  However, I have gone into System Preferences>Displays and could find no way to page through and get different desktops to display.  I always could extend the desktop, but why do that when I can simply use multiple Desktops and assign them to specific displays.
    (For example While on the MacBook Pro I could be doing a project in FinalCut while External Display 1 could be displaying iTunes and Display number 2 could be displaying MS Word.  And between each I can switch between each app without changing the monitor display.)
    I could also seeing this being extremely helpful in DJ and/or PowerPoint presentations.  In a PowerPoint presentation I could use the projector/display to show the individual Slides, while on the computer/laptop I could control other materials.
    Or in a DJ situation, I could be controlling iTunes from the computer, displaying a set of animations that I created in Flash/ToonBoom or another animation program, while still being able to work off of an independent display to do my homework or major project.
    The whole purpose of multiple displays would be to have multiple access to each of those.  And so if there's another APP I need to control them, or if there is a setup command I don't know about, I'd like to know right away.
    Also, if Apple hasn't really implimented this (and their OS is designed to have these features) then I guess this'd be my first recomendation to them as something that they need to fix.  This alone could be the key to crippling PC.  Don't let Windows 8 have a back door!

    Not available, why not suggest it here.

  • Multiple Desktop Windows suddenly not available how do I fix this?

    I changed one preference in MIssion Control System Preference - - assigning Dashboard to F5. I then noticed that when I open mission control it shows only Dashboard and 1 application desktop. Also the ways of accessing desktops have been limited to control up arrow and control down arrow. I used to be able to assign control 1, control 2, etc. or control left arrow control right arrow. How do I regain multiple desktops and more ways of accessing them? I'd be most appreciative of any insight or help. Thanks.

    Try a restart.
    Do a backup, using either Time Machine or a cloning program, to ensure files/data can be recovered. Two backups are better than one.
    Try setting up another admin user account to see if the same problem continues. If Back-to-My Mac is selected in System Preferences, the Guest account will not work. The intent is to see if it is specific to one account or a system wide problem. This account can be deleted later.
    Isolating an issue by using another user account
    If the problem is still there, try booting into the Safe Mode using your normal account.  Disconnect all peripherals except those needed for the test. Shut down the computer and then power it back up after waiting 10 seconds. Immediately after hearing the startup chime, hold down the shift key and continue to hold it until the gray Apple icon and a progress bar appear. The boot up is significantly slower than normal. This will reset some caches, forces a directory check, and disables all startup and login items, among other things. When you reboot normally, the initial reboot may be slower than normal. If the system operates normally, there may be 3rd party applications which are causing a problem. Try deleting/disabling the third party applications after a restart by using the application un-installer. For each disable/delete, you will need to restart if you don't do them all at once.
    Safe Mode

  • Upload PDF and Mail that

    Hi all ,
    My requirement is to upload a PDF file from desktop and mail that to some address ... how this can be achieved ...
    Thanks in advance ,
    Ganesh

    use GUI_UPLOAD and upload the pdf to internal table and then use below f.m to covert it to 255 character
    CALL FUNCTION 'QCE1_CONVERT'
            TABLES
              t_source_tab         = i_tline
              t_target_tab         = so_ali[]
            EXCEPTIONS
              convert_not_possible = 1
              OTHERS               = 2.
    then use below f.m to send mail..
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
          document_data = doc_chng
          put_in_outbox = 'X'
          commit_work = 'X'
          TABLES
          packing_list = objpack
          contents_txt = objtxt[]
          contents_bin = so_ali[]
    *contents_hex = so_ali[]
          receivers = reclist[]
          EXCEPTIONS
          too_many_receivers = 1
          document_not_sent = 2
          document_type_not_exist = 3
          operation_no_authorization = 4
          parameter_error = 5
          x_error = 6
          enqueue_error = 7
          OTHERS = 8.
          IF sy-subrc = 0.
            PERFORM mail.
            MESSAGE 'Mail sent successfully' TYPE 'S'.
    *SUBMIT RSCONN01 WITH MODE = MODE.
          ENDIF.

  • Hey Mavericks, where did my multiple desktops go?!?

    In Mountain Lion I was using a second monitor connected to MBP, and would have multiple desktops open and could swipe through all of the desktops with left & right gestures. It worked great. Now I upgrade to Mavericks and I'm no longer able to do this???
    Now in Mavericks, the second display is a static display, while the MBP is the only display that's able to swipe between multiple desktops.
    Is this the way it works now, why?? Please bring back multiple desktops.
    Thanks.

    You can setup as many desktops/spaces as you like and if you are using multiple displays, they can have their own separate desktops too.There are a couple of ways to set them up, depending how you work.
    Many of Apple's apps and many third party apps have the option of Full Screen support. To use this, it is the icon in the top right of the app window of two diagonal arrows. When using that, the app automatically make its own desktop. No other app that ca share it, and nothing hides behind that app.
    This implemtation is Ok, but I tend not to use it on a large display, as I don't need one app taking up my full 24" display. I do tend to use it on my 11" MacBook Air where display real estate is much more necessary.
    Otherwise, you can create multiple desktops AND assign particular apps to those desktops, so they have their own desktop space. To initally create a new desktop, go into Mission Control, move the mouse cursor to near the top right corner and a '+' will appear (or just drag an app window there) and tap on the '+' and new desktop is created.
    You an drag app windows to desktops within Mission Control. They should launch there from then on, but I find that function buggy in Mavericks.
    If you assign an app to a desktop using the Dock, Control-click the app icon and select Options > Assign to Desktop (of your choice) then that app will always open on that desktop.
    Going between desktops is easy, go to Mission control and click on the desktop at the top, or gesture on a trackpad using a side swipe with the number of fingers asigned in System Preferences > Trackpad, or Control-Arrow keys also works, your choice.
    A

  • PLEASE HELP ... My iMac desktop and Mac Air laptop are not syncing mail folders ???

    I am running mac mail with icloud on both my desktop and laptop.  They are both running Mac OX Lion 10.8.2 and originally when I set them the email folders created unders icloud were syncing.  Lately, if I add an email folder in icloud on my desktop I do not see the same on my laptop and if I transfer an email from the inbox on my desktop into an icloud folder, I am not seeing the same occuring on my laptop.  Hence, my laptop has over 900 emails in the inbox and I don't want to have to manually transfer all of them into the appropriate folders.
    Any idea what I am doing wrong or what happened?

    Jason,
    1. iCloud is checked and set up correctly on both computers with respect to their preference panels and both computers are logged in with the same iCloud account.
    2. I have forced the sync on both computers multiple times ... nothing changes.
    3. When viewed online at iCloud.com, the folders are not the same.  The recently added folders are not showing up on within iCloud.  The same problem as the laptop.  Only the desktop retains the correct folders once added.
    Not sure what to do now ...

  • We have an itunes account on our desktop and my kids have it on their ipod and iphone. I went in and changed our user name from my old e-mail address which is no longer accessible to my new one and now either of my kids can access the itunes store..

    We have an itunes account on our desktop and both my kids have it on iphone and ipod. I went in and changed out user name from an old e-mail address which is no longer accessible to my one I use now... When the kids try to sign onto the itunes store it tells them they have the wrong user name..
    Can this be fixed??

    Did you change the email address or create a new Apple ID?
    If the email address associated with the account was merely changed, sign out of the Apple ID on the devices and sign in using the new credentials.

  • Webex and multiple desktops

    I was wondering if anyone knows if there is a way to set your Macbook so that when you use Webex and share your desktop you can broadcast any number of the multiple desktops on the Mac. Yesterday I found myself needing to share my desktop on a Webex. Everything that was displayed on my main screen, which is where the webex application was running from, displayed correctly. But when I switched to another desktop on the Mac (to show something in Parallels) everyone said the broadcast went black. Is this just how it is, that webex can only transmit from one desktop? Or do I have something configured incorrectly?
    Thanks in advance.

    I have the same problem and have not been able to find a solution.  Even trying to move the webex to a 2nd montitor connected to the Mac doesn't work. You have to be on the MacBook Pro Laptop Display and Desktop 1 only. 
    Would love to find an update to this.

  • Multiple issues with Mavericks update and Mail

    I have a MacBook Pro mid 2009 2,53 GHz 13-inch. It has 4GB of RAM and a Hitachi 500GB 5400 rpm disk with about 200GB of free space. After working on 10.6.8 for a long time I have upgraded to 10.9.2. I formatted the internal disk, made a clean install of the new system and rebuilt from a Time Machine backup I had made before. The system has slowed down to snail speed (even the simplest actions like opening a new window in the Finder take at times 10 to 15 seconds with the spinning beach ball appearing. Also (and maybe even more serious) my emails became completely messed up. First, all headers and mails got mixed up and several mails didn’t appear, after rebuilding the mailboxes about 60% of my emails were completely lost. I would like to recover my mails from Time Machine but it’s impossible to access emails from before the system upgrade. Am I doing something wrong? Is my computer really too old? How can I give a second try at importing all my mails from the old system? This is the crappiest update I have ever had (been working on Apple since 1994).

    1. This procedure is a diagnostic test. It changes nothing, for better or worse, and therefore will not, in itself, solve the problem.
    2. If you don't already have a current backup, back up all data before doing anything else. The backup is necessary on general principle, not because of anything in the test procedure. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    3. Below are instructions to run a UNIX shell script, a type of program. All it does is to collect information about the state of the computer. That information goes nowhere unless you choose to share it. However, you should be cautious about running any kind of program (not just a shell script) at the request of a stranger on a public message board. If you have doubts, search this site for other discussions in which this procedure has been followed without any report of ill effects. If you can't satisfy yourself that the instructions are safe, don't follow them. Ask for other options.
    Here's a summary of what you need to do, if you choose to proceed: Copy a line of text from this web page into the window of another application. Wait for the script to run. It usually takes a few minutes. Then paste the results, which will have been copied automatically, back into a reply on this page. The sequence is: copy, paste, wait, paste again. Details follow.
    4. You may have started the computer in "safe" mode. Preferably, these steps should be taken in “normal” mode. If the system is now in safe mode and works well enough in normal mode to run the test, restart as usual. If you can only test in safe mode, do that.
    5. If you have more than one user, and the one affected by the problem is not an administrator, then please run the test twice: once while logged in as the affected user, and once as an administrator. The results may be different. The user that is created automatically on a new computer when you start it for the first time is an administrator. If you can't log in as an administrator, test as the affected user. Most personal Macs have only one user, and in that case this section doesn’t apply. Don't log in as root.
    6. The script is a single long line, all of which must be selected. You can accomplish this easily by triple-clicking anywhere in the line. The whole line will highlight, though you may not see all of it in the browser window, and you can then copy it. If you try to select the line by dragging across the part you can see, you won't get all of it.
    Triple-click anywhere in the line of text below on this page to select it:
    PATH=/usr/bin:/bin:/usr/sbin:/sbin; clear; Fb='%s\n\t(%s)\n'; Fm='\n%s\n\n%s\n'; Fr='\nRAM details\n%s\n'; Fs='\n%s: %s\n'; Fu='user %s%%, system %s%%'; AC="com.autodesk.AutoCAD  com.google.GoogleDrive"; H='^[[:space:]]*((127\.0\.0\.1|::1|fe80::1%lo0)[[:space:]]+local|(255\.){3}255[[:space:]]*broadcast)host[[:space:]]*$'; NS=networksetup; PB="/usr/libexec/PlistBuddy -c Print"; A () { [[ a -eq 0 ]]; }; M () { find -L "$d" -type f | while read f; do file -b "$f" | egrep -lq XML\|exec && echo $f; done; }; AT () { o=`file -b "$1" | egrep -v '^(A.{16}t$|cann)'`; Ps "${1##*/} format"; }; Pc () { o=`grep -v '^ *#' "$2"`; l=`wc -l <<< "$o"`; [[ l -gt 25 ]] && o=`head -n25 <<< "$o"`$'\n'"[$((l-25)) more line(s)]"; Pm "$1"; AT "$1"; }; Pm () { [[ "$o" ]] && o=`sed -E '/^ *$/d; s/^ */   /;s/[-0-9A-Fa-f]{22,}/UUID/g;s/(ochat)\.[^.]+(\..+)/\1\2/' <<< "$o"` && printf "$Fm" "$1" "$o"; }; Pp () { o=`$PB "$2" | awk -F'= ' \/$3'/{print $2}'`; Pm "$1"; }; Ps () { o=`echo $o`; [[ ! "$o" =~ ^0?$ ]] && printf "$Fs" "$1" "$o"; }; R () { o=; [[ r -eq 0 ]]; }; SP () { system_profiler SP${1}DataType; }; id -G | grep -qw 80; a=$?; A && sudo true; r=$?; t=`date +%s`; clear; { A || echo $'No admin access\n'; A && ! R && echo $'No root access\n'; SP Software | sed -n 's/^ *//;5p;6p;8p'; h=(`SP Hardware | awk '/ Id/{print $3}; /Mem/{print $2}'`); o=$h; Ps "Model"; o=$((h[1]<4?h[1]:0)); Ps "Total RAM (GB)"; o=`SP Memory | sed '1,5d;/[my].*:/d'`; [[ "$o" =~ s:\ [^O]|x([^08]|0[^2]|8[^0]) ]] && printf "$Fr" "$o"; o=`SP Diagnostics | sed '5,6!d'`; [[ "$o" =~ Pass ]] || Pm "POST"; p=`SP Power`; o=`awk '/Cy/{print $NF}' <<< "$p"`; o=$((o>=300?o:0)); Ps "Battery cycles"; o=`sed -n '/Cond.*: [^N]/{s/^.*://p;}' <<< "$p"`; Ps "Battery condition"; for b in Thunderbolt USB; do o=`SP $b | sed -En '1d;/:$/{s/ *:$//;x;s/\n//p;};/^ *V.* [0N].* /{s/ 0x.... //;s/[()]//g;s/(.*: )(.*)/ \(\2\)/;H;};/Apple|Genesy|Intel|SMSC/{s/.//g;h;}'`; Pm $b; done; o=`pmset -g therm | sed 's/^.*C/C/'`; [[ "$o" =~ No\ th|pms ]] && o=; Pm "Thermal conditions"; o=`pmset -g sysload | grep -v :`; [[ "$o" =~ =\ [^GO] ]] || o=; Pm "System load advisory"; o=`nvram boot-args | awk '{$1=""; print}'`; Ps "boot-args"; a=(/ ""); A=(System User); for i in 0 1; do o=`cd ${a[$i]}L*/Lo*/Diag* || continue; for f in *.{cr,h,pa,s}*; do [[ -f "$f" ]] || continue; d=$(stat -f%Sc -t%F "$f"); [[ "$f" =~ h$ ]] && grep -lq "^Thread c" "$f" && f="$f *"; echo "$d ${f%%_2*} ${f##*.}"; done | sort | tail`; Pm "${A[$i]} diagnostics"; done; grep -lq '*$' <<< "$o" && printf $'\n\t* Code injection\n'; o=`syslog -F bsd -k Sender kernel -k Message CReq 'caug|GPU |hfs: Ru|last value [1-9]|n Cause: -|NVDA\(|pagin|proc: t|Roamed|rror|ssert|Thrott|timed? ?o|WARN' -k Message Ane 'SMC:' | tail -n25 | awk '/:/{$4=""; $5=""};1'`; Pm "Kernel messages"; o=`df -m / | awk 'NR==2 {print $4}'`; o=$((o<5120?o:0)); Ps "Free space (MiB)"; o=$(($(vm_stat | awk '/eo/{sub("\\.",""); print $2}')/256)); o=$((o>=1024?o:0)); Ps "Pageouts (MiB)"; s=( `sar -u 1 10 | sed '$!d'` ); [[ s[4] -lt 85 ]] && o=`printf "$Fu" ${s[1]} ${s[3]}` || o=; Ps "Total CPU usage" && { s=(`ps acrx -o comm,ruid,%cpu | sed '2!d'`); n=$((${#s[*]}-1)); c="${s[*]}"; o=${s[$n]}%; Ps "CPU usage by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; }; s=(`top -R -l1 -n1 -o prt -stats command,uid,prt | sed '$!d'`); n=$((${#s[*]}-1)); s[$n]=${s[$n]%[+-]}; c="${s[*]}"; o=$((s[$n]>=25000?s[$n]:0)); Ps "Mach ports used by process \"${c% ${s[$((n-1))]}*}\" with UID ${s[$((n-1))]}"; o=`kextstat -kl | grep -v com\\.apple | cut -c53- | cut -d\< -f1`; Pm "Loaded extrinsic kernel extensions"; R && o=`sudo launchctl list | awk 'NR>1 && !/0x|com\.(apple|openssh|vix\.cron)|org\.(amav|apac|calendarse|cups|dove|isc|ntp|openld|post[fg]|x)/{print $3}'`; Pm "Extrinsic daemons"; o=`launchctl list | awk 'NR>1 && !/0x|com\.apple|org\.(x|openbsd)|\.[0-9]+$/{print $3}'`; Pm "Extrinsic agents"; o=`for d in {/,}L*/Lau*; do M; done | egrep -v 'com\.apple\.(CSConfig|server)' | while read f; do ID=$($PB\ :Label "$f") || ID="No job label"; printf "$Fb" "$f" "$ID"; done`; Pm "launchd items"; o=`for d in /{S*/,}L*/StartupItems; do M; done`; Pm "Startup items"; sys=`pkgutil --regexp --only-files --files com.apple.pkg.* | sort | uniq | sed 's:^:/:'`; b=`sed -E '/^.+Lib.+\/Contents\/Info.plist$/!d;s/\/Info.plist$//;/Contents\/./d' <<< "$sys"`; l=`egrep '^/usr/lib/.+dylib$' <<< "$sys"`; [[ "$b" && "$l" ]] && { o=`find -L /S*/L*/{C*/Sec*A,E}* {/,}L*/{A*d,Compon,Ex,In,iTu,Keyb,Mail/B,P*P,Qu*T,Scripti,Sec,Servi,Spo}* -type d -name Contents -prune | grep -Fv "$b" | while read d; do test -f "$d/Info.plist" || continue; ID=$($PB\ :CFBundleIdentifier "$_") || ID="No bundle ID"; printf "$Fb" "${d%/Contents}" "$ID"; done`; Pm "Extrinsic loadable bundles"; o=`find /usr/lib -type f -name *.dylib | grep -Fv "$l"`; Pm "Extrinsic shared libraries"; :; } || echo $'\nReceipts missing'; o=`for e in INSERT_LIBRARIES LIBRARY_PATH; do launchctl getenv DYLD_$e; done`; Pm "Environment"; o=`find -L {,/u*/lo*}/e*/periodic -type f -mtime -10d`; Pm "Modified periodic scripts"; o=`scutil --proxy | grep Prox`; Pm "Proxies"; o=`scutil --dns | awk '/r\[0\] /{if ($NF !~ /^1(0|72\.(1[6-9]|2[0-9]|3[0-1])|92\.168)\./) print $NF; exit}'`; i=`route -n get default | awk '/e:/{print $2}'`; I=`$NS -listnetworkserviceorder | sed -En '/ '$i'\)$/{x;s/^\(.+\) //p;q;};x'`; n=`$NS -getdnsservers "$I" | awk '!/^T/{print "not "}'`; Ps "DNS (${n}from DHCP)"; o=`$NS -getinfo "$I" | awk '/k:/{if ($3 !~ "(255\.){3}0") print $3}'`; Ps "Netmask"; R && o=`sudo profiles -P | grep : | wc -l`; Ps "Profiles"; f=auto_master; [[ `md5 -q /etc/$f` =~ ^b166 ]] || Pc $f /etc/$f; for f in fstab sysctl.conf crontab launchd.conf; do Pc $f /etc/$f; done; f=/etc/hosts; Pc "hosts" <(egrep -v "$H" $f ); AT $f; Pc "User launchd" ~/.launchd*; R && Pc "Root crontab" <(sudo crontab -l); Pc "User crontab" <(crontab -l | sed -E 's:/Users/[^/]+/:/Users/USER/:g'); R && o=`sudo defaults read com.apple.loginwindow LoginHook`; Pm "Login hook"; LD="$(`find /S*/*/F* -type f -name lsregister | head -n1` -dump)"; o=`for ID in $AC; do [[ "$LD" =~ $ID ]] && echo $ID; done`; Pm "Application check"; Pp "Global login items" /L*/P*/loginw* Path; Pp "User login items" L*/P*/*loginit* Name; Pp "Safari extensions" L*/Saf*/*/E*.plist Bundle | sed -E 's/(\..*$|-[1-9])//g'; o=`find ~ $TMPDIR.. \( -flags +sappnd,schg,uappnd,uchg -o ! -user $UID -o ! -perm -600 \) | wc -l`; Ps "Restricted user files"; cd; o=`SP Fonts | egrep 'id: N|te: Y' | wc -l`; Ps "Font problems"; o=`find L*/{Con,Pref}* -type f ! -size 0 -name *.plist | while read f; do plutil -s "$f" >&- || echo $f; done`; Pm "Bad plists"; d=(Desktop L*/Keyc*); n=(20 7); for i in 0 1; do o=`find "${d[$i]}" -type f -maxdepth 1 | wc -l`; o=$((o<=n[$i]?0:o)); Ps "${d[$i]##*/} file count"; done; o=; [[ UID -eq 0 ]] && o=root; Ps "UID"; o=$((`date +%s`-t)); Ps "Elapsed time (s)"; } 2>/dev/null | pbcopy; exit 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    7. Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Click anywhere in the Terminal window and paste (command-V). The text you pasted should vanish immediately. If it doesn't, press the return key.
    8. If you see an error message in the Terminal window such as "syntax error," enter
    exec bash
    and press return. Then paste the script again.
    9. If you're logged in as an administrator, you'll be prompted for your login password. Nothing will be displayed when you type it. You will not see the usual dots in place of typed characters. Make sure caps lock is off. Type carefully and then press return. You may get a one-time warning to be careful. If you make three failed attempts to enter the password, the test will run anyway, but it will produce less information. In most cases, the difference is not important. If you don't know the password, or if you prefer not to enter it, press the key combination control-C or just press return three times at the password prompt. Again, the script will still run.
    If you're not logged in as an administrator, you won't be prompted for a password. The test will still run. It just won't do anything that requires administrator privileges.
    10. The test may take a few minutes to run, depending on how many files you have and the speed of the computer. A computer that's abnormally slow may take longer to run the test. While it's running, there will be nothing in the Terminal window and no indication of progress. Wait for the line
    [Process completed]
    to appear. If you don't see it within half an hour or so, the test probably won't complete in a reasonable time. In that case, close the Terminal window and report the results. No harm will be done.
    11. When the test is complete, quit Terminal. The results will have been copied to the Clipboard automatically. They are not shown in the Terminal window. Please don't copy anything from there. All you have to do is start a reply to this comment and then paste by pressing command-V again.
    If any private information, such as your name or email address, appears in the results, anonymize it before posting. Usually that won't be necessary.
    12. When you post the results, you might see the message, "You have included content in your post that is not permitted." It means that the forum software has misidentified something in the post as a violation of the rules. If that happens, please post the test results on Pastebin, then post a link here to the page you created.
    Note: This is a public forum, and others may give you advice based on the results of the test. They speak only for themselves, and I don't necessarily agree with them.
    Copyright © 2014 by Linc Davis. As the sole author of this work, I reserve all rights to it except as provided in the Terms of Use of the Apple Support Communities website ("ASC"). Readers of ASC may copy it for their own personal use. Neither the whole nor any part may be redistributed.

  • I cannot open a .pdf in an incoming mail (Outlook 2010) with Acrobat Pro XI.  It will only allow "preview".  I have to  copy and paste the .pdf to my desktop and then open it.  What do I do to restore the 2x click in Outlook to open the .pdf?  thank you

    I cannot open a .pdf in an incoming mail (Outlook 2010) with Acrobat Pro XI.  It will only allow "preview".  I have to  copy and paste the .pdf to my desktop and then open it.  What do I do to restore the 2x click in Outlook to open the .pdf?  As of now, I get the following bracket opening on screen when I click on the Acrobat icon for attachment within the email:  Thank you
    Adobe Acrobat has stopped working
    Windows can check online for a solution to the problem.
    -Check online for a solution and close the program
    -Close the program
    Problem signature:
      Problem Event Name:                        APPCRASH
      Application Name:                             Acrobat.exe
      Application Version:                           11.0.7.79
      Application Timestamp:                     536b812b
      Fault Module Name:                          Acrobat.dll
      Fault Module Version:                        11.0.7.79
      Fault Module Timestamp:                  536b80ff
      Exception Code:                                  c0000005
      Exception Offset:                                00cbf281
      OS Version:                                          6.1.7601.2.1.0.256.48
      Locale ID:                                             1033
      Additional Information 1:                  0a9e
      Additional Information 2:                  0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:                  0a9e
      Additional Information 4:                  0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt

    Hi Gary,
    I have seen this issue occur with users who have this registry setting missing or have improper permissions.
    When you double click the attachment to launch the pdf it is saved and opened from the temporary folder unless saved specifically to a location.
    If you dont have the below mentioned registry key or improper permissions then attachments fail to open.
    Please  heck if the following reg key exists:
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Security
    or
    HKEY_CURRENT_USER\Software\Policies\Microsoft\Office\14.0\Outlook\Security
    Value Name: OutlookSecureTempFolder
    If the value exists, and if the value contains a valid path, Outlook 2010 uses that location for its temporary files.
    If the registry value does not exist, or if the value points to an invalid location, Outlook 2010, Outlook 2007, or Outlook 2003 creates a new subdirectory under the Temporary Internet Files directory and then puts the temporary file in the new subdirectory. The name of the new subdirectory is unknown and is randomly generated, depending on your version of Outlook.
    Please check the following key:
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Outlook\Security
    Note the location for: OutlookSecureTempFolder key
    Check if the same folder exists in the following location and if not create a corresponding folder in the location on C:\Users\<User account name>\Appdata\Local\Software\Microsoft\Windows\......
    Regards,
    Rave

Maybe you are looking for