How to get rid popup of pairing bluetooth devices on Pocket PC?

I'm developing bluetooth scanner and pusher through Pocket PC with Windows Mobile 5.0.
Almost all devices are processed properly except some Samsung phones.
They need pairing key despite I'm using NO_AUTHENTICATE in obex url.
So on my pocket PC (eten glofiish x500 or m700) there appears dialog box to add samsung ( for example SGH-Z370) to my pairing devices (input pin code).
Is there any possibility to automate connection with samsungs. I'm thinking about 2 resolvers:
1. setting default pin code (i'ts possible for example in linux bluez lib with setting /etc/bluetooth... defaultpin - can't remember full path and file), I've tried to find such setting in registers of windows mobile, but there is no info about that).
2. writing c++ application waiting for event of appearing popup window and then pushing proper button and input default pin code.
Maybe there is some other possibility (for example trying other protocol than obex or some parameter).
I need automated sending of bluetooth content for all devices found around Pocket PC without any human interference of my Pocket PC. I need figure out how to connect to that SAMSUNG-s.
Thanks in advance.

First, note that your Mac cannot be infected with a PC virus. Deleting the file is all that is necessary, and even that is only necessary to avoid passing it on to others.
Second, Symantec has a proven history of not understanding the Mac. Their software has been known to cause problems, and their detection of Mac malware is not particularly good. See:
http://www.thesafemac.com/mac-anti-virus-testing-01-2013/
I would recommend removing that. Then read my Mac Malware Guide for information on protecting yourself against malware.
http://www.thesafemac.com/mmg

