My Radio Applet and converted TCL script do work -- but they still get a few errors . .

OK, the end result is good and all the attached radios are shown in the Sho-Run and the interface bandwidths are being changed to reflect the true line rates of the radios:
event manager environment 2400_TX_Rate 243 Mb
event manager environment 2400_RX_Rate 151 Mb
event manager environment 2400_Signal -40 dB
event manager environment 2400_Noise -89 dB
event manager environment 2400_Distance 0 Miles
event manager environment 3500_TX_Rate 151 Mb
event manager environment 3500_RX_Rate 146 Mb
event manager environment 3500_Signal -46 dB
event manager environment 3500_Noise -92 dB
event manager environment 3500_Distance 150 Miles
event manager environment 5800_TX_Rate 261 Mb
event manager environment 5800_RX_Rate 251 Mb
event manager environment 5800_Signal -46 dB
event manager environment 5800_Noise -90 dB
event manager environment 5800_Distance 0 Miles
event manager environment 900_TX_Rate 117 Mb
event manager environment 900_RX_Rate 99 Mb
event manager environment 900_Signal -56 dB
event manager environment 900_Noise -93 dB
event manager environment 900_Distance 0 Miles
interface Vlan2
description 2.4 Ghz Radio
bandwidth 185000
ip address 192.168.2.1 255.255.255.0
delay 1
interface Vlan3
description 3.65Ghz Radio
bandwidth 156000
ip address 192.168.3.1 255.255.255.0
delay 1000000   <------------------------- Because the range reported is too far for this frequency
interface Vlan5
description 5Ghz Radio
bandwidth 246000
ip address 192.168.5.1 255.255.255.0
ip nat inside
ip virtual-reassembly in
delay 1
interface Vlan9
description 900Mhz Radio
bandwidth 108000
ip address 192.168.9.1 255.255.255.0
delay 1
Do I just need to tell it to exit instead of merely letting it complete?
It says that it abnormally ends:
10   98     Actv abort    Tue Dec 3 14:35:37 2013  timer watchdog    applet: Radio-Rate-ReaderTWO
It only takes about 16 seconds to run:
*Dec  3 14:03:37 UTC: fh_set_epc_pid: EEM callback policy Radio-Rate-ReaderTWO has been scheduled to run.
*Dec  3 14:03:37 UTC: %HA_EM-6-LOG: Radio-Rate-ReaderTWO : DEBUG(cli_lib) : : CTL : cli_open called.
*Dec  3 14:03:37 UTC: %HA_EM-6-LOG: Radio-Rate-ReaderTWO : DEBUG(cli_lib) : : IN  : 2901_Rig_1#ssh -l ubnt 192.168.2.11
*Dec  3 14:03:37 UTC: EEM policy Radio-Rate-ReaderTWO has exceeded it's elapsed time limit of 60.0 seconds ???
*Dec  3 14:03:40 UTC: %HA_EM-6-LOG: Radio-Rate-ReaderTWO : DEBUG(cli_lib) : : IN  : ssh -l ubnt 192.168.3.11
*Dec  3 14:03:43 UTC: %HA_EM-6-LOG: Radio-Rate-ReaderTWO : DEBUG(cli_lib) : : IN  : ssh -l ubnt 192.168.5.11
*Dec  3 14:03:53 UTC: %HA_EM-6-LOG: Radio-Rate-ReaderTWO : DEBUG(cli_lib) : : IN  : ssh -l ubnt 192.168.9.11
Here is the Applet.  When I convert to TCL I get the same "Actv abort".
event manager applet Radio-Rate-ReaderTWO
event timer watchdog time 60 maxrun 60
action 200 comment ##################################################
action 201 comment             Start  &   2.4 GHZ RADIO
action 202 comment ##################################################
action 220 comment ~~~SSH to Radio and execute mca-status command
action 231 cli command "enable"
action 232 cli command "ssh -l ubnt 192.168.2.11" pattern "assword:"
action 233 cli command "fly2the*" pattern "#"
action 234 cli command "mca-status" pattern "#"
action 235 comment ~~~Extract the TX & RX rates and the Distance
action 236 regexp "wlanTxRate=([0-9]+)" $_cli_result match txrate
action 237 regexp "wlanRxRate=([0-9]+)" $_cli_result match rxrate
action 238 regexp "distance=([0-9]+)" $_cli_result match distance
action 239 regexp "signal=(-[0-9]+)" $_cli_result match signal
action 240 regexp "noise=(-[0-9]+)" $_cli_result match noise
action 245 comment ~~~Exit the Radio SSH
action 246 cli command "exit" pattern "#"
action 247 add $txrate $rxrate
action 248 set var1 "$_result"
action 249 divide $var1 2
action 250 set line_rate "$_result"
action 251 comment ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
action 252 comment   2.4Ghz Distance/Range Decision
action 253 comment ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
action 254 if $distance gt 3
action 255 set delaynum 1000000
action 256 else
action 257 set delaynum 1
action 258 end
action 261 comment ~~~ Go to Config T and enter commands
action 262 cli command "config t" pattern "#"
action 273 cli command "event manager environment 2400_TX_Rate $txrate Mb" pattern "#"
action 274 cli command "event manager environment 2400_RX_Rate $rxrate Mb" pattern "#"
action 275 cli command "event manager environment 2400_Signal $signal dB" pattern "#"
action 276 cli command "event manager environment 2400_Noise $noise dB" pattern "#"
action 277 cli command "event manager environment 2400_Distance $distance Miles" pattern "#"
action 280 multiply $line_rate 1000
action 281 set line_rate $_result
action 282 cli command "int vlan 2" pattern "#"
action 283 cli command "bandwidth $line_rate" pattern "#"
action 284 cli command "delay $delaynum" pattern "#"
action 285 cli command "exit" pattern "#"
action 286 cli command "exit" pattern "#"
action 295 comment ##################################################
action 296 comment                       3.5 GHZ RADIO
action 298 comment ##################################################
action 301 comment ~~~SSH to Radio and execute mca-status command
action 303 cli command "ssh -l ubnt 192.168.3.11" pattern "assword:"
action 304 cli command "fly2the*" pattern "#"
action 305 cli command "mca-status" pattern "#"
action 306 comment ~~~Extract the TX & RX rates and the Distance
action 307 regexp "wlanTxRate=([0-9]+)" $_cli_result match txrate
action 308 regexp "wlanRxRate=([0-9]+)" $_cli_result match rxrate
action 309 regexp "distance=([0-9]+)" $_cli_result match distance
action 320 regexp "signal=(-[0-9]+)" $_cli_result match signal
action 321 regexp "noise=(-[0-9]+)" $_cli_result match noise
action 326 comment ~~~Exit the Radio SSH
action 327 cli command "exit" pattern "#"
action 328 add $txrate $rxrate
action 329 set var1 "$_result"
action 330 divide $var1 2
action 331 set line_rate "$_result"
action 340 comment ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
action 341 comment   3.5Ghz Distance/Range Decision
action 342 comment ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
action 343 if $distance gt 2
action 344 set delaynum 1000000
action 345 else
action 346 set delaynum 1
action 347 end
action 352 comment ~~~ Go to Config T and enter commands
action 353 cli command "config t" pattern "#"
action 354 cli command "event manager environment 3500_TX_Rate $txrate Mb" pattern "#"
action 355 cli command "event manager environment 3500_RX_Rate $rxrate Mb" pattern "#"
action 356 cli command "event manager environment 3500_Signal $signal dB" pattern "#"
action 357 cli command "event manager environment 3500_Noise $noise dB" pattern "#"
action 358 cli command "event manager environment 3500_Distance $distance Miles" pattern "#"
action 360 multiply $line_rate 1000
action 361 set line_rate $_result
action 369 cli command "int vlan 3" pattern "#"
action 380 cli command "bandwidth $line_rate" pattern "#"
action 381 cli command "delay $delaynum" pattern "#"
action 382 cli command "exit" pattern "#"
action 383 cli command "exit" pattern "#"
action 510 comment ##################################################
action 511 comment                       5.8 GHZ RADIO
action 512 comment ##################################################
action 521 comment ~~~SSH to Radio and execute mca-status command
action 533 cli command "ssh -l ubnt 192.168.5.11" pattern "assword:"
action 534 cli command "fly2the*" pattern "#"
action 535 cli command "mca-status" pattern "#"
action 536 comment ~~~Extract the TX & RX rates and the Distance
action 537 regexp "wlanTxRate=([0-9]+)" $_cli_result match txrate
action 538 regexp "wlanRxRate=([0-9]+)" $_cli_result match rxrate
action 539 regexp "distance=([0-9]+)" $_cli_result match distance
action 550 regexp "signal=(-[0-9]+)" $_cli_result match signal
action 551 regexp "noise=(-[0-9]+)" $_cli_result match noise
action 566 comment ~~~Exit the Radio SSH
action 557 cli command "exit" pattern "#"
action 558 add $txrate $rxrate
action 559 set var1 "$_result"
action 560 divide $var1 2
action 561 set line_rate "$_result"
action 563 comment ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
action 564 comment   5.8 Ghz Distance/Range Decision
action 565 comment ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
action 566 if $distance gt 1
action 567 set delaynum 1000000
action 568 else
action 569 set delaynum 1
action 570 end
action 572 comment ~~~ Go to Config T and enter commands
action 573 cli command "config t" pattern "#"
action 574 cli command "event manager environment 5800_TX_Rate $txrate Mb" pattern "#"
action 575 cli command "event manager environment 5800_RX_Rate $rxrate Mb" pattern "#"
action 576 cli command "event manager environment 5800_Signal $signal dB" pattern "#"
action 577 cli command "event manager environment 5800_Noise $noise dB" pattern "#"
action 578 cli command "event manager environment 5800_Distance $distance Miles" pattern "#"
action 580 multiply $line_rate 1000
action 581 set line_rate $_result
action 589 cli command "int vlan 5" pattern "#"
action 590 cli command "bandwidth $line_rate" pattern "#"
action 591 cli command "delay $delaynum" pattern "#"
action 592 cli command "exit" pattern "#"
action 593 cli command "exit" pattern "#"
action 930 comment ##################################################
action 931 comment                       900 MHZ RADIO
action 932 comment ##################################################
action 941 comment ~~~SSH to Radio and execute mca-status command
action 943 cli command "ssh -l ubnt 192.168.9.11" pattern "assword:"
action 944 cli command "fly2the*" pattern "#"
action 945 cli command "mca-status" pattern "#"
action 946 comment ~~~Extract the TX & RX rates and the Distance
action 947 regexp "wlanTxRate=([0-9]+)" $_cli_result match txrate
action 948 regexp "wlanRxRate=([0-9]+)" $_cli_result match rxrate
action 949 regexp "distance=([0-9]+)" $_cli_result match distance
action 950 regexp "signal=(-[0-9]+)" $_cli_result match signal
action 951 regexp "noise=(-[0-9]+)" $_cli_result match noise
action 955 comment ~~~Exit the Radio SSH
action 956 cli command "exit" pattern "#"
action 957 add $txrate $rxrate
action 958 set var1 "$_result"
action 959 divide $var1 2
action 960 set line_rate "$_result"
action 971 comment ~~~ Go to Config T and enter commands
action 972 cli command "config t" pattern "#"
action 973 cli command "event manager environment 900_TX_Rate $txrate Mb" pattern "#"
action 974 cli command "event manager environment 900_RX_Rate $rxrate Mb" pattern "#"
action 975 cli command "event manager environment 900_Signal $signal dB" pattern "#"
action 976 cli command "event manager environment 900_Noise $noise dB" pattern "#"
action 977 cli command "event manager environment 900_Distance $distance Miles" pattern "#"
action 980 multiply $line_rate 1000
action 981 set line_rate $_result
action 982 cli command "int vlan 9" pattern "#"
action 983 cli command "bandwidth $line_rate" pattern "#"
action 984 cli command "exit" pattern "#"
action 985 comment ######  END  #####  END  ######   END    ########
action 990 cli command "exit" pattern "#"
action 991 cli command "exit" pattern "#"
action 992 cli command "exit"
Do I just need to do a "proper" exit?
Thanks,
Tim

