8.0 applicatio​n builder problem- very simple programs will not install on non LV machine

Newbie at this...
1.  Created a simple project (just math) in LV 8.0
2.  Did the build
3.  Built an installer but Deselected  RTE installer as I told my customer to download LV RTE 8.0
4.  The installer put everything into a file folder called VOLUME... (?)
5.  Copied VOLUME over to non LV machine that had LV 8.0 RTE downloaded and installed.
6.  Ran ithe NI nstaller on non LV machine.  Ran Ok.
7.  However,  no files were installed (checked the PROGRAMS directory).
This is a REAL simple program.  Can anyone point me to some simple/stupid thing I did wrong?
frustrated in San Diego....
John

John:
Looking at all your steps, it seems like you are doing all the right things and in the right order too. Couple of things that you may try:
1. Make sure that in your installer properties, you specify "ProgramsFileFolder" in the Source Files tab if you want your installer files to be  
    placed under "...\Programs\" (Please take a look at the attached screenshot)
2. Try building an executable and make sure that you can run on the customer's computer (since it already has the LabVIEW Run Time Engine)
Let me know what you find.
Regards,
Rudi N.
Attachments:
Installer.JPG ‏52 KB

Similar Messages

  • TS2972 First night I was able to watch 2 TV shows (45 min each) with no problems, but thereafter programs will not stream without constant pause to buffer. Weather conditions are ideal and my internet comes from crappy hugesnet, but worked fine the first

    First night I was able to watch 2 TV shows (45 min each) with no problems, but thereafter programs will not stream without constant pause to buffer. Weather conditions are ideal and my internet comes from crappy hugesnet, but worked fine the first night.

    The speed may have been ok at that time and is too inconsistent/too slow overall. interference may have proven to be more of an issue since as well. If using public DNS that will provide Intermittant results
    I'm sure using a hotspot would be fine but it depends on your viewing habits. An HD movie is around 4-5GB. It would also be subject to speed. requirements so best to test to see how it compares.
    You would have to check with your Carrier if hotspot it's enabled then just to into your settings and toggle it ON

  • New build neo2-f windows xp will not install

    1st I am doing my 1st build. so I may be somewhat remedial.
    I am building a new system w/
    MSI K8n Neo-2F socket 939
    amd 64 athlon 3000+ Venice
    COOLER MASTER eXtreme Power RS-430-PMSR
    POWERCOLOR R41BG-ND3 Radeon X700 256MB GDDR2 AGP 4X/8X
    LITE-ON Black IDE DVD Burner Model SOHW-1693S
    x2 pqi POWER Series 512MB DDR 400 PC 3200
    ide 80 gb seagate (don't remember exact drive from old pc w/ no problems in prev system)
    system will post, but when I try to install WinXP home get stalled in BSOD after drivers load. right when it is loading Windows
    I have tried 4 different types of ram ( as i have been told that most of these issues are ram related) most recently kingston  kvr400x64c3ak2 512mb.  I have 2 but have only installed in socket 1 until i get some sort of stability. this ram is listed as tested to work on this motherboard and was cheap therefore the reason for purchase. 
    Ram times are set to auto.  I have been able to install Win 98  on the machine, but that is obviously not a legitimate operating system for this machine.  All input is wellcome thanx.

    Hafdef,
    1- Which slots have you got your RAM sticks into?
    2- What is their SPD settings and OEM recommended voltages?
    3- Are you nanually setting them in the Cell menu?
    4- Confirm that your old IDE HD has its jumpers set properly and confirm cable connections?
    5- How i& where is your CD or DVD connected? (ideally your Hard drive should be master on Primary and your CD or DVD master on Secondary)
    If this yield nothing try loading Windows with "2T" selected in BIOS Cell menu? If this does not work Keeep 2T and remove one stick of RAM to see if this will help.
    Also what method are you using to load your Windows system? (Master CD SP XX then SP updated or a combined installed)
    Good luck,

  • Very small program will not show any PDF!

    Here is my program. I must do something wrong, but I cannot see what.
    The JPanel remains gray. Any idea?. Thanks.
    public class PDFViewer extends JFrame
    public PDFViewer()
    try
    Container c = getContentPane();
    Document document = new Document();
    document.setUrl(new File("f.PDF").toURL());
    JPanel area = document.getPeer();
    area.setVisible(true);
    c.add(new JScrollPane(area));
    setSize(200, 250);
    catch (Exception ex) {ex.printStackTrace(); }
    public static void main(String[] args)
    PDFViewer v = new PDFViewer();
    v.setVisible(true);
    }

    Thank you for the answer. By testing your advice, I did the test on another pdf and it worked. In fact, I have a pb with the first pdf I used. I cannot view it with pdfgo library, but this pdf will show nicely with acrobat reader.
    So now, I have a different problem.
    Anyway, thank you.

  • WTPe Build 9879 RSAT Removed and will not install

    After 9879 installed, RSAT was removed and receive this message while reinstalling:
    Windows Update Standalone Installer encountered an error 0x8024001d.
    I need to get this working again asap.
    Thank You

    Ok I have a solution to this problem now.
    Expand WindowsTH-KB2693643-x64.msu by using the following command:
    WUSA WindowsTH-KB2693643-x64.msu /extract:<destination>
    Then from an elevated command prompt run the following command where the extracted files are located:
    pkgmgr /ip /m:<locationoffiles>\WindowsTH-KB2693643-x64.cab for example
    pkgmgr /ip /m:c:\temp\rsat\WindowsTH-KB2693643-x64.cab
    Wait for a few minutes then this will pop up:
    Restart your PC and your right to go. Tools should be installed now and working.
    Cheers
    Damon
    Thanks Damon,
    Instead of using pkgmgr I used the following command:
    DISM.exe /Online /Add-Package /PackagePath:C:\WindowsTH-KB2693643-x64.cab

  • I don't understand why this simple program will not print.  Help please!!!

    This program runs with no errors, it just doesn't print anything. Anyone have a clue as to why it doesn't print anything?
    Here is my code:
    import javax.swing.JOptionPane;
    public class Converter {
    public static void main(String[] args) {
    int a,b,c;
    int inputNum=Integer.parseInt(JOptionPane.showInputDialog(null," Enter a length in yards: "));
    String measurement = JOptionPane.showInputDialog(null,"Enter the unit of conversion (inches, feet, or centiyards): ");
    if (measurement == "inches"){
    a = inputNum*36;
    System.out.println(a + "inches");
    else if (measurement == "feet"){
    b = inputNum*3;
    System.out.println(b + "feet");
    else if (measurement == "centiyards"){
    c = inputNum*100;
    System.out.println(c + "centiyards");
    }

    Don't confuse String's equals() method with the equality operator '=='. The == operator checks that two references refer to the same object. If you want to compare the contents of Strings (whether two strings contain the same character sequence), use equals(), e.g. if (str1.equals(str2))...
    Example:String s1 = "foo";
    String s2 = new String("foo");
    System.out.println("s1 == s2: " + (s1 == s2)); // false
    System.out.println("s1.equals(s2): " + (s1.equals(s2))); // trueFor more information, check out the Java FAQ
    ~

  • OS VERY SLOW - Apps will not open., OS VERY SLOW - Apps will not open.

    My computer has been acting very slow, apps will not open.   I called Apple support and they suggested that I upgrade to version 10.10.2   My app store is not working, so we downloaded it from the Apple site.   This made matters worse.  I used EtreCheck to download the following data.  Can someone read this and see if it says what my problem is.   Perhaps I should go back to Maverick?   I don't even know how to do that.
    EtreCheck version: 1.9.12 (48)
    Report generated March 10, 2015 at 9:56:53 AM EDT
    Hardware Information:
        MacBook Pro (13-inch, Mid 2010) (Verified)
        MacBook Pro - model: MacBookPro7,1
        1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
        4 GB RAM
    Video Information:
        NVIDIA GeForce 320M - VRAM: 256 MB
            Color LCD 1280 x 800
    System Software:
        OS X 10.10.2 (14C109) - Uptime: 0 days 12:3:27
    Disk Information:
        TOSHIBA MK2555GSXF disk0 : (250.06 GB)
            EFI (disk0s1) <not mounted>: 209.7 MB
            Macintosh HD (disk0s2) / [Startup]: 249.2 GB (88.04 GB free)
            Recovery HD (disk0s3) <not mounted>: 650 MB
        MATSHITADVD-R   UJ-898 
    USB Information:
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
    Configuration files:
        /etc/hosts - Count: 21
    Gatekeeper:
        Mac App Store and identified developers
    Kernel Extensions:
        [not loaded]    com.wdc.driver.1394.64.10.9 (1.0.1 - SDK 10.9) Support
        [not loaded]    com.wdc.driver.USB.64.10.9 (1.0.1 - SDK 10.9) Support
    Launch Daemons:
        [loaded]    com.adobe.fpsaud.plist Support
        [running]    com.iobit.AMCDaemon.plist Support
        [running]    com.perion.searchprotectd.plist Support
    Launch Agents:
        [not loaded]    com.adobe.AAM.Updater-1.0.plist Support
    User Launch Agents:
        [running]    com.cinemapro1-2.agent.plist Support
        [loaded]    com.extensions.updater69337.agent.plist Support
        [invalid]    com.extensions.updater69337.ver
        [failed]    com.facebook.videochat.[redacted].plist Support
        [running]    com.iobit.MacBoosterMini.plist Support
        [not loaded]    com.jdibackup.ZipCloud.autostart.plist Support
        [loaded]    com.jdibackup.ZipCloud.notify.plist Support
        [running]    com.zeobit.MacKeeper.Helper.plist Support
        [invalid]    UpdateDownloader
    User Login Items:
        WDSecurityHelper
        WDDriveUtilityHelper
        AdobeResourceSynchronizer
        ConnectService
    Internet Plug-ins:
        Unity Web Player: Version: UnityPlayer version 3.1.0f4 Support
        Default Browser: Version: 600 - SDK 10.10
        OfficeLiveBrowserPlugin: Version: 12.2.8 Support
        NP2020Player: Version: 4.5.2.0 Support
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 Support
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 Support
        Flash Player: Version: 16.0.0.305 - SDK 10.6 Support
        iPhotoPhotocast: Version: 7.0
        QuickTime Plugin: Version: 7.7.3
        AdobePDFViewer: Version: 8.0.0 Support
        EPPEX Plugin: Version: 10.0 Support
        JavaAppletPlugin: Version: Java 8 Update 25 Check version
    Safari Extensions:
        Trovi Search for Safari: Version: 1.0
        PalMall 1.1: Version: 1.9
    Audio Plug-ins:
        BluetoothAudioPlugIn: Version: 4.3.2 - SDK 10.10
        AirPlay: Version: 2.0 - SDK 10.10
        AppleAVBAudio: Version: 303.1 - SDK 10.10
        iSightAudio: Version: 7.7.3 - SDK 10.10
    iTunes Plug-ins:
        Quartz Composer Visualizer: Version: 1.5 - SDK 10.10
    User Internet Plug-ins:
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
        TroviNPAPIPlugin: Version: 1.0 - SDK 10.9 Support
    3rd Party Preference Panes:
        Flash Player  Support
        Growl  Support
        Java  Support
        MacFUSE  Support
        Tuxera NTFS  Support
    Time Machine:
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Time Machine not configured!
    Top Processes by CPU:
             5%    firefox
             4%    WindowServer
             2%    hidd
             1%    mds
             1%    ConnectService
    Top Processes by Memory:
        215 MB    firefox
        74 MB    ocspd
        74 MB    Finder
        45 MB    mds_stores
        45 MB    WindowServer
    Virtual Memory Information:
        119 MB    Free RAM
        1.48 GB    Active RAM
        1.38 GB    Inactive RAM
        489 MB    Wired RAM
        23.56 GB    Page-ins
        949 MB    Page-outs

    I am consantly getting pop-ups since I installed Etrecheck and used it for first email.   Programs take forever to start up.    Please help me!
    Thank you,
    Debbie
    Start time: 15:13:15 03/10/15
    Revision: 1287
    Model Identifier: MacBookPro7,1
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 18 minutes
    UID: 501
    SerialATA
        TOSHIBA MK2555GSXF                    
    CPU usage (%)
        firefox (UID 501): 51.7
        WindowServer (UID 0): 17.8
    Energy (lifetime)
        firefox (UID 501): 35.77
        kernel_task (UID 0): 19.42
        Terminal (UID 501): 15.19
        bash (UID 501): 12.91
        WindowServer (UID 88): 9.74
    Energy (sampled)
        kernel_task (UID 0): 8.70
    Firewall: On
    Listeners
        kdc: kerberos
        launchd: afpovertcp
    System caches/logs
        1.8 GiB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-03-06 Acrobat crash
        2015-03-10 Acrobat crash
        2015-03-10 Microsoft Word hang
        2015-03-10 plugin-container crash
    HID errors: 9
    Kernel log
        Mar  9 16:01:37 Can't load kext com.apple.driver.AppleHWAccess - not Couldn't alloc class "AppleUpstreamUserClientDriver"
        Mar  9 16:01:47 utun_start: ifnet_disable_output returned error 12
        Mar  9 16:17:31 utun_start: ifnet_disable_output returned error 12
        Mar  9 16:18:29 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 16:18:54 considerRebuildOfPrelinkedKernel com.apple.kext.OSvKernDSPLib triggered rebuild
        Mar  9 16:42:11 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 16:51:40 Limiting icmp unreach response from 290 to 250 packets per second
        Mar  9 16:56:11 utun_start: ifnet_disable_output returned error 12
        Mar  9 16:56:56 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 17:00:17 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 18:29:52 firefox (map: 0xffffff803522d960) triggered DYLD shared region unnest for map: 0xffffff803522d960, region 0x7fff88a00000->0x7fff88c00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  9 18:29:52 firefox (map: 0xffffff8036137960) triggered DYLD shared region unnest for map: 0xffffff8036137960, region 0x7fff88a00000->0x7fff88c00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  9 18:30:14 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 20:15:20 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 20:26:50 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 20:43:29 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 20:50:19 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 21:02:11 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 21:16:43 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 21:17:31 firefox (map: 0xffffff80342204b0) triggered DYLD shared region unnest for map: 0xffffff80342204b0, region 0x7fff88a00000->0x7fff88c00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  9 21:55:18 utun_start: ifnet_disable_output returned error 12
        Mar  9 21:56:16 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
        Mar  9 21:58:37 considerRebuildOfPrelinkedKernel com.apple.driver.AppleUSBCDC triggered rebuild
        Mar  9 23:11:47 firefox (map: 0xffffff8039437e10) triggered DYLD shared region unnest for map: 0xffffff8039437e10, region 0x7fff8a000000->0x7fff8a200000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  9 23:19:58 [IOBluetoothHostControllerUSBTransport][ReceiveInterruptData] -- kIOReturnAborted, data size is 0, but data in buffer -- (data Length = 4, packet length = 6)  Data Content:
    System log
        Mar  9 23:09:41 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:10:11 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:10:42 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:11:12 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:11:42 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:12:11 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Firefox" for over 1.00 seconds. Server has re-enabled them.
        Mar  9 23:12:15 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:12:45 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:13:15 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:13:46 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:14:16 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:14:47 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:15:17 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:15:47 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:16:17 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:16:48 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:17:18 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:17:48 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:18:19 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:18:49 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:19:19 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 23:19:49 com.apple.photostream-agent: MSPublisher - 1306726088 Encountered temporary network issues during upload. Will try again later...
        Mar  9 21:38:45 su: in prompt_echo_off(): tcgetattr(): Operation not supported by device
        Mar  9 21:50:29 su: in prompt_echo_off(): tcgetattr(): Operation not supported by device
        Mar  9 21:50:30 su: in prompt_echo_off(): tcgetattr(): Operation not supported by device
    launchd log
        Mar 10 09:53:48 com.apple.xpc.launchd.domain.system: Could not read path: path = /Library/LaunchDaemons/com.perion.searchprotectd.plist, error = 2: No such file or directory
        Mar 10 09:53:49 com.apple.xpc.launchd.domain.system: Could not read path: path = //-ctid=CT3331785, error = 2: No such file or directory
        Mar 10 09:53:49 com.apple.xpc.launchd.domain.system: Could not read path: path = //-defaultsearchdisplayname=Trovi Search, error = 2: No such file or directory
        Mar 10 09:53:49 com.apple.xpc.launchd.domain.system: Could not read path: path = //-ALL, error = 2: No such file or directory
        Mar 10 09:53:49 com.apple.xpc.launchd.domain.system: Could not read path: path = //-install_time_revert=false, error = 2: No such file or directory
        Mar 10 09:53:49 com.apple.xpc.launchd.domain.system: Could not read path: path = //-spid=UUID, error = 2: No such file or directory
        Mar 10 09:54:57 com.apple.xpc.launchd.user.501.100006.Aqua: Could not read path: path = /var/empty/Library/LaunchAgents/com.extensions.updater69337.agent.plist, error = 2: No such file or directory
        Mar 10 09:56:06 com.apple.xpc.launchd.user.501.100006.Aqua: Could not read path: path = /Users/USER/Library/LaunchAgents/com.jdibackup.ZipCloud.*.plist, error = 2: No such file or directory
        Mar 10 09:56:34 com.apple.xpc.launchd.user.501.100006.Aqua: Could not read path: path = /Users/USER/Library/LaunchAgents/com.jdibackup.ZipCloud.notify.plist, error = 2: No such file or directory
        Mar 10 11:18:02 com.facebook.videochat.NAME.updater: Interval spawn of service failed: 139: Service cannot presently execute
        Mar 10 11:50:17 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.202, service = com.intego.virusbarrierexpress.agent, error = 119: Service is disabled
        Mar 10 11:50:17 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.202, service = org.tempel.findanyfile.hotkey, error = 119: Service is disabled
        Mar 10 12:09:24 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.202, service = com.intego.virusbarrierexpress.agent, error = 119: Service is disabled
        Mar 10 12:09:24 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.202, service = org.tempel.findanyfile.hotkey, error = 119: Service is disabled
        Mar 10 14:56:46 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.200, service = com.intego.virusbarrierexpress.agent, error = 119: Service is disabled
        Mar 10 14:56:46 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.200, service = org.tempel.findanyfile.hotkey, error = 119: Service is disabled
        Mar  9 09:40:29 com.facebook.videochat.NAME.updater: Interval spawn of service failed: 139: Service cannot presently execute
        Mar  9 15:19:46 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.207, service = com.intego.virusbarrierexpress.agent, error = 119: Service is disabled
        Mar  9 15:56:01 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.202, service = com.intego.virusbarrierexpress.agent, error = 119: Service is disabled
        Mar  9 16:17:52 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.204, service = com.intego.virusbarrierexpress.agent, error = 119: Service is disabled
        Mar  9 16:57:20 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.213, service = com.intego.virusbarrierexpress.agent, error = 119: Service is disabled
        Mar  9 18:51:18 com.apple.xpc.launchd.user.501.100006.Aqua: Could not read path: path = //System/Library/LaunchAgents/com.apple.MDCrashReportd.plist, error = 2: No such file or directory
        Mar  9 21:55:29 com.apple.xpc.launchd.user.501.100006.Aqua: Could not import service from caller: caller = otherbsd.203, service = com.intego.virusbarrierexpress.agent, error = 119: Service is disabled
    Console log
        Mar  9 16:17:51 fontd: Failed to open read-only database, regenerating DB
        Mar  9 16:56:50 mbloginhelper: Property list invalid for format: 200 (property lists cannot contain NULL)
    Daemons loaded
        com.adobe.fpsaud
        com.apple.Kerberos.kdc
        -    status: 1
        com.apple.watchdogd
        com.iobit.AMCDaemon
        com.period.searchprotectd
        -    status: 78
    Daemons disabled
        com.apple.crsud
        com.apple.mtmd
        org.samba.winbindd
        com.apple.mrt
        com.apple.mtmfs
        org.samba.nmbd
    Login agents loaded
        com.apple.mrt.uiagent
        com.cinemapro1-2.agent
        com.extensions.updater69337.agent.plist
        com.facebook.videochat.NAME.updater
        -    status: 78
        com.user.UninstallAD
    Login agents disabled
        com.wallwiz.helper
        com.adobe.AAM.Scheduler-1.0
        com.evernote.EvernoteHelper
    User agents disabled
        com.wallwiz.helper
        com.adobe.AAM.Scheduler-1.0
        com.evernote.EvernoteHelper
    Global login items
        /Library/Application Support/ArcSoft/Connect Service/ConnectService.app
    User login items
        AdobeResourceSynchronizer
        -    /Applications/Adobe/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Support/AdobeResourceSynchronizer.app
        ConnectService
        -    /Library/Application Support/ArcSoft/Connect Service/ConnectService.app
    Safari extensions
        PalMall 1.1
        -    com.app61870
    Firefox extensions
        Torrent Finder Toolbar
    iCloud errors
        bird        120
        cloudd        67
        CallHistorySyncHelper        1
    Continuity errors
        sharingd        4
    Restricted files: 354
    Lockfiles: 50
    Contents of /Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
        -    mod date: Dec  7 09:37:02 2014
        -    checksum: 2267998606
        <?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.adobe.AAM.Startup-1.0</string>
            <key>LaunchOnlyOnce</key>
            <true/>
            <key>Program</key>
            <string>/Library/Application Support/Adobe/OOBE/PDApp/UWA/UpdaterStartupUtility</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/Application Support/Adobe/OOBE/PDApp/UWA/UpdaterStartupUtility/disable</string>
                <string>-mode=logon</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.iobit.AMCDaemon.plist
        -    mod date: Dec  7 09:23:28 2014
        -    checksum: 3248374927
        <?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.iobit.AMCDaemon</string>
            <key>UserName</key>
            <string>root</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/Application Support/AMC/AMCDaemon</string>
                <string>-load</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.perion.searchprotectd.plist
        -    mod date: Mar 10 09:53:48 2015
        -    checksum: 1209345832
        <?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>AbandonProcessGroup</key>
            <true/>
            <key>EnableTransactions</key>
            <false/>
            <key>ProgramArguments</key>
            <array>
                <string>/Applications/SearchProtect/SearchProtect.app/Contents/MacOS/SearchProt ect</string>
                <string>-execv_instance</string>
            </array>
            <key>KeepAlive</key>
            <true/>
            <key>RunAtLoad</key>
            <true/>
            <key>Label</key>
            <string>com.period.searchprotectd</string>
        </dict>
        </plist>
    Contents of /private/etc/hosts
        -    ASCII English text, with CRLF, CR, LF line terminators
        -    mod date: Oct  2 20:18:28 2014
        -    checksum: 3505831886
        127.0.0.1    localhost
        255.255.255.255    broadcasthost
        ::1             localhost
        fe80::1%lo0    localhost
        127.0.0.1    activate.adobe.com
        127.0.0.1    activate.adobe.com
        127.0.0.1    practivate.adobe.com
        127.0.0.1    ereg.adobe.com
        127.0.0.1    activate.wip3.adobe.com
        127.0.0.1    wip3.adobe.com
        127.0.0.1    3dns-3.adobe.com
        127.0.0.1    3dns-2.adobe.com
        127.0.0.1    adobe-dns.adobe.com
        127.0.0.1    adobe-dns-2.adobe.com
        127.0.0.1    adobe-dns-3.adobe.com
        127.0.0.1    ereg.wip3.adobe.com
        127.0.0.1    activate-sea.adobe.com
        127.0.0.1    wwis-dubc1-vip60.adobe.com
        127.0.0.1    activate-sjc0.adobe.com
        127.0.0.1    hl2rcv.adobe.com
        127.0.0.1    swscan.apple.com
        127.0.0.1    swquery.apple.com
        127.0.0.1    swdownload.apple.com
        127.0.0.1    swcdn.apple.com
        127.0.0.1    swdist.apple.com
    Contents of /private/etc/pam.d/prl_disp_service
        -    mod date: Sep  7 11:59:08 2011
        -    checksum: 1160556194
        auth       required       pam_nologin.so
        auth       optional       pam_afpmount.so
        auth       sufficient     pam_securityserver.so nullok
        auth       sufficient     pam_unix.so  nullok
        auth       required       pam_deny.so
        account    required       pam_permit.so
        password   required       pam_deny.so
        session    required       pam_permit.so
        session    optional       pam_afpmount.so
    Contents of /private/etc/pam.d/prl_disp_service.snow_leopard
        -    mod date: Sep  7 11:59:08 2011
        -    checksum: 1656795023
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so nullok
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
    Contents of Library/LaunchAgents/com.cinemapro1-2.agent.plist
        -    mod date: Mar 10 09:56:39 2015
        -    checksum: 2800149229
        <?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>
            <false/>
            <key>Label</key>
            <string>com.cinemapro1-2.agent</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Users/USER/Library/cinemapro1-2/Service.app/Contents/MacOS/Service</st ring>
                <string>--service</string>
                <string>--unique_id=UUID</string>
                <string>--unique_data=UUID</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.extensions.updater69337.agent.plist
        -    mod date: Mar 10 09:56:41 2015
        -    checksum: 1075186082
        <?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.extensions.updater69337.agent.plist</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Users/USER/Library/LaunchAgents/UpdateDownloader</string>
                <string>cmpId=2706</string>
                <string>ibic=UUID</string>
                <string>verifier=UUID</string>
                <string>extId=69337</string>
                <string>updatejsondomain=http://update.ourinputdatastorage.com</string>
                <string>statsdomain=http://stats.ourinputdatastorage.com</string>
                <string>eventsdomain=http://logs.ourinputdatastorage.com</string>
                <string>errorsdomain=http://errors.ourinputdatastorage.com</string>
                <string>installerversion=01-27</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StartInterval</key>
            <integer>86400</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.facebook.videochat.NAME.plist
        -    mod date: Dec  7 09:37:02 2014
        -    checksum: 1721039949
        <?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.facebook.videochat.NAME.updater</string>
            <key>ProgramArguments</key>
            <array>
                <string>/usr/bin/java/disable</string>
                <string>-cp</string>
                <string>/Users/USER/Library/Application Support/Facebook/video/3.1.0.522/FacebookUpdate.jar</string>
                <string>FacebookUpdate</string>
                <string>com.facebook.peep</string>
                <string>3.1.0.522</string>
            </array>
            <key>RunAtLoad</key>
            <true/>
            <key>StandardErrorPath</key>
            <string>/dev/null</string>
            <key>StandardOutPath</key>
            <string>/dev/null</string>
            <key>StartInterval</key>
            <integer>10800</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.user.UninstallAD.plist
        -    mod date: Mar 10 10:54:08 2015
        -    checksum: 3790791767
        <?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>
            <false/>
            <key>Label</key>
            <string>com.user.UninstallAD</string>
            <key>LaunchOnlyOnce</key>
            <true/>
            <key>Program</key>
            <string>/Users/USER/Library/Application Support/ErrorReporter/UninstallAD.app/Contents/MacOS/UninstallAD</string>
        </dict>
        </plist>
    Extensions
        /System/Library/Extensions/BJUSBMP.kext
        -    jp.co.canon.bj.kext.BJUSBMP
        /System/Library/Extensions/JMicronATA.kext
        -    com.jmicron.JMicronATA
        /System/Library/Extensions/WD1394_64_109HPDriver.kext
        -    com.wdc.driver.1394.64.10.9
        /System/Library/Extensions/WDUSB_64_109HPDriver.kext
        -    com.wdc.driver.USB.64.10.9
    Applications
        /Applications/Adobe/Adobe Acrobat 8 Professional/Acrobat Distiller.app
        -    com.adobe.distiller
        /Applications/Adobe/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app
        -    com.adobe.Acrobat.Pro
        /Applications/Adobe/Adobe Media Player.app
        -    com.adobe.amp.UUID.1
        /Applications/ExpressBurn.app
        -    com.NCH Swift Sound.ExpressBurn
        /Applications/GAMES/Hoyle Casino.app
        -    com.freeverse.hoyle.Hoyle Casino_2010
        /Applications/Microsoft Office 2008/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
        -    com.microsoft.language_register
        /Applications/Microsoft Office 2008/Additional Tools/Remove Office/Remove Office.app
        -    com.microsoft.removeoffice
        /Applications/Microsoft Office 2008/Microsoft Entourage.app
        -    com.microsoft.Entourage
        /Applications/Microsoft Office 2008/Microsoft Excel.app
        -    com.microsoft.Excel
        /Applications/Microsoft Office 2008/Microsoft Messenger.app
        -    Microsoft/com.microsoft.Messenger
        /Applications/Microsoft Office 2008/Microsoft PowerPoint.app
        -    com.microsoft.Powerpoint
        /Applications/Microsoft Office 2008/Microsoft Word.app
        -    com.microsoft.Word
        /Applications/Microsoft Office 2008/Office/Alerts Daemon.app
        -    Microsoft/com.microsoft.AlertsDaemon
        /Applications/Microsoft Office 2008/Office/Equation Editor.app
        -    com.microsoft.EquationEditor
        /Applications/Microsoft Office 2008/Office/Microsoft Cert Manager.app
        -    com.microsoft.MicrosoftCertManager
        /Applications/Microsoft Office 2008/Office/Microsoft Chart Converter.app
        -    com.microsoft.openxml.chart.app
        /Applications/Microsoft Office 2008/Office/Microsoft Clip Gallery.app
        -    com.microsoft.ClipGallery
        /Applications/Microsoft Office 2008/Office/Microsoft Database Daemon.app
        -    com.microsoft.entourage.database_daemon
        /Applications/Microsoft Office 2008/Office/Microsoft Database Utility.app
        -    com.microsoft.entourage.database_utility
        /Applications/Microsoft Office 2008/Office/Microsoft Graph.app
        -    com.microsoft.Graph
        /Applications/Microsoft Office 2008/Office/Microsoft Office Reminders.app
        -    com.microsoft.entourage.office_reminders
        /Applications/Microsoft Office 2008/Office/Microsoft Office Setup Assistant.app
        -    com.microsoft.setupassistant
        /Applications/Microsoft Office 2008/Office/Microsoft Project Gallery.app
        -    com.microsoft.office_pg
        /Applications/Microsoft Office 2008/Office/Microsoft Query
        -    N/A
        /Applications/Microsoft Office 2008/Office/Microsoft Sync Services.app
        -    com.microsoft.entourage.syncservices12
        /Applications/Microsoft Office 2008/Office/Organization Chart.app
        -    com.microsoft.OrgChart
        /Applications/OmniOutliner Professional.app
        -    com.omnigroup.OmniOutlinerPro3
        /Applications/PHOTO PROGRAMS/Panorama Maker 5.app
        -    com.arcsoft.PanoramaMaker
        /Applications/Utilities/Adobe AIR Application Installer.app
        -    com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe Utilities.localized/Adobe Updater5/Adobe Updater.app
        -    "com.Adobe.ESD.AdobeUpdaterApplication"
        /Applications/Utilities/BatchFileRename.app
        -    com.gotoes.BatchFileRename
        /Applications/VIDEO PROGRAMS/HandBrake.app
        -    org.m0k.handbrake
        /Applications/VIDEO PROGRAMS/VLC.app
        -    org.videolan.vlc
        /Developer/Applications/Utilities/MacPython 2.5/Build Applet.app
        -    org.python.buildapplet
        /Developer/Applications/Utilities/Python 2.6/Build Applet.app
        -    org.python.buildapplet
        /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Li brary/CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Li brary/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.2.sdk/System/Li brary/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0/Symbols/System/Library /CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.0/Symbols/System/Library /CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.1.2/Symbols/System/Libra ry/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.1.2/Symbols/System/Libra ry/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.1.3/Symbols/System/Libra ry/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.1.3/Symbols/System/Libra ry/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.1/Symbols/System/Library /CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.1/Symbols/System/Library /CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2.1/Symbols/System/Libra ry/CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2.1/Symbols/System/Libra ry/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2.1/Symbols/System/Libra ry/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2.2/Symbols/System/Libra ry/CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2.2/Symbols/System/Libra ry/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2.2/Symbols/System/Libra ry/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2/Symbols/System/Library /CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2/Symbols/System/Library /CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.2/Symbols/System/Library /CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.0.1/Symbols/System/Libra ry/CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.0.1/Symbols/System/Libra ry/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.0.1/Symbols/System/Libra ry/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.0.2/Symbols/System/Libra ry/CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.0.2/Symbols/System/Libra ry/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.0.2/Symbols/System/Libra ry/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.0/Symbols/System/Library /CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.0/Symbols/System/Library /CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.0/Symbols/System/Library /CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.1/Symbols/System/Library /CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.1/Symbols/System/Library /CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneOS.platform/DeviceSupport/4.1/Symbols/System/Library /CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2 .sdk/Applications/MobileAddressBook.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2 .sdk/Applications/MobileSafari.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2 .sdk/Applications/MobileSlideShow.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2 .sdk/Applications/Preferences.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2 .sdk/Applications/Web.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2 .sdk/System/Library/CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2 .sdk/System/Library/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator3.2 .sdk/System/Library/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/AdSheet.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/Contacts.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/Game Center.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/MobileSafari.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/MobileSlideShow.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/Preferences.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/TrustMe.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/Web.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/WebSheet.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/Applications/iPodOut.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/System/Library/CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/System/Library/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.0 .sdk/System/Library/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/AdSheet.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/Contacts.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/Game Center~iphone.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/MobileSafari.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/MobileSlideShow.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/Preferences.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/TrustMe.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/Web.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/WebSheet.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/Applications/iPodOut.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/System/Library/CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/System/Library/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.1 .sdk/System/Library/CoreServices/VoiceOverTouch.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/AdSheet.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/AdSheet~ipad.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/Camera.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/Contacts~ipad.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/Contacts~iphone.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/DataActivation.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/Game Center~ipad.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/Game Center~iphone.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/MobileSafari.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/MobileSlideShow.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/Preferences.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/TrustMe.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/Web.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/WebSheet.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/Applications/iPodOut.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/System/Library/CoreServices/MobileStorageMounter.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/System/Library/CoreServices/SpringBoard.app
        -    N/A
        /Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.2 .sdk/System/Library/CoreServices/VoiceOverTouch.app
        -    N/A
        /Incompatible Software/Parallels Service.app
        -    com.parallels.desktop.dispatcher
        /Library/Application Support/Adobe/SwitchBoard/SwitchBoard.app
        -    com.adobe.switchboard-2.0
        /Library/Application Support/ArcSoft/Connect Service/ConnectService.app
        -    com.arcsoft.Daemon
        /Library/Application Support/ArcSoft/Media Browser/ArcMediaService.app
        -    com.Arcsoft.ArcMediaService
        /Library/Application Support/ArcSoft/Media Browser/MIDownload.app
        -    com.Arcsoft.MIDownload
        /Library/Application Support/ArcSoft/Media Browser/MediaImpressionUpdate.app
        -    com.arcsoft.MediaImpressionUpdate
        /Library/Application Support/Canon/ScanGear MP/Utility/Canon IJ Network Scanner Selector.app
        -    jp.co.Canon.bj.scan.network.scannerselector
        /Library/Application Support/Datalode/Hoyle Casino 2010/encore_reg.app
        -    com.DataLode.encore_reg
        /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
        -    com.microsoft.helpviewer
        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
        -    com.microsoft.autoupdate2
        /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app
        -    com.microsoft.error_reporting
        /Library/Application Support/Microsoft/MERP2.0/Microsoft Ship Asserts.app
        -    com.microsoft.netlib.shipassertprocess
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
        -    com.microsoft.openxml.excel.app
        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        -    com.microsoft.silverlight.sllauncher
        /Library/Documentation/User Guides And Information.localized/Apple Hardware Test Read Me.app
        -    com.apple.AppleHardwareTestReadMe
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        -    com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        -    com.adobe.air.Template
        /Library/Image Capture/TWAIN Data Sources/Canon MP560 series Network.ds
        -    com.twainds.mp560.network.scangear150200.canon
        /Library/Image Capture/TWAIN Data Sources/Canon MP560 series.ds
        -    com.twainds.mp560.scangear150200.canon
        /Library/Parallels/Parallels Mounter.app
        -    com.parallels.desktop.mounter
        /Library/Parallels/Parallels Transporter.app
        -    com.parallels.desktop.transporter
        /Library/Parallels/Uninstaller/Parallels Hypervisor/DockPlistEdit.app
        -    com.parallels.DockPlistEdit
        /Library/Printers/Canon/BJPrinter/Utilities/BJ Network Tool.app
        -    jp.co.canon.IJNetworkTool
        /Library/Printers/Canon/BJPrinter/Utilities/Canon IJ Network Scan Utility.app
        -    jp.co.canon.canon_ij_network_scan_utility
        /Library/Printers/Canon/IJScanner/Utilities/Canon IJ Network Scanner Selector2.app
        -    jp.co.Canon.bj.scan.network.scannerselector2
        /Users/USER/Library/Application Support/Facebook/video/3.1.0.522/FacebookVideoCalling.app
        -    com.Skype.FacebookVideoCalling
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_bepbmhgboaologfdajaanbcjmnhjmhfn/Default bepbmhgboaologfdajaanbcjmnhjmhfn.app
        -    com.google.Chrome.app.Default-bepbmhgboaologfdajaanbcjmnhjmhfn-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_nmmhkkegccagdldgiimedpiccmgmieda/Default nmmhkkegccagdldgiimedpiccmgmieda.app
        -    com.google.Chrome.app.Default-nmmhkkegccagdldgiimedpiccmgmieda-internal
        /Users/USER/Library/Services/OmniOutliner Professional.service
        -    com.omnigroup.OmniOutlinerPro3.ClippingService
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        -    com.adobe.AIR
        /Library/Frameworks/ArcCon.framework
        -    com.arcsoft.ArcCon
        /Library/Frameworks/ArcSocketLib.framework
        -    com.Arcsoft.ArcSocketLib
        /Library/Frameworks/BaseFunction.framework
        -    com.apple.carbonframeworktemplate
        /Library/Frameworks/Cocoa2Carbon.framework
        -    com.Arcsoft.Cocoa2Carbon
        /Library/Frameworks/MacFUSE.framework
        -    com.google.MacFUSE
        /Library/Frameworks/MagAppFramework.framework
        -    com.Arcsoft.MagAppFramework
        /Library/Frameworks/MagCore.framework
        -    com.arcsoft.magcoreframework
        /Library/Frameworks/MagImgTlsCtrl.framework
        -    com.ArcSoft.MagImgTlsCtrl
        /Library/Frameworks/MagPCMac.framework
        -    com.ArcSoft.MagPCMac
        /Library/Frameworks/Maglib5.framework
        -    com.ArcSoft.Maglib
        /Library/Frameworks/MediaClub.framework
        -    com.apple.carbonframeworktemplate
        /Library/Frameworks/TaskDLL.framework
        -    com.Arcsoft.TaskDLL
    PrefPane
        /Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home/lib/deploy/JavaControlPanel.pref Pane
        -    com.oracle.java.JavaControlPanel
        /Library/PreferencePanes/Flash Player.prefPane
        -    com.adobe.flashplayerpreferences
        /Library/PreferencePanes/Growl.prefPane
        -    com.growl.prefpanel
        /Library/PreferencePanes/MacFUSE.prefPane
        -    com.google.MacFUSE
        /Library/PreferencePanes/Tuxera NTFS.prefPane
        -    com.tuxera.ntfs.mac.prefpane
    Bundles
        /Library/Application Support/Adobe/APE/3.3/adbeapecore.framework/Versions/A/Libraries/Flash Player.plugin
        -    com.macromedia.FlashPlayer-10.4-10.5.plugin
        /Library/Application Support/Adobe/Plug-Ins/CS6/File Formats/Camera Raw.plugin
        -    com.adobe.CameraRaw
        /Library/Application Support/Canon/Easy-PhotoPrint EX/SMEXPlugin.plugin
        -    jp.co.canon.SMEXPlugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        -    com.adobe.adobecp
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        -    com.macromedia.FlashPlayer-10.6.plugin
        /Library/Graphics/Image Units/grayscaleimageunit.plugin
        -    grayscaleimageunit
        /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        -    com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/EPPEX Plugin.plugin
        -    jp.co.canon.MIG Plugin
        /Library/Internet Plug-Ins/Flash Player.plugin
        -    com.macromedia.Flash Player.plugin
        /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
        -    com.oracle.java.JavaAppletPlugin
        /Library/Internet Plug-Ins/NP2020Player.plugin
        -    com.2020technologies.2020Player.NP
        /Library/Internet Plug-Ins/OfficeLiveBrowserPlugin.plugin
        -    com.microsoft.officelive.browserplugin
        /Library/Internet Plug-Ins/Silverlight.plugin
        -    com.microsoft.SilverlightPlugin
        /Library/Internet Plug-Ins/Unity Web Player.plugin
        -    com.unity.UnityWebPlayer
        /Library/QuickLook/ParallelsQL.qlgenerator
        -    com.parellels.quicklookgenerator
        /Library/Spotlight/ParallelsMD.mdimporter
        -    com.parallels.mdimporter
        /Library/Widgets/CI Filter Browser.wdgt
        -    com.apple.CIFilterBrowser
        /Users/USER/Library/Address Book Plug-Ins/SkypeABDialer.bundle
        -    com.skype.skypeabdialer
        /Users/USER/Library/Address Book Plug-Ins/SkypeABSMS.bundle
        -    com.skype.skypeabsms
        /Users/USER/Library/Application Support/Google/Chrome/PepperFlash/11.9.900.117/PepperFlashPlayer.plugin
        -    com.macromedia.PepperFlashPlayer.pepper
        /Users/USER/Library/Internet Plug-Ins/CitrixOnlineWebDeploymentPlugin.plugin
        -    com.citrixonline.mac.WebDeploymentPlugin
        /Users/USER/Library/Internet Plug-Ins/TroviNPAPIPlugin.plugin
        -    com.conduit.ConduitNPAPIPlugin
        /Users/USER/Library/Widgets/TWCi.wdgt
        -    com.weather.widget.Forecast
        /Users/USER/Library/Widgets/YouTube.wdgt
        -    com.YouTube.widget.YouTube
    Bundles (new)
        /Applications/Adobe/Adobe Media Player.app
        -    com.adobe.amp.UUID.1
        /Applications/Adobe/Adobe Photoshop Lightroom 5.app
        -    com.adobe.Lightroom5
        /Applications/GAMES/Chess.app
        -    com.apple.Chess
        /Applications/GAMES/Full Deck Solitaire.app
        -    com.grlgames.fulldecksolitaire
        /Applications/GAMES/Hoyle Casino.app
        -    com.freeverse.hoyle.Hoyle Casino_2010
        /Applications/GAMES/PokerHD.app
        -    com.hqin.pokermachd
        /Applications/IP Scanner.app
        -    com.10baseT.IPScannerMac
        /Applications/MACPHUN/ColorStrokes.app
        -    com.macphun.colorsplashstudio
        /Applications/MACPHUN/FX Photo Studio PRO.app
        -    com.macphun.fxphotostudiomacpro
        /Applications/MACPHUN/Focus 2.app
        -    com.macphun.focus
        /Applications/MACPHUN/Intensify.app
        -    com.macphun.intensify
        /Applications/MACPHUN/Lost Photos.app
        -    com.SpaceInch.Lost-Photos
        /Applications/MACPHUN/Snapheal.app
        -    com.macphun.snapheal
        /Applications/MACPHUN/Snapselect.app
        -    com.macphun.snapselect
        /Applications/MACPHUN/Tonality.app
        -    com.macphun.tonality
        /Applications/Microsoft Office 2008/Notes.app
        -    com.apple.Notes
        /Applications/PHOTO PROGRAMS/Aperture.app
        -    com.apple.Aperture
        /Applications/PHOTO PROGRAMS/Image Capture.app
        -    com.apple.Image_Capture
        /Applications/PHOTO PROGRAMS/Image Smith.app
        -    com.koingosw.ImageSmith
        /Applications/PHOTO PROGRAMS/Panorama Maker 5.app
        -    com.arcsoft.PanoramaMaker
        /Applications/PHOTO PROGRAMS/Photo Booth.app
        -    com.apple.PhotoBooth
        /Applications/PHOTO PROGRAMS/Picture Collage Maker.app
        -    com.pearlmountainsoft.PictureCollageMaker3
        /Applications/PHOTO PROGRAMS/Pixlr.app
        -    com.autodesk.mas.pixlr
        /Applications/PHOTO PROGRAMS/iPhoto.app
        -    com.apple.

  • Flash Player 10.2 will not install - not same problem as Audrey below.

    Hi,
    Using Win 7 home deluxe, was using Flash player no problem until the office had me uninstall it to fix another problem but now will not reinstall, keeps insisting on installing Mc Afee alongside it and then Mc Afee won't install correctly and won't allow Flash Player to install either.
    Have repeatedly uninstalled the full Adobe free software suite, and Mc Afee and started from the beginning have tried using the 32 bit IE instead of thr 64 bit, when the window comes up showing the registration it only shows the Quit button will not let me use the Agree or Install button and again and again it keeps installing Mc Afee without being asked, I don't use or need Mc Afee as have Nortons.   I have also been turning off the norton antivrus while doing the installation as i know that can interfere with it.
    been trying this on and off for some days now, multiple times, and I do need to get this fixed I would appreciate some advice thanks
    T

    Yes Friend and I posted a message of thanks also which I'm very pleased to send to you personally, the missing link was that little check box you mentioned, I had done the install or tried to many times but never seen that small box so that was the problem.
    Very grateful  - thanks very much for your time and patience !!
    Best Regards
    Tim
    Date: Thu, 14 Apr 2011 10:53:23 -0600
    From: [email protected]
    To:
    Subject: Flash Player Flash Player 10.2 will not install - not same problem as Audrey below.
    Hi, Since you marked your thread as answered, I'm assuming you have FP Installed and working!!
    Thanks,
    eidnolb
    >
    Message was edited by: Timsan55

  • I have Adobe Design CS6, suddenly a simple PDF will not open. Noting happens when I doubleclick either the file or try to open Adobe Acrobat X Pro

    I have Adobe Design CS6, suddenly a simple PDF will not open. Noting happens when I doubleclick either the file or try to open Adobe Acrobat X Pro ?

    Hi Jenny, I just had to do that, for the 3rd time. It is a pity though when one pays for such expensive software that this happens, specifically when the only Adobe help is to tell you to post your problem on a forum and hope someone can help you. Not good enough and not what I expected when I bought it. I am so disappointed in Adobe.

  • I'm having a problem downloading iOS5. It downloads but will not install to my ipad.  Help!

    I've downloaded iOS5 twice, but it will not install on my ipad2.  I receive the following message after an hour and 15 minutes of downloading: There was a problem downloading the software for ipad (Gives the ipad name).  This network timed out.  Make sure your network settings are correct and your network connection is active, or try again later.  Please Help, the new features look VERY useful to me.
    Ckenote

    Try temporarily turning off your firewall and antivirus software until the download has completed. If that doesn't work then you could try downloading the update via a browser : https://discussions.apple.com/message/16436025#16436025

  • I am having a issue installing Adobe Acrobat XI.  I am running Windows 8.1. When  go to install it gets an error.  The error is with transform in registry and will not install product. I am looking at how I can fix this registry problem.

    I am having a issue installing Adobe Acrobat XI.  I am running Windows 8.1. When  go to install it gets an error.  The error is with transform in registry and will not install product. I am looking at how I can fix this registry problem.
    I have tried to uninstall all Abode Acrobat installations but one file remains and refuses to be uninstalled. It gives me this error : Error applying Transforms . Verify that specified paths are valid. It was installed on Sept 18 2014.  I have downloaded a Transform update but it tells I do not have a Adobe Acrobat product installed. 

    Hi all,
    Sylonious, did you manage to sort this problem out? I have been experiencing similar problems. I think my problem was because I had many different versions of JDKs. I have done a complete re-install. I would be really grateful to you (and anyone else) for help with this problem.
    I have re-installed JSDK1.4.2_03, set the "path" variable to "C:\JSDK1.4.2_03".
    When I compile using "javac" I get an error saying "javac" is not recognised.
    When I compile using "C:\j2sdk1.4.2_03\bin\javac Freq.java" no error is thrown.
    Every time I try to run a java file, I always get the NoClassDefFound error. When run with the -verbose option, files are loaded from C:\Program Files\Java\j2re1.4.2_03\bin - is this correct?
    I have removed all previous references to java in the registry editor.
    Please help !
    Regards,
    Vipul

  • I have installed latest update for itunes but it will not install and I receive a message Apple Mobile device failed to start. I have uninstalled and reinstalled itunes but have the same problem. I am using windows 7 and internet explorer

    I have downloaded the latest Itunes update, but it will not install and I receive a message 'apple mobile device failed to start'. I have uninstalled and reinstalled itunes but still have the same problem!

    Hi there willjay3976,
    You may find the troubleshooting steps in the article below helpful.
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    -Griff W. 

  • All of a sudden my iTunes stopped working, and I get the following error messages:   1. the program can't start because MSVCR80.dll is missing from your computer. Try reinstalling the program to fix this problem   and   2. iTunes was not installed correct

    All of a sudden my iTunes stopped working, and I get the following error messages:
    1. the program can't start because MSVCR80.dll is missing from your computer. Try reinstalling the program to fix this problem
    and
    2. iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows error 126).
    Now I've checked the forums and followed the advice of uninstalling all Apple applications, rebooting, and reinstalling iTunes.
    This is not working. I've tried installing as Administrator but doesn't make any difference at all.
    There must be a way to fix this? I'm not a tech geek but I want to avoid having to take my laptop back to factory settings to sort this out.
    Thanks

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99192)

  • HT1430 my very new iphone5s will not turn on its as if the button no longer works is there any additonal swiping actions or hidden buttons i may have triggered accidently it is barely 2 weeks old and has no obvious signs of wear............not impressed A

    my very new iphone5s will not turn on its as if the button no longer works is there any additonal swiping actions or hidden buttons i may have triggered accidently it is barely 2 weeks old and has no obvious signs of wear............not impressed APPLE

    im hoping that by holding both the power and circle buttons it will spring back to life ..........somtimes apple you are too clever with your secert hidden butttons switches

  • TS1412 Itunes will not install, I get this error message.  There is a problem with this Windows Installer package.  A progran run as part of the setup did not finish as expected.  Contact your support personnel or package vendor.

    I Tunes will not install.  I get this error message:  There is a problem with this Windows Installer package.  A program run as part of the setup did not finish as expected.  Contact your support personnel or package vendor.  Does anyone have an answer?

    TRy the following user tip:
    "There is a problem with this Windows Installer package ..." error messages when installing iTunes for Windows

Maybe you are looking for