Similar Messages

  • How to get rid of 'Your computer's bluetooth firmware is up-to-date' message?

    Hi. I just updated the Bluetooth on my iMac (OS X 10.5), but now each time I turn on my computer, this (annoying) message show up: Your computer's bluetooth firmware is up-to-date.
    How to get rid of it?
    I tried someone's suggestion to turn it off by going to  System Preference > Account > Login Items, but it's not listed there..
    Also, is there a way to use FaceTime on my iMac?
    Thanks!

    Hello, not sure about the Bloetooth thing, I have none, but it sounds like some file didn't get removed aftrt a BT update.
    As far as FaceTime, no, it requires the App Store & 10.6.6...
    "To download FaceTime from the Mac App Store, you need a Mac with Mac OS X 10.6.6 or later."
    http://itunes.apple.com/us/app/facetime/id414307850?mt=12&ls=1
    Snow Leopard/10.6.x Requirements...
    General requirements
       * Mac computer with an Intel processor
        * 1GB of memory (I say 2GB at least)
        * 5GB of available disk space (I say 30GB at least)
        * DVD drive for installation
        * Some features require a compatible Internet service provider; fees may apply.
        * Some features require Apple’s MobileMe service; fees and terms apply.

  • How to get rid of the Unwanted background shadow

    I created a popup (in DataGrid).  However, when th popup DataGrid displays, the backgroun becomes shadowed (see the image).  Anyone knows how to get rid of it?  Thanks.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:VBox
    xmlns:mx  ="http://www.adobe.com/2006/mxml"
    borderColor  ="#6CC417"
    borderStyle  ="solid"
    dropShadowColor  ="#F9B7FF"
    dropShadowEnabled ="true"
    shadowDirection  ="right"
    shadowDistance  ="10"
    >
    <mx:Script>
    <![CDATA[
    import mx.containers.Grid;
    import mx.events.FlexMouseEvent;
    import mx.events.ListEvent;
    import mx.managers.PopUpManager;
    import com.esri.solutions.flexviewer.widgets.PopupForms.Popup_HomeState;
    private var popup:Popup_HomeState;
    private function itemClickEvent(event:ListEvent):void {
    var iIndex:int = event.rowIndex;
    var sItem:String = dg.dataProvider[iIndex].col1;
    showPopup(sItem);
        popup.addEventListener(Event.CLOSE, closePopUpWindow);
        popup.addEventListener(FlexMouseEvent.MOUSE_DOWN_OUTSIDE, closePopUpWindow);
    public function showPopup(s:String):void {
       if(s == "Home State" || s == "Unit State") {
    popup = PopUpManager.createPopUp(this, Popup_HomeState, true) as Popup_HomeState;
    PopUpManager.centerPopUp(popup);
    private function closePopUpWindow(evt:Event):void {
        PopUpManager.removePopUp(popup);
    ]]>
    </mx:Script>
    <mx:VBox>
         <mx:DataGrid id="dg" width="360" height="176"
          rowCount="8"  showHeaders="true"  itemClick="itemClickEvent(event)"  >
             <mx:columns>
                 <mx:DataGridColumn dataField="col1" width="120" headerText=""
    itemRenderer="com.esri.solutions.flexviewer.widgets.myForms.DGRenderers.ImageRenderer"  />
                 <mx:DataGridColumn dataField="col2" width="260" headerText=""/>
             </mx:columns>
         </mx:DataGrid>
    </mx:VBox>
    </mx:VBox>
    --------------------- Below is Popuup_HomeState.mxml
    <?xml version="1.0" encoding="utf-8"?><mx:VBox  xmlns:mx ="
    http://www.adobe.com/2006/mxml"borderColor ="
    #6CC417" borderStyle ="
    solid" dropShadowColor ="
    #F9B7FF" dropShadowEnabled ="
    true" shadowDirection ="
    right" shadowDistance ="
    10" 
    >
    <mx:Script><![CDATA[import  
    mx.containers.Grid;import  
    mx.events.FlexMouseEvent;import  
    mx.events.ListEvent;import  
    mx.managers.PopUpManager;import  
    com.esri.solutions.flexviewer.widgets.PopupForms.Popup_HomeState; 
      private  
    var popup:Popup_HomeState; private  
    function itemClickEvent(event:ListEvent):void { var iIndex:int = event.rowIndex; 
    var sItem:String = dg.dataProvider[iIndex].col1;showPopup(sItem);
    // register event listeners for closing the popup window 
    // when the popup window close button is clicked...popup.addEventListener(Event.CLOSE, closePopUpWindow);
    // or when an area outside the popup window is clicked...popup.addEventListener(FlexMouseEvent.MOUSE_DOWN_OUTSIDE, closePopUpWindow);
     public  
    function showPopup(s:String):void { 
     if(s == "Home State" || s == "Unit State") { 
    //helpWindow = PopUpManager.createPopUp(this, Popup_HomeState, false); popup = PopUpManager.createPopUp(
    this, Popup_HomeState, true) as Popup_HomeState;PopUpManager.centerPopUp(popup);
    // method to close the popup window on close or mousedownoutside eventprivate  
    function closePopUpWindow(evt:Event):void {PopUpManager.removePopUp(popup);
    ]]></mx:Script> 
     <mx:VBox>
     <mx:DataGrid id="dg" width="360" height="176" rowCount="
    8" showHeaders="true" itemClick="itemClickEvent(event)" >
     <mx:columns>
     <mx:DataGridColumn dataField="col1" width="120" headerText=""itemRenderer="
    com.esri.solutions.flexviewer.widgets.myForms.DGRenderers.ImageRenderer" />
     <mx:DataGridColumn dataField="col2" width="260" headerText=""/>
     </mx:columns>
     </mx:DataGrid>
     </mx:VBox>
     </mx:VBox>

    Problem solved by change the
    popup = PopUpManager.createPopUp(this, Popup_HomeState, true) as Popup_HomeState;
    to
    popup = PopUpManager.createPopUp(this, Popup_HomeState, false) as Popup_HomeState;

  • How to get rid of pop-ups on my macBook air?

    One of my roommates recently downloaded torrent on my macbook air to watch a movie, and since then I have been experiencing popups every time I open a new page on safari. Also, my search engine has switched to something known as search-quick? I've tried a few different mac detox sites to no avail. Very frustrated. Any suggestions on how to get rid of this "virus" and pop-ups would be much appreciated!

    There is no need to download anything to solve this problem. You may have installed a variant of the "VSearch" ad-injection malware.
    Malware is always changing to get around the defenses against it. This procedure works as of now, as far as I know. It may not work in the future. Anyone finding this comment a few days or more after it was posted should look for a more recent discussion, or start a new one.
    The VSearch malware tries to hide itself by varying the names of the files it installs. To remove it, you must first identify the naming pattern.
    Triple-click the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination  command-C:
    /Library/LaunchDaemons
    In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder named "LaunchDaemons" may open. Look inside it for two files with names of the form
              com.something.daemon.plist
    and
               com.something.helper.plist
    Here something is a variable word, which can be different in each case. So far it has always been a string of letters without punctuation, such as "cloud," "dot," "highway," "submarine," or "trusteddownloads." Sometimes the word is "apple," and then you must be especially careful not to delete the wrong files, because many built-in OS X files have similar names.
    If you find these files, leave the LaunchDaemons folder open, and open the following folder in the same way:
    /Library/LaunchAgents
    In this folder, there may be a file named
              com.something.agent.plist
    where the word something is the same as before.
    If you feel confident that you've identified the above files, back up all data, then drag just those three files—nothing else—to the Trash. You may be prompted for your administrator login password. Close the Finder windows and restart the computer.
    Don't delete the "LaunchAgents" or "LaunchDaemons" folder or anything else inside either one.
    The malware is now permanently inactivated, as long as you never reinstall it. You can stop here if you like, or you can remove two remaining components for the sake of completeness.
    Open this folder:
    /Library/Application Support
    If it has a subfolder named just
               something
    where something is the same word you saw before, drag that subfolder to the Trash and close the window.
    Don't delete the "Application Support" folder or anything else inside it.
    Finally, in this folder:
    /System/Library/Frameworks
    there may an item named exactly
                v.framework
    It's actually a folder, though it has a different icon than usual. This item always has the above name. Drag it to the Trash and close the window.
    Don't delete the "Frameworks" folder or anything else inside it.
    If you didn't find the files or you're not sure about the identification, post what you found.
    If in doubt, or if you have no backups, change nothing at all.
    The trouble may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • How to get rid of malware on Mac Pro

    I have a Mac Pro with the OS X Yosemite. My computer has malware on it. I keep getting popups and ads on my screen, whether I'm using Safari or Chrome. One of the popups says "Suspicious activity found on your computer, due to pop-up advertisement windows and invasive links. Please contact tech support at 1-866-215-6348." I want to know how to get rid of this malware. Thanks in advance.

    Some are persistent. Force quit Safari again. Disconnect from the Internet by either turning off Wi-Fi in the System Preferences, or unplugging the Ethernet cable from your router/modem. Hold the Shift key and launch Safari again. If the same popup appears, you will be able to dismiss it and navigate away from the page, or close its tab. Reconnect to the Internet.
    Though reading your initial post again, it's sounding more like JimmyCMPIT is correct since you're seeing ads in multiple browsers. It's just rare for one the ads that pops up to be like one of the tech support scams.
    In which case, you can either follow Apple's manual instructions for removing adware, or use the free automated tool, AdwareMedic (as mentioned by, and linked to by Jimmy).
    It should be noted that Apple's manual removal instructions are typically outdated. Sometimes a lot outdated. It depends on when Apple last updated their instructions page. If you would prefer to manually remove the adware on your system, you can find much more up-to-date instructions on The Safe Mac's adware removal page.

  • How to get rid of pop ups

    how to get rid of pop ups

    Could you please help us repair our Macbook after downloading MPlayerX. Followed your instructions from an earlier post and the result is as follows, hoping it helps.
    Thanks in anticipation
    Start time: 21:18:19 03/21/15
    Revision: 1237
    Model Identifier: MacBook7,1
    Memory: 2 GB
    System Version: Mac OS X 10.6.8 (10K549)
    Kernel Version: Darwin 10.8.0
    64-bit Kernel and Extensions: No
    Time since boot: 35 days 20:35
    UID: 501
    Graphics/Displays
        NVIDIA GeForce 320M
            Color LCD (Main)
            Display Connector
    SerialATA
        Hitachi HTS545025B9SA02                
    VM
        Pageouts: 903201
    File opens (per sec)
        RealPlayer Down (UID 501) => /private/var/folders/rG/rGFFQw8IFXCCMRtksag4TE+++TI/-Tmp-/TemporaryItems (status 0): 3
    XPC cache: No
    Listeners
        cupsd: ipp
        krb5kdc: kerberos
        launchd: afpovertcp
        launchd: microsoft-ds
        launchd: netbios-ssn
        launchd: ssh
    Diagnostic reports
        2015-03-15 plugin-container crash
        2015-03-21 InstallerT crash
        2015-03-21 plugin-container crash
    I/O errors
        disk1s1: do_jnl_io: strategy err 0x6 2
        disk6s2: do_jnl_io: strategy err 0x6 1
    Volumes
        disk0s2:
        disk3s1:
        disk1s1:
    HCI errors
        Bus: 0x26 Addr: 2 Errors: 15
    USB
        USB High-Speed Bus
          Host Controller Location: Built-in USB
          Host Controller Driver: AppleUSBEHCI
          Bus Number: 0x24
            Built-in iSight
              Location ID: 0x24600000 / 2
              Current Available (mA): 500
              Current Required (mA): 500
        USB High-Speed Bus
          Host Controller Location: Built-in USB
          Host Controller Driver: AppleUSBEHCI
          Bus Number: 0x26
        USB Bus
          Host Controller Location: Built-in USB
          Host Controller Driver: AppleUSBOHCI
          Bus Number: 0x06
            BRCM2070 Hub
              Location ID: 0x06600000 / 3
              Current Available (mA): 500
              Current Required (mA): 94
                Bluetooth USB Host Controller
                  BSD Name: en4
                  Location ID: 0x06630000 / 4
                  Current Available (mA): 500
                  Current Required (mA): 0
            Apple Internal Keyboard / Trackpad
              Location ID: 0x06300000 / 2
              Current Available (mA): 500
              Current Required (mA): 40
        USB Bus
          Host Controller Location: Built-in USB
          Host Controller Driver: AppleUSBOHCI
          Bus Number: 0x04
    Shutdown codes
        -60 1
    Kernel log
        Sat Mar 21 12:43:21 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (d2,2ee6)->(db,2d69).
        Sat Mar 21 12:43:26 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (ec,269d)->(ee,51d).
        Sat Mar 21 12:43:30 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (f1,231d)->(f9,2375).
        Sat Mar 21 12:43:31 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (fb,1375)->(fd,2759).
        Sat Mar 21 12:43:35 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (10a,1b06)->(10d,149e).
        Sat Mar 21 12:43:56 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (147,736)->(157,751).
        Sat Mar 21 12:44:50 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (21a,1c72)->(21b,224f).
        Sat Mar 21 12:45:25 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (296,2098)->(297,2f45).
        Sat Mar 21 12:45:58 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (30d,2c50)->(30f,16ee).
        Sat Mar 21 12:46:01 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (315,1eee)->(318,a67).
        Sat Mar 21 12:46:02 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (31b,2c67)->(31d,44e).
        Sat Mar 21 13:13:48 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1b9,2be3)->(1bc,1bd4).
        Sat Mar 21 13:14:01 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (1e8,214)->(1eb,29a9).
        Sat Mar 21 13:14:28 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (24c,e76)->(24d,2a38).
        Sat Mar 21 13:14:48 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (292,2d96)->(294,a78).
        Sat Mar 21 13:15:33 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (333,2235)->(335,e78).
        Sat Mar 21 13:22:55 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (966,13c0)->(967,280d).
        Sat Mar 21 14:10:23 Sound assertion "0 != result" failed in AppleMikeyDevice at line 765 goto handler
        Sat Mar 21 14:10:23 Sound assertion "0 != result" failed in AppleMikeyDevice at line 795 goto handler
        Sat Mar 21 14:10:23 Sound assertion "0 != dispatchToStateMachinePosition ( dequeuedEvent )" failed in AppleMikeyDevice at line 721 goto handler
        Sat Mar 21 14:19:50 IOAudioStream[0x5da9f00]::clipIfNecessary() - Error: attempting to clip to a position more than one buffer ahead of last clip position (7ec,185a)->(7ed,246d).
        Sat Mar 21 17:31:29 Sound assertion "0 != result" failed in AppleMikeyDevice at line 765 goto handler
        Sat Mar 21 17:31:29 Sound assertion "0 != result" failed in AppleMikeyDevice at line 795 goto handler
        Sat Mar 21 17:31:29 Sound assertion "0 != dispatchToStateMachinePosition ( dequeuedEvent )" failed in AppleMikeyDevice at line 721 goto handler
        Sat Mar 21 20:24:16 jnl: disk6s2: close: journal 0x55f7e04, is invalid.  aborting outstanding transactions
    System log
        Sat Mar 21 13:23:44 /Applications/Firefox.app/Contents/MacOS/plugin-container.app/Contents/MacOS/pl ugin-container ava error: addNewReferenceEntryMMCO ref (3) buffer is full (retire_cnt = 0, fnumMin = 4, lte = 0, sidx = 4, sid = 12 *)
        Sat Mar 21 16:24:51 mDNSResponder PenaltyTimeForServer: PenaltyTime negative -107383, (server penaltyTime 1210501235, timenow 1210608618) resetting the penalty
        Sat Mar 21 19:36:30 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:30 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:30 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:31 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:31 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 19:36:31 firefox CGAffineTransformInvert: singular matrix.
        Sat Mar 21 20:23:16 mDNSResponder PenaltyTimeForServer: PenaltyTime negative -12076, (server penaltyTime 1224901235, timenow 1224913311) resetting the penalty
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:24:16 kernel
        Sat Mar 21 20:27:34 fseventsd event logs in /Volumes/Backups/.fseventsd out of sync with volume.  destroying old logs. (101926 0 102146)
        Sat Mar 21 20:27:34 fseventsd log dir: /Volumes/Backups/.fseventsd getting new uuid: UUID
        Sat Mar 21 20:31:49 com.apple.backupd Event store UUIDs don't match for volume: Macintosh HD
        Sat Mar 21 20:31:49 com.apple.backupd Node requires deep traversal:/ reason:must scan subdirs|new event db|
    Console log
        Sat Mar 21 21:15:18 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:15:28 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:15:38 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:15:48 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:15:58 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:08 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:18 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:28 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:38 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:48 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:16:58 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:08 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:18 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:28 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:38 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:48 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:17:58 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:08 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:18 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:28 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:39 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:49 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:18:59 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:19:09 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
        Sat Mar 21 21:19:19 com.apple.launchd.peruser.501 cn.com.zte.mobile.usbswapper.plist: posix_spawn("/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile", ...): No such file or directory
    Daemons
        cn.com.zte.PPPMonitor.plist
        com.adobe.fpsaud
        com.apple.suhelperd
        -    status: 2
        com.openssh.sshd
        com.rim.BBDaemon
        com.vix.cron
        com.zeobit.MacKeeper.AntiVirus
        com.zeobit.MacKeeper.plugin.AntiTheft.daemon
        de.novamedia.VMRServer
        jp.co.canon.MasterInstaller
        org.apache.httpd
        org.cups.cupsd
        org.ntp.ntpd
        org.postfix.master
        org.samba.nmbd
        org.samba.smbd
        org.x.privileged_startx
    Agents
        cn.com.zte.mobile.usbswapper.plist
        -    status: 1
        com.Installer.completer.download
        com.Installer.completer.ltvbit
        com.Installer.completer.update
        com.apple.Kerberos.renew.plist
        -    status: 1
        com.apple.mrt.uiagent
        -    status: 255
        com.codecm.uploader
        com.google.keystone.user.agent
        com.jdibackup.ZipCloud.notify
        com.rim.BBLaunchAgent
        com.rim.RimAlbumArtDaemon
        com.sierrawireless.SwitchTool
        com.spotify.webhelper
        com.zeobit.MacKeeper.Helper
        org.openbsd.ssh-agent
        org.x.startx
    User overrides
        jp.co.canon.Inkjet_Extended_Survey_Agent
    Startup items
        /Library/StartupItems/iCoreService/iCoreService
        /Library/StartupItems/iCoreService/StartupParameters.plist
    Global login items
        /Library/Application Support/TrendMicro/TmccMac/TmLoginMgr.app
        /Library/Application Support/BlackBerry/BlackBerry Device Manager.app
    User login items
        iTunesHelper
        -    missing value
        AirPort Utility
        -    missing value
        Kindle
        -    /Applications/Kindle.app
        Dropbox
        -    /Applications/Dropbox.app
        Android File Transfer Agent
        -    /Users/USER/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app
        fuspredownloader
        -    missing value
        RealPlayer Downloader Agent
        -    /Users/USER/Library/Application Support/RealNetworks/RealPlayer Downloader Agent.app
        KiesAgent
        -    /Applications/Kies.app/Contents/MacOS/KiesAgent.app
        TmLoginMgr
        -    /Library/Application Support/TrendMicro/TmccMac/TmLoginMgr.app
        BlackBerry Device Manager
        -    /Library/Application Support/BlackBerry/BlackBerry Device Manager.app
    Firefox extensions
        Google Translator for Firefox
        Words-Chinese Pinyin Dictionary
        Test Pilot
    Widgets
        Currency Converter
    Restricted files: 2944
    Lockfiles: 25
    Universal Access
    Contents of /Library/LaunchAgents/cn.com.zte.mobile.usbswapper.plist
        -    mod date: Sep 27 21:40:29 2011
        -    checksum: 1550256407
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>cn.com.zte.mobile.usbswapper.plist</string>
            <key>OnDemand</key>
            <false/>
            <key>ProgramArguments</key>
            <array>
                <string>/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>program</key>
            <string>/Applications/Join Me.app/Contents/Resources/Mac_SwapperDemonForMobile.app/Contents/MacOS/Mac_Swap perDemonForMobile</string>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.rim.BBAlbumArtCacher.plist
        -    mod date: Nov  9 09:24:42 2011
        -    checksum: 2868431736
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>KeepAlive</key>
            <true/>
            <key>Label</key>
            <string>com.rim.RimAlbumArtDaemon</string>
            <key>OnDemand</key>
            <false/>
            <key>Program</key>
            <string>/Library/Application Support/BlackBerry/RimAlbumArtDaemon</string>
            <key>ProgramArguments</key>
            <array>
                <string>RimAlbumArtDaemon</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.rim.BBLaunchAgent.plist
        -    mod date: Nov  9 09:24:43 2011
        -    checksum: 908705504
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>KeepAlive</key>
            <true/>
            <key>Label</key>
            <string>com.rim.BBLaunchAgent</string>
            <key>OnDemand</key>
            <false/>
            <key>Program</key>
            <string>/Library/Application Support/BlackBerry/BBLaunchAgent.app</string>
            <key>ProgramArguments</key>
            <array>
                <string>BBLaunchAgent</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.sierrawireless.SwitchTool.plist
        -    mod date: Sep  8 04:26:41 2010
        -    checksum: 872926754
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>com.sierrawireless.SwitchTool</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/Sierra/SierraDevSupport</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>TimeOut</key>
            <integer>90</integer>
            <key>KeepAlive</key>
            <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/cn.com.zte.PPPMonitor.plist
        -    mod date: Feb  9 14:34:28 2009
        -    checksum: 4232615395
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>cn.com.zte.PPPMonitor.plist</string>
            <key>OnDemand</key>
            <false/>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/Application Support/ZTE/PPPMonitord</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>program</key>
            <string>/Library/Application Support/ZTE/PPPMonitord</string>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.zeobit.MacKeeper.AntiVirus.plist
        -    mod date: Sep 20 11:22:10 2011
        -    checksum: 4244331265
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
            <dict>
                <key>Disabled</key>
                <false/>
                <key>Label</key>
                <string>com.zeobit.MacKeeper.AntiVirus</string>
                <key>Program</key>
                <string>/Library/Application Support/MacKeeper/AntiVirus.app/Contents/MacOS/AntiVirus</string>
                <key>OnDemand</key>
                <false/>
            </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist
        -    mod date: Sep 20 11:15:14 2011
        -    checksum: 3798729423
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
            <dict>
                <key>Disabled</key>
                <false/>
                <key>Label</key>
                <string>com.zeobit.MacKeeper.plugin.AntiTheft.daemon</string>
                <key>Program</key>
                <string>/Library/Application Support/MacKeeper/MacKeeperATd</string>
                <key>OnDemand</key>
                <false/>
            </dict>
        </plist>
    Contents of /Library/LaunchDaemons/jp.co.canon.MasterInstaller.plist
        -    mod date: May 21 15:15:24 2014
        -    checksum: 1894334785
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>jp.co.canon.MasterInstaller</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/PrivilegedHelperTools/jp.co.canon.MasterInstaller</string>
            </array>
            <key>ServiceIPC</key>
            <true/>
            <key>Sockets</key>
            <dict>
                <key>MasterSocket</key>
                <dict>
                    <key>SockFamily</key>
                    <string>Unix</string>
                    <key>SockPathMode</key>
                    <integer>438</integer>
                    <key>SockPathName</key>
                    <string>/var/run/jp.co.canon.MasterInstaller.socket</string>
                    <key>SockType</key>
                    <string>Stream</string>
                </dict>
        ...and 3 more line(s)
    Contents of /System/Library/LaunchAgents/com.apple.AirPortBaseStationAgent.plist
        -    mod date: Jun 24 20:01:21 2011
        -    checksum: 1071213906
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>EnableTransactions</key>
            <true/>
            <key>KeepAlive</key>
            <dict>
                <key>PathState</key>
                <dict>
                    <key>/Library/Preferences/com.apple.AirPortBaseStationAgent.launchd</key>
                    <true/>
                </dict>
            </dict>
            <key>Label</key>
            <string>com.apple.AirPortBaseStationAgent</string>
            <key>ProgramArguments</key>
            <array>
                <string>/System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent</string>
                <string>-launchd</string>
                <string>-allowquit</string>
            </array>
        </dict>
        </plist>
    Contents of /System/Library/LaunchDaemons/com.apple.xprotectupdater.plist
        -    mod date: Jun 11 06:13:23 2013
        -    checksum: 2156521427
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>com.apple.xprotectupdater</string>
            <key>ProgramArguments</key>
            <array>
                <string>/usr/libexec/XProtectUpdater</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StartCalendarInterval</key>
            <dict>
                <key>Hour</key>
                <integer>21</integer>
                <key>Minute</key>
                <integer>10</integer>
            </dict>
        </dict>
        </plist>
    Contents of /System/Library/LaunchDaemons/de.novamedia.VMRServer.plist
        -    mod date: Aug 29 20:04:21 2012
        -    checksum: 2973122774
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>de.novamedia.VMRServer</string>
            <key>RunAtLoad</key>
            <true/>
            <key>OnDemand</key>
            <false/>
            <key>WorkingDirectory</key>
            <string>/usr/local/bin</string>
            <key>ProgramArguments</key>
            <array>
                <string>/usr/local/bin/VMRServer</string>
            </array>
            <key>ServiceDescription</key>
            <string>Vodafone Mobile Wi-Fi</string>
        </dict>
        </plist>
    Contents of /private/etc/authorization
        -    mod date: Feb 14 00:47:29 2015
        -    checksum: 3542104272
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>comment</key>
            <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used.    Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
            <key>rights</key>
            <dict>
                <key></key>
                <dict>
                    <key>class</key>
                    <string>rule</string>
                    <key>comment</key>
        ...and 971 more line(s)
    Contents of /private/etc/hosts
        -    mod date: Feb 10 17:28:54 2015
        -    checksum: 1028826818
        127.0.0.1    localhost
        255.255.255.255    broadcasthost
        ::1             localhost
        fe80::1%lo0    localhost
        10.0.0.138    pocket.wifi
    Contents of Library/LaunchAgents/com.Installer.completer.download.plist
        -    mod date: Mar 21 12:47:58 2015
        -    checksum: 2802156794
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>com.Installer.completer.download</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Users/USER/Library/Application Support/IM.Installer/Completer.app/Contents/MacOS/InstallerT</string>
                <string>-trigger</string>
                <string>download</string>
                <string>-isDev</string>
                <string>0</string>
                <string>-installVersion</string>
                <string>17498</string>
                <string>-firstAppId</string>
                <string>544010071</string>
            </array>
            <key>WatchPaths</key>
            <array>
                <string>/Users/USER/Downloads</string>
            </array>
            <key>isAllowToSuggest</key>
            <string>false</string>
        </dict>
        ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.Installer.completer.ltvbit.plist
        -    mod date: Mar 21 12:47:59 2015
        -    checksum: 3353910712
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>com.Installer.completer.ltvbit</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Users/USER/Library/Application Support/IM.Installer/Completer.app/Contents/MacOS/InstallerT</string>
                <string>-trigger</string>
                <string>ltvbit</string>
                <string>-isDev</string>
                <string>0</string>
                <string>-installVersion</string>
                <string>17498</string>
                <string>-firstAppId</string>
                <string>544010071</string>
            </array>
            <key>StartCalendarInterval</key>
            <dict>
                <key>Hour</key>
                <integer>4</integer>
                <key>Minute</key>
                <integer>49</integer>
            </dict>
        ...and 2 more line(s)
    Contents of Library/LaunchAgents/com.Installer.completer.update.plist
        -    mod date: Mar 21 12:47:58 2015
        -    checksum: 3717148078
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>com.Installer.completer.update</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Users/USER/Library/Application Support/IM.Installer/Completer.app/Contents/MacOS/InstallerT</string>
                <string>-trigger</string>
                <string>update</string>
                <string>-isDev</string>
                <string>0</string>
                <string>-installVersion</string>
                <string>17498</string>
                <string>-firstAppId</string>
                <string>544010071</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StartCalendarInterval</key>
            <dict>
                <key>Hour</key>
                <integer>12</integer>
                <key>Minute</key>
        ...and 4 more line(s)
    Contents of Library/LaunchAgents/com.codecm.uploader.plist
        -    mod date: Apr  5 10:32:01 2012
        -    checksum: 1595122189
        <?xml version=1.0 encoding=UTF-8?> <!DOCTYPE plist PUBLIC -//Apple//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd> <plist version=1.0> <dict> <key>Label</key> <string>com.codecm.uploader</string> <key>OnDemand</key> <true/> <key>KeepAlive</key> <dict> <key>SuccessfulExit</key> <false/> </dict> <key>RunAtLoad</key> <true/> <key>Program</key> <string>/Users/USER/Library/Application Support/Codec-M/codecm_uploader</string> <key>LimitLoadToSessionType</key> <string>Aqua</string> </dict> </plist>
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist
        -    mod date: Oct  9 10:44:00 2014
        -    checksum: 2799884167
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>com.google.keystone.user.agent</string>
            <key>LimitLoadToSessionType</key>
            <string>Aqua</string>
            <key>ProgramArguments</key>
            <array>
              <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
              <string>-runMode</string>
              <string>ifneeded</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StartInterval</key>
            <integer>3523</integer>
            <key>StandardErrorPath</key>
            <string>/dev/null</string>
            <key>StandardOutPath</key>
            <string>/dev/null</string>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.jdibackup.ZipCloud.autostart.plist
        -    mod date: Mar 21 12:48:37 2015
        -    checksum: 784630351
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>com.jdibackup.ZipCloud.autostart</string>
            <key>ProgramArguments</key>
            <array>
                <string>open</string>
                <string>/Applications/ZipCloud.app/Contents/Resources/Utility.app</string>
                <string>-n</string>
                <string>--args</string>
                <string>9</string>
                <string>-l</string>
            </array>
            <key>StandardOutPath</key>
            <string>/Users/USER/Library/Logs/ZipCloud/lagent_out.log</string>
            <key>StandardErrorPath</key>
            <string>/Users/USER/Library/Logs/ZipCloud/lagent_err.log</string>
            <key>RunAtLoad</key>
            <true/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.jdibackup.ZipCloud.notify.plist
        -    mod date: Mar 21 12:48:37 2015
        -    checksum: 4054896881
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>com.jdibackup.ZipCloud.notify</string>
            <key>ProgramArguments</key>
            <array>
                <string>open</string>
                <string>/Applications/ZipCloud.app/Contents/Resources/Utility.app</string>
                <string>--args</string>
                <string>7</string>
                <string>1</string>
            </array>
            <key>StandardOutPath</key>
            <string>/Users/USER/Library/Logs/ZipCloud/lagent_out.log</string>
            <key>StandardErrorPath</key>
            <string>/Users/USER/Library/Logs/ZipCloud/lagent_err.log</string>
            <key>StartInterval</key>
            <integer>1200</integer>
            <key>RunAtLoad</key>
            <false/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.spotify.webhelper.plist
        -    mod date: Mar 25 11:58:35 2013
        -    checksum: 2530324778
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
         <key>Label</key>
         <string>com.spotify.webhelper</string>
         <key>KeepAlive</key>
         <dict>
          <key>NetworkState</key>
          <true/>
         </dict>
         <key>RunAtLoad</key>
         <true/>
         <key>Program</key>
         <string>/Users/USER/Library/Application Support/Spotify/SpotifyWebHelper</string>
         <key>SpotifyPath</key>
         <string>/Applications/Spotify.app</string></dict>
        </plist>
    Contents of Library/LaunchAgents/com.zeobit.MacKeeper.Helper.plist
        -    mod date: Feb 22 13:49:38 2012
        -    checksum: 3499570668
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Disabled</key>
            <false/>
            <key>EnvironmentVariables</key>
            <dict>
                <key>ZBTimeStamp</key>
                <string>20111117180719</string>
            </dict>
            <key>Label</key>
            <string>com.zeobit.MacKeeper.Helper</string>
            <key>OnDemand</key>
            <false/>
            <key>Program</key>
            <string>/Applications/MacKeeper.app/Contents/Resources/MacKeeper Helper.app/Contents/MacOS/MacKeeper Helper</string>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/jp.co.canon.Inkjet_Extended_Survey_Agent.plist
        -    mod date: May 21 15:21:24 2014
        -    checksum: 1116988227
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Label</key>
            <string>jp.co.canon.Inkjet_Extended_Survey_Agent</string>
            <key>OnDemand</key>
            <true/>
            <key>ProgramArguments</key>
            <array>
                <string>/Applications/Canon Utilities/Inkjet Extended Survey Program/Inkjet Extended Survey Program.app/Contents/Resources/Canon_Inkjet_Extended_Survey_Agent</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StartInterval</key>
            <integer>86400</integer>
        </dict>
        </plist>
    Bad plists
        /Library/Preferences/DirectoryService/ActiveDirectory.plist
        /Library/Preferences/DirectoryService/ActiveDirectoryDomainPolicies.plist
        /Library/Preferences/DirectoryService/ActiveDirectoryDynamicData.plist
        /Library/Preferences/DirectoryService/ContactsNodeConfig.plist
        /Library/Preferences/DirectoryService/ContactsNodeConfigBackup.plist
        /Library/Preferences/DirectoryService/DirectoryService.plist
        /Library/Preferences/DirectoryService/DirectoryServiceDebug.plist
        /Library/Preferences/DirectoryService/DSLDAPv3PlugInConfig.plist
        /Library/Preferences/DirectoryService/DSRecordTypeRestrictions.plist
        /Library/Preferences/DirectoryService/SearchNodeConfig.plist
        /Library/Preferences/DirectoryService/SearchNodeConfigBackup.plist
        Library/Preferences/com.apple.iphotomosaic.plist
    Applications
        /Applications/Address Book.app
        -    com.apple.AddressBook
        /Applications/Adobe Digital Editions 2.0.app
        -    com.adobe.adobedigitaleditions.app
        /Applications/Android File Transfer.app
        -    com.google.android.mtpviewer
        /Applications/App Store.app
        -    N/A
        /Applications/Calculator.app
        -    com.apple.calculator
        /Applications/Canon Utilities/IJ Manual/Easy Guide Viewer/Canon IJ On-screen Manual.app
        -    jp.co.canon.ij.easy-guide-viewer
        /Applications/Canon Utilities/IJ Network Tool/Canon IJ Network Tool.app
        -    jp.co.canon.IJNetworkTool
        /Applications/Canon Utilities/IJ Scan Utility/Canon IJ Scan Utility2.app
        -    jp.co.canon.ij.scanutility2
        /Applications/Canon Utilities/Inkjet Extended Survey Program/Inkjet Extended Survey Program.app
        -    jp.co.canon.InkjetExtendedSurveyProgram
        /Applications/Canon Utilities/My Image Garden/AddOn/CIG/CiGDownLoadAPP.app
        -    jp.co.canon.MIGCig
        /Applications/Canon Utilities/My Image Garden/My Image Garden.app
        -    jp.co.canon.MyImageGarden
        /Applications/Canon Utilities/Quick Menu/Canon Quick Menu.app
        -    jp.co.canon.IJ.QuickMenu
        /Applications/Codec-M.app
        -    com.whitesmoke.Codec-M
        /Applications/DVD Player.app
        -    com.apple.DVDPlayer
        /Applications/Dashboard.app
        -    com.apple.dashboardlauncher
        /Applications/Dictionary.app
        -    com.apple.Dictionary
        /Applications/Dropbox.app
        -    com.getdropbox.dropbox
        /Applications/Firefox.app
        -    org.mozilla.firefox
        /Applications/Flip4Mac/WMV Player.app
        -    net.telestream.wmv.player
        /Applications/Font Book.app
        -    com.apple.FontBook
        /Applications/Image Capture.app
        -    com.apple.Image_Capture
        /Applications/InstallMac/Reset Search.app
        -    com.tabatoo.InstallerT
        /Applications/Kies.app
        -    com.samsung.Kies
        /Applications/Kindle.app
        -    com.amazon.Kindle
        /Applications/MacKeeper.app
        -    com.zeobit.MacKeeper
        /Applications/Mail.app
        -    com.apple.mail
        /Applications/Mobile Broadband Ma

  • Amost every page I open, Firefox asks whether to enable Flash player. How to get rid of this nagging pest ?

    Amost every page I open, Firefox takes a line off my netbook screen to ask whether to enable Flash player.
    How to get rid of this nagging pest ?

    downloaded 17MB flash installer from Adobe website.
    This download did not run properly, reporting that it had some error.
    Still plagued with FireFox queries about Flash.
    Don't much care about having flash plugin in FireFox.
    Prefer to download a flash file, scan with virus checker, then play it with VideoLAN.
    So I disabled Flash plugin to "Never Ask" but still the noxious popup
    "FireFox has prevented the outdated plugin "Adobe Flash" from running on helpx.adobe.com. Continue Blocking ? Allow ... X"

  • I cant update nor download any applications. My password was always invalid. And other username is prompted richardca0521@yahoo.ca which is not my account. How to get rid of this apple id and use my account for download? I have registered this to itunes.

    I can't update nor download any apps in itunes. Prompted invalid password, upon checking the apple id was not mine. The id was [email protected] whic is not mine. Pls. Help how to get rid of this. Thank you.

    try and delete the apps and re-add them

  • I have a new iPhone 5S.  While trying to learn about it, I accidentally recorded a voice memo with no content.  I cannot now figure out how to get rid of it.  There is a banner across the top of my phone with this memo which I don't want.  Help!

    I have a new iPhone 5S.  While trying to learn about it, I accidentally recorded a voice memo with no content.  I cannot now figure out how to get rid of it.  There is a banner across the top of my phone with this memo which I don't want.  I have deleted it from iTunes but cannot get it off the phone.  Help!

    The banner usually indicates that the memo is "Paused." If you go back into voice memos, touch the word "Done" beside the big red pause button, give it a name, then it will show in a list. Touch the memo in the list then touch the trash can icon that should appear.

  • How to get rid of Safari !!!!!

    I must have missed the message to install Safari during one of the many iTunes updates and now I'm stuck with it on my computer taking up 60GB of space! I've tried removing it through Control Panel -> Uninstall Programs, but get the message that I don't have administrator privilages - which I do. Thinking I may have had this installed while I was logged in under my main administrator name, I logged off and logged back in under my only other user name and tried again - same message. So I went to the Safari folder and changed all security privilages to full access for both accounts and it still won't uninstall. How can this program claim I don't have administrator privilages when I used the only two user accounts on my computer?? So in a fit of defiance and desperation, I deleted the Safari folder and then ran the name "safari" in Vista's search box under the Start menu (I even included the wildcard .* to catch all examples). Guess what? Rather than find all traces of safari on my computer so I could delete them manually, Safari started running again!! I cancelled the program before it finished loading and went to recheck the Program Files folder and Safari was back there with a full 60GB of files again! I CAN'T GET RID OF IT!!
    Safari is a malicious software program as bad as any Malware or Adware I have ever seen! How can I get rid of it??
    (and no, I really do not want Safari - I don't care if you think its the greatest thing since sliced bread - I make the choices on my computer, not some software engineer or marketing division and I DON'T WANT SAFARI!!)
    Any suggestions on how to get rid of it? Did I miss something?
    Thanks all,
    LH

    The Safari update is not clear what it is and provided no explanation of what it was - it simply states "Safari". For all I know it could have been an indexing file for iTunes. There was no explanation as to what is was and the install checkbox was already checked so the unsuspecting may quickly and accidentaly hit install along with the iTunes update, thinking it was a required part of iTunes. Regardless of how it got there, I'm trying to get rid of it and it won't uninstall.
    Now you may fancy yourself as some kind of wunderkind software expert, but you apparently do not know Vista because it really does take up 60 GB and every time I delete it, it tries to reinstall itself. These are not multiple installations and I am the only user on this computer. You haven't offered me any help - only insults. If you aren't willing or able to offer help or assistance in the most sincerest form this request was intended, than stay out of this thread. Your actions and insults reinforce the prevailing belief that Apple users are unkind, rude, self-important snobs.

  • HT5622 how to get rid of an old apple ID on my iphone 5 . the ID belongs to a store where I bought my phone ,and it's in a different country ??

    How to get rid of an old Apple ID on my iphone 5 ? The ID belongs to a store I bought my iphone from ,and it's in another country.

    You can't.  That's the new security feature of iOS7 that users (and others) requested to prevent stolen devices from being restored by theives and reused.  Contact the "store" you purchased your phone from and see what they say.

  • When I try to buy something, I get an Apple-ID which is not the one I want to use, and I don't know how to get rid of it either, so that I can use my ID, which is in Mail, Contacts etc. The ID I get, I can't find, so that I can delete it. What to do?

    When I try to buy something, I get an Apple-ID which is not the one I want to use, and I don't know how to get rid of it either, so that I can replace it with my ID in Mail, contacts etc. The ID I get without wanting it, I can't find anywhere. I have to delete it. How do I solve this problem, anyone?

    My content was obtained through another ID, which popped up earlier. Now this one doesn't pop up, and my current ID doesn't pop up either, but another one. How do you find an ID which is not in the store, and not in Mail, contacts etc. either?
    Or is it possible to write the ID yourself when you want to buy something, not only to have it popped up being unable to be changed?

  • I have very thin, colored lines running vertical on my desktop monitor screen.  I don't know where they come from or how to get rid of them.  I started with one and now have three.  Can anyone give me some insight about what to do in getting rid of them?

    I have very thin, colored lines that have shown up on my IMac monitor screen.  I don't know where they came from or how to get rid of them.  I'm concerned now because I started with one and now have three.  Does any know why this occurs or how to get rid of them?

    I got an address from Applecare, although I can't place my hand on it right now. I didn't bother persuing the letter route myself as I didn't expect much. I know that the location was Cork, Ireland though as that where the UK Applecare is based as far as I'm aware. The best thing to do is to call Applecare (if it's free) and discuss the issue. State that you are not happy wit the fact that you will have to pay to have the problem resolved especiiay if it is an ongoing problem that has not been resolved. I ended up speaking to a senior manager of the Applecare team who then proceeded to tell me about mailing in my grievence to customer services division or something like that.
    If I can find the address I may post it if I'm allowed.
    In the case of age, Schools usually have a 5-year life-cycle as they tend to be used differently than consumer machines, i.e. being used constantly on a daily basis for at least 12 hours with no break. you would expect issues to appear after a few years, but I expect problems that arise through defects to be resolved and stay resolved. As I mentioned we had machines for around 2 years before the lines appeared and sent them to be repaired. I'm happy with that. What I am unhappy about is the fact that the problem has reappeared exactly in the same way and now I'm left with around 7 machines that I either pay loads to repair or, the more likely replace the machines with newer ones since the age is now big enough to warrant the replacement.
    Sorry for the lengthy moan, but these are the reasons I purchased Apple ahrdware in the first place to avoid the "not our problem" stance some PC vendors  usually take, similar to the Dell monitors thread mentioned in here somewhere.

  • How to get rid of automatically created server accounts in iCal and Mail?

    I have recently setup an OS X 10.6.2 Server for our small office. I got the domain name wrong in the initial install and fixed this by doing a complete clean reinstall of OS X 10.6 server (then upgrade to 10.6.2).
    The problem is that one of the OS X 10.6.2 clients had been setup to talk to the server prior to the rebuild. Now on this client, I cannot work out how to get rid of or change the automatically created server accounts in iCal and Mail - everytime you login, these are recreated using the old domain name (and of course don't work).
    In Mail if you remove the server account (from Accounts in Preferences), it just pops back again. I even removed every trace of the old domain name from the apple.com.mail.plist file but when I re-open Mail that darned server account (with the old domain name) just pops up again.
    In iCal its slightly different in that you can remove the account and it stays away while you have iCal open. But as soon as you close and re-open it, that server account just pops up again!
    I thought it might be something to do with Kerberos and found a Kerberos file on the client which had the old domain name throughout it - I changed all these references to the new domain name, but still the same behaviour in Mail and iCal.
    This is doing my head in. Any ideas?
    Message was edited by: davidav

    I suggest you ask in the snow leopard server forum
    http://discussions.apple.com/category.jspa?categoryID=264

  • I've got OSX/Genieo.A virus on my mac and don't know how to get rid of it and why I have it

    I've got OSX/Genieo.A virus on my mac and don't know how to get rid of it and w I have it

    There is no need to download anything to solve this problem.
    You installed the "Genieo" malware. The product is a fraud, and the developer knowingly distributes an uninstaller that doesn't work. I suggest the procedure below to disable Genieo. This procedure may leave a few small files behind, but it will permanently deactivate the malware (as long as you never reinstall it.)
    Malware is always changing to get around the defenses against it. These instructions are valid as of now, as far as I know. They won't necessarily be valid in the future. Anyone finding this comment a few days or more after it was posted should look for more recent discussions or start a new one.
    Back up all data before proceeding.
    Step 1
    Triple-click anywhere in the line below on this page to select it:
    /Library/Frameworks/GenieoExtra.framework
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.
    If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder should open with an item named "GenieoExtra.framework" selected. Move that item to the Trash. You'll be prompted for your administrator password.
    Move each of these items to the Trash in the same way:
    /Applications/Genieo.app
    /Applications/Reset Search.app
    /Applications/Uninstall Genieo.app
    /Library/LaunchAgents/com.genieo.completer.update.plist
    /Library/LaunchAgents/com.genieo.engine.plist
    /Library/LaunchAgents/com.genieoinnovation.macextension.plist
    /Library/LaunchDaemons/com.genieoinnovation.macextension.client.plist
    /Library/PrivilegedHelperTools/com.genieoinnovation.macextension.client
    /usr/lib/libgenkit.dylib
    /usr/lib/libgenkitsa.dylib
    /usr/lib/libimckit.dylib
    /usr/lib/libimckitsa.dylib
    ~/Library/Application Support/com.genieoinnovation.Installer
    ~/Library/LaunchAgents/com.genieo.completer.download.plist
    ~/Library/LaunchAgents/com.genieo.completer.update.plist
    If there are other items with a name that includes "Genieo" or "genieo" alongside any of those listed above, move them as well. Some of these items will be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    Step 2
    From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including ones called "Genieo" or "Omnibar," and any that have the word "Spigot" or "InstallMac" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Your web browser(s) should now be working, and you should be able to reset the home page and search engine. If not, stop here and post your results.
    Make sure you don't repeat the mistake that led you to install this trojan. Chances are you got it from an Internet cesspit such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. The ad has a large green button labeled "Download" or "Download Now" in white letters. The button is designed to confuse people who intend to download something else on the same page. If youever download a file that isn't obviously what you expected, delete it immediately.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that this Internet criminal has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. This failure of oversight has compromised both Gatekeeper and the Developer ID program. You can't rely on Gatekeeper alone to protect you from harmful software.
    Finally, be forewarned that when Genieo is mentioned on this site, the attacker sometimes shows up under the name "Genieo support." He will tell you to run a fake "uninstaller." As he intends, the uninstaller does not completely remove the malware, and is in fact malware itself.

Maybe you are looking for