Given the order of the syslogs, I'm guessing that we're looking at multiple instances of the policy running.   Since you're allowing them to run for 60 seconds and scheduling them 60 seconds apart, that's probably the case.  My guess is that some of the SSH sessions are not providing a match to the "assword:" pattern, and thus these policies are hanging awaiting the prompt until they are terminated.  I would check to make sure you don't see some other pattern on various runs of the SSH command.

Similar Messages

  • After an unsuccessful itunes update i now get an "msvcr80.dll file is missing on my computer message.  I tried reinstalling it for the microsoft site and it says it was successful but i still get the error message when i reboot.  Any suggestions?  Thanks

    After an unsuccessful Itunes update I started getting a "msvcr80.dll file is missing from your computer" message.  I downloaded and installed the Microsoft Visual C++ file and it said the reinstallation was successful but I still get the same error message and Itunes won"t install or run.  Any suggestions?  Thanks

    Hey colorado65,
    Follow the steps in this link to resolve the issue:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    When you uninstall, the items you uninstall and the order in which you do so are particularly important:
    Use the Control Panel to uninstall iTunes and related software components in the following order and then restart your computer:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Important: Uninstalling these components in a different order, or only uninstalling some of these components may have unintended affects.
    Let us know if following that article and uninstalling those components in that order helped the situation.
    Welcome to Apple Support Communities!
    All the best,
    Delgadoh

  • I'm trying to make some room on my iMac hard rive, which is almost full after 4 years of movies,music, pictures, etc.  I bought an external hard drive and thought I moved most of the movies and pics to the ext drive, but they still show as taking up space

    I recently got a message saying that my startup disk was almost full.  I tried moving files on to an external drive to make some space, but the files still show as taking up room when I look at my product info storage.  The files appear to have been moved and deleted off of my internal drive.  I copied them from one to the other and then moved the ones on the internal to my trash and then emptied the trash folder.  What else can I do.   When I open iMovie, even though I moved the movies from the iMovie folder, they still load as iMovie thumbnails, which takes forever.  I appreciate any suggestions.  Thanks.

    First of all make sure that you've definitely backed up the movies to your external hard disc.
    In iMovie click on any event you don't want, go to the file menu and select 'move event to trash'. Then do the same for any unwanted projects - 'move project to trash'. Quit out of iMovie and empty the trash.
    Hope that helps!

  • I have windows 7. I keep getting error message"apple application support not found". I have uninstalled and reinstalled i tunes multiple times but unable to get rid of error message. Can anyone offer a solution

    I have windowa 7 operating system. When I install I Tunes, I get an error message "Apple Application Support not found".
    I have uninstalled and reinstalled I Tunes multiple times with same error.
    Can anyone offer a solution?

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Radio button and associated functionality is not working!

    Hi Pros,
    I am facing the following problem:
    1.I have an interactive PDF created in Acrobat 9 Pro.
    2.PDF have few radio buttons, each radio buttons ahave assigned valus(eg: 1,2,3 etc)
    3.I have a text box in which the value of selected radio button is displayed.
    4.PDF is working fine on my machine.
    5.Client is having Internet Explorer version 7.0.5 and Adobe reader:8.2.6
    6.The radio buttons and associated functionality is not working on client's machine.
    7.The text box shows '0' even if we a radio button with value 2 or 1 is selected.
    What will be the problem? How can I fix this issue?
    Please help.

    Thanks alot for helping me on this.
    Thanks to u also ~graffiti

  • HT203180 i converted my videos to mp4 but itunes still refuses to let it work and shows the same window shown above. I transfered all photos and music but i can not transefer my home videos. what should i do?

    i converted my videos to mp4 but itunes still refuses to let it work and shows a winow that says "....... (item) an not be copied to itunes because it can not work on your ipad" although mp4 files are supposed to work on my ipad. i tranfered all music and pictures to itunes but i can't transefer my videos. What should i do?

    Since I am impatient and can't wait for 90 minutes for an answer, I have decided to lose everything on my iPod and try to remember all the songs I had on them. But if anyone can help me prevent this in the future, that woud be great!

  • Since I updated my itunes I can't burn a disc in MP3 format.  I converted the list to MP3 but it still won't burn., Since I updated my itunes I can't burn a disc in MP3 format.  I converted the list to MP3 but it still won't burn.

    Since I updated my itunes I can no longer burn a playlist to disc using MP3 format.  I clicked on converting the songs to mp3 format but they still won't burn to disc.  The computer says it is checking media and then stops.

    same problem. Im using itunes version 10.6.3, I converted wavs burnt from cd, to mp3 using itunes, these were  NOT PURCHASED from itunes, and when I try to burn an mp3 cd using the new mp3 files, they convert to wavs before my eyes every time i create a new playlist of the mp3. The mp3 revert to wav within less than 30 seconds. As if itunes is saying, let me help, I substitute the higher quality 1411 wav files for you. And of course, now they wont burn to mp3, because "they must be converted to mp3 first" before burning.
    But every list of the mp3 version of the files keeps reverting to 1411 wav files?
    WHats going on? Thanks

  • TS2167 I am running OS X 10.8.2 and IWeb 3.0.4 (601) and everytime I try to publish my website I get an unexpected error and it does not publish my changes. My website is pretty simple, mostly made up of iPhoto albums in different categories.

    I am running OS X 10.8.2 and IWeb 3.0.4 (601) and everytime I try to publish my website I get an unexpected error and it does not publish my changes. My website is pretty simple, mostly made up of iPhoto albums in different categories.

    Where are you publishing to?  Can you publish successfully to a folder on your hard drive? Have you read this webpage: Publish iWeb site using FTP. It may have a clue to where the problem is.
    A quick troubleshooting fix is
    Try the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iWeb's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iWeb folder (Snow Leopard and Earlier).
    3 - launch iWeb and try again.
    NOTE:  In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    However, when you delete the preference file you probably will have to use the app described below to select and open your domain file with iWeb:
    In Lion and Mountain Lion the Home/Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or Mountain Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file in your Home/Library/Application Support/iWeb folder that you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • I just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: the application has failed to start because MS

    i just tried to install the 11.4 update (or whichever one is the most recent update as of 1/26/2014) and when it failed i tried to install manually and now whenever i try to use it, i get the following error: "The application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem." Right after i click ok i then get this error: "Itunes was not installed correctly. Please reinstall Itunes. Error 7 (Windows error 126)." I tried to uninstall Itunes and then reinstall the 11.03 version but that didnt work either. I want to know if i copy all of the music in my itunes folder to an external without consolidating can i still transfer all my itunes music from my current windows xp pc to a brand new one and have my current itunes library in my new pc? Basically i just want to know 3 things: What exactly does consolidating the itunes library do? Can i copy, paste, and transfer my itunes library to an external and from there to a new pc? Will i be able to transfer my itunes library without consolidating the files?

    I have found a temporary solution, allowing the previous version of iTunes (v. 11.1.3 (x64) in my case) to be re-installed.  It will allow you to re-establish use of iTunes until the Apple software engineers fix the most recent disasterous upgrade (v. 11.1.4).  Please see and follow the procedure in the following article:http://smallbusiness.chron.com/reverting-previous-version-itunes-32590.html   The previous version works beautifully.

  • Ive deleted contacts from my contacts list but they still pop up when i go to text and type in the name of a current contact. .  How can i delete them off my phones memory for good?

    Ive deleted contacts from my contacts list but they still pop up when i go to text and type in the name of a current contact. .  How can i delete them off my phones memory for good? iPhone 4S

    At the present time, the only way to clear that is to restore the phone as new.  Perhaps a future iOS update will give us the option to clear that cache.

  • My usb that i have been using on my computer for a while suddenly stopped working, but is still glowing and letting me know that it is connected, but not showing up in disk utility

    my usb that i have been using on my computer for a while suddenly stopped working, but is still glowing and letting me know that it is connected, but not showing up in disk utility

    Either the physical drive or the enclosure electronics has failed. The light you are seeing is powered by the USB connection, the power, electricity, all USB ports put out. That doesn't mean the actual physical hard drive or the USB to SATA bus electronics are working properly. If it doesn't show in Disk Utility then it is DEAD.
    Most of the time it is the enclosures electronics that fail. Removing the physical drive from the enclosure and put it in another enclosure or using a SATA to USB adapter, one that has it's own AC power supply, might allow you to get the files off the drive.

  • TS4009 How do I clean up mail in my icloud?  I have already deleted old mail on all devices, and emptied the junk & deleted files, but it still shows that I am at max on my icloud. What do I do to free up space? (photos & apps do not take up that much roo

    How do I clean up mail in my icloud?  I have already deleted old mail (from all my e-mail accounts) on all devices, and emptied the junk & deleted files, but it still shows that I am at max on my icloud. What do I do to free up space? (photos & apps do not take up that much room).  When I go to manage storage on any device & it will display how much room each program or app is using, it still shows that my e-mail is taking up the most room.  Is there a way to actually log on to the icloud server to manage what it stored there?  If so, how do I do it?  Also, on a related subject,  why does my mail not sync accross all devices?   ie. when I delete an email on one device, why do I still see it on all my other devices?  How can I change this?
    I have an iphone5, ipad2, ipod 4th gen, ipod 3rd gen, all running on my same apple id - but I have a PC not a Mac home computer - is this part of the problem?  Looking to upgrade to a Mac sometime this year...
    Thank-you for the help!

    beckyfromoz wrote:
    I do have the Time Capsule and spoke to Apple Care here in Sydney about it yesterday.  They told me my mail is not backed up there unless I create a special folder. I just tried ringing them again but Apple Care is closed today...
    Mail is backed up automatically. If you make backups automatically, open Mail application and then, open the Time Machine app (in /Applications/Utilities). You will access to the Time Machine interface, and you will be able to see all your mails of all the backups you have, and you will be able to restore them. It means that your mails are backed up onto the Time Capsule

  • I am trying to download a book on my ipad. It says I need to install itunes. I have itunes already. I frequently get a message to re-install itunes. I do, but I still get the message, and I still can't get the book on my ipad.

    I am trying to download a book on my ipad. It says I need to install itunes. I have itunes already. I frequently get a message to re-install itunes. I do, but I still get the message, and I still can't get the book on my ipad.

    you can download a new installer and serial number from Adobe at Adobe - CS2 Downloads

  • Error when I try to open Firefox. Says Firefox is running in the background and cannot open. Suggests closing that window or restart system. This has happened several times recently. I reinstalled but am still getting the error. Any thoughts?

    I am getting an Error when I try to open Firefox that Says Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. This has happened several times recently. I deinstalld and reinstalled but am still getting the error. Any thoughts?

    This happens to me as well. However, I have a shortcut on my desktop as well as my quick start bar. When this has happened to me, I can usually log back in without restarting, by using the shortcut on the desktop rather than the usual quick start bar.
    I know this sounds weird, but it has worked for me about 80% of the time.

  • I want to share Microsoft word from my desktop mac to my laptop but every timeIi try and do it, it says that it can't open because it is not supported by the software. I have tried several times and updated it on the mac but its still not working.

    I want to share Microsoft word from my desktop mac to my laptop but every timeIi try and do it, it says that it can't open because it is not supported by the software. I have tried several times and updated it on the mac but its still not working. Any ideas?

    You need to install Office on the computer from the installer DVD or disc image you purchased.

Maybe you are looking for