Unable to install swdp to glassfish v2 build 58

Hi all
I am unable to Install swdp to glassfish-v2-b58g. I am using Netbeans IDE 6.0 Beta 1. When i try to install swdp this is the message i get in the message box:
"glassfish-v2-b58g is not version 9.0 of the Sun Java System Application Server Platform Edition"
Any help will be deeply appreciated
Thanks and regards,
Deepti

Hi,
I suggest you check drivers updates for build 9879, make sure to have latest driver version for all your device, and make sure to have latest important Windows Updates in 9879, clear %windir%\SoftwareDistribution folder. After that, upgrade to 9926,
check if issue persists.
Yolanda Zhu
TechNet Community Support

Similar Messages

  • Flash Builder unable to install Eclipse plug-in

    With the latest pre-release version of Flash Builder (12/07/09),  I'm unable to install Eclipse plug-ins.  I go to the Help | Install New Software... menu option.  But it gives you no ability to add a new software site.  I also tried Window | Preference, expanded the Install/Update item and then selected Available Software Sites.  This also gives you no ability to add a new site.  What am I missing?

    Wrong forum. You want prerelease.adobe.com.
    Jason San Jose
    Quality Engineer, Flash Builder

  • Unable to install Extension Builder 2.1

    I'm unable to install the 2.1 trial on a Windows 7 machine.  I get a message saying:
    'The setup has detected that no version of the Extension Builder 2.1 is installed. The specified command-line options require that the applicatoin be installed to continue.  The setup will now terminate'
    There's nothing showing ig the add remove programs dialog (I thought maybe a half install leaving stuff around.  It's the ful trial install I donwloaded not an update,  Any ideas?

    Same problem here, but after I deleted all the "Extension Builder" -related registry keys, it ends me with these popups on any install try onward:
    It says about upgrading (or downgrading in this case), tho it's my first time installing EB21, the trial version for now. Atm of the installation, I had eclipse with extension builder 3 (got from labs just a day before), none of them flash builders, and win7 as os. The initial message was the same "The setup has detected that no version of etc..", with that found my way here on these topics. After a full day and a half of trying almost anything adviced about the issue through searching, the message above remains constant. I've tried registry search/delete for keys(&parents), registry clean, installation with the flash builder 4.6 trial preinstalled, and also this solution for the Error: -1625 here, unfortunately no luck on any.
    Lastly, I may also have messed up the thing myself... When I rolled the "find..." -command in regedit for the first time, on first match I deleted only the key (not parent) and continued search to the next one. Right after, realized to backup the registry. .. aand just after that, read the post about deleting also the parent of related keys. So with my rather limited knowledge about registry, there could be still this one set left, where only the searchword qualified key is removed and other related keys remains. Could this be the problem? Is there anyway to get through the installation?
    I could go with EB3, but I need to make extensions for Photoshop CS6, so they'd benefit me in my job. I understood EB3 lacks support for CS6?.

  • Unable to Install Cordova for App Builder Environment on Mac OS ?

    Hi Experts,
    I'm Unable to Install Cordova-3.4.0 V on Mac OS, Here i'm Getting Errors like
    " $ sudo npm install -g cordova-3.4.0
    npm ERR! network tunneling socket could not be established, cause=connect ECONNREFUSED
    npm ERR! network This is most likely not a problem with npm itself
    npm ERR! network and is related to network connectivity.
    npm ERR! network In most cases you are behind a proxy or have bad network settings.
    npm ERR! network
    npm ERR! network If you are behind a proxy, please make sure that the
    npm ERR! network 'proxy' config is set properly.  See: 'npm help config'
    npm ERR! System Darwin 13.0.0
    npm ERR! command "node" "/usr/local/bin/npm" "install" "-g" "cordova-3.4.0"
    npm ERR! cwd /Users/yqlabs
    npm ERR! node -v v0.10.29
    npm ERR! npm -v 1.4.14
    npm ERR! code ECONNRESET
    npm ERR!
    npm ERR! Additional logging details can be found in:
    npm ERR!     /Users/yqlabs/npm-debug.log
    npm ERR! not ok code 0 "
    In Windows It's Installed with out these issues, Please Help me out from this Issue.
    Thanks In Advance,
    Vamsi K.

    Hi Vamsi ,
    Its purely a network connectivity error / missing proxy settings. 
    Please set a proxy to NPM and try again.
    You can have a look at Using npm behind a corporate proxy - Wil Boayue to set proxy to npm. 

  • Unable to install SCCM 2012 client in Win10 (build 10061)

    Hi,
    I am trying to install SCCM client version 5.00.7845.1000 on a Windows 10 (build 10061) and get these errors.
    -- File 'C:\WINDOWS\ccmsetup\WindowsUpdateAgent30-x64.exe' returned failure exit code 775. Fail the installation.
    -- InstallFromManifest failed 0x80070307
    -- CcmSetup failed with error code 0x80070307
    Both 0x80070307 and error 775 translate to :
    The implementation is not capable of performing the request.
    I am wondering if it's even possible to install the client on this build?
    Thanks
    Chanderjeet
    VISTA / XP Support Trainer

    I figured out a workaround for OSD. Essentially I create a fake ccmsetup.exe which then executes the normal ccmsetup command line OSD needs but with the /skipprereq:WindowsUpdateAgent30-x64.exe parameter included.
    1. Create a copy of your client install package. Move all the install files/folders into a new subfolder named client.
    2. Add the new client package and make note of the package ID assigned.
    3. Using VS Express 2013, create a new c# console project and name it ccmexec. Paste this code in, replace 10000A53 with the package ID of your new client package, and compile.
    using System;
    using System.Collections.Generic;
    using System.Diagnostics;
    using System.Linq;
    using System.Text;
    using System.Threading;
    using System.Threading.Tasks;
    namespace ccmsetup
        class Program
            static void Main(string[] args)
                var process = Process.Start("c:\\_SMSTaskSequence\\OSD\\10000A53\\client\\ccmsetup.exe", "/skipprereq:WindowsUpdateAgent30-x64.exe /useronly /source:C:\\_SMSTaskSequence\\OSD\\10000A53\\client
    /config:C:\\_SMSTaskSequence\\OSD\\10000A53\\MobileClient.TCF");
                while (!process.HasExited)
                    Thread.Sleep(1000);
    4. Take the fake ccmexec.exe and add it to the root (the root only - don't overwrite the normal ccmsetup.exe located in the client folder) of your new client source folder and update your new client package.
    5. Modify your Windows 10 task sequence(s) and switch the SCCM client package to your new one.
    This works for me under SCCM 2012 R2 CU1 w/ WIndows 10 x64 build 10041. This should work for the 10061 build as well. Yeah I know I this could be better (extract package ID from command line, etc.) but I was in a hurry just to make sure this workaround fundamentally
    works.

  • Unable to install SQL server 2008 r2 standard edition on windows server 2008 r2 sp1

    I am unable to install sql server 2008 r2 standard edition on windows server 2008 r2 sp1.
     On the Setup Support Files page, choose Install this step I don't get any other window i.e. nothing happens I waited for 5-10 min.  Then I checked the log file.
    Final result:                  Failed: see details below
      Exit code (Decimal):           -2068053929
      Exit facility code:            1212
      Exit error code:               87
      Exit message:                  Failed: see details below
      Start time:                    2014-03-18 14:59:31
      End time:                      2014-03-18 15:00:25
    === Verbose logging started: 3/19/2014  9:45:47  Build type: SHIP UNICODE 5.00.7601.00  Calling process: E:\SQL Server 2008 R2 Standard\x64\setup100.exe ===
    MSI (c) (10:34) [09:45:47:496]: Note: 1: 2203 2: E:\SQL Server 2008 R2 Standard\x64\redist\watson\dw20sharedamd64.msi 3: -2147287038
    MSI (c) (10:34) [09:45:47:496]: MsiOpenPackageEx is returning 2.
    === Verbose logging stopped: 3/19/2014  9:45:47 ===
    Please help As i am running out of time as i have to upgrade TFS for that first step is to install SQL server.

    Hello,
    The following are a few things you can try:
    Copy the media to the local disk drive, unzip it (in case you are installing from an ISO file, and run SQL Server setup from there.
    Try to unregister and register the Windows Installer with the following two commands:
    msiexec /unregister
    msiexec /regserver
    Try to use Process Monitor to log the detailed error produced when the installation of dw20sharedamd64.msi fails. You can download Process Monitor from the following link:
    http://technet.microsoft.com/en-us/sysinternals/bb896645
    Share with us the error captured by Process Monitor.
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • SharePoint 2013 preinstaller error - The tool was unable to install Application Server Role, Web Server (IIS) Role.

    I have been banging my head over and over searching for the fix and nothing has worked. Google used to be my friend. I am having doubts.
    Windows 2012 Server with IIS installed during the server creation using VMware Vshpere. Here is the log from the SP prep tool.
    2014-06-23 10:13:12 - Processor architecture is (9)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Common Startup
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-06-23 10:13:12 - Trying to remove the startup task if there is any.
    2014-06-23 10:13:12 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-06-23 10:13:12 - Error: Startup task doesn't exist. This is not a continuation after a restart.
    2014-06-23 10:13:12 - Locating the following command line arguments file:
    2014-06-23 10:13:12 - C:\sp2013\PrerequisiteInstaller.Arguments.txt
    2014-06-23 10:13:12 - Error: This file does not exist
    2014-06-23 10:13:12 - Details of the current operating system:
    2014-06-23 10:13:12 - Major version number of the operating system:  (6)
    2014-06-23 10:13:12 - Minor version number of the operating system:  (2)
    2014-06-23 10:13:12 - Build number of the operating system:  (0X23F0=9200)
    2014-06-23 10:13:12 - Major version number of the latest Service Pack:  (0)
    2014-06-23 10:13:12 - Minor version number of the latest Service Pack:  (0)
    2014-06-23 10:13:12 - Platform ID of the operating system:  (2)
    2014-06-23 10:13:12 - Product suites available on the operating system:  (0X110=272)
    2014-06-23 10:13:12 - Product type of the operating system: VER_NT_SERVER
    2014-06-23 10:13:12 - Product type:  (7)
    2014-06-23 10:13:12 - OS type:  (0)
    2014-06-23 10:13:12 - Configuring the application's property sheet...
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Management Framework 3.0
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - PowerShellVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 4.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft .NET Framework 4.5
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - Install
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 4.5.51641
    2014-06-23 10:13:12 - A post release .NET 4.5 is installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 6.1.7600.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-23 10:13:12 - Reading version of the following file...
    2014-06-23 10:13:12 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-23 10:13:12 - The version is...
    2014-06-23 10:13:12 - 1.0.3010.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 10.51.2500.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Server AppFabric
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - ProductVersion
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.1.2106.32
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCC
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheClient is Installed.
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCS
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheService is Installed.
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - DCA
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - CacheAdmin is Installed.
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 2.0.1230.0
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft Information Protection and Control Client
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 -
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 1.0.959.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Microsoft WCF Data Services 5.0
    2014-06-23 10:13:12 - Reading the following string value/name...
    2014-06-23 10:13:12 - Version
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-23 10:13:12 - The value is...
    2014-06-23 10:13:12 - 5.0.51212.0
    2014-06-23 10:13:12 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:12 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:12 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-23 10:13:12 - Reading the following DWORD value/name...
    2014-06-23 10:13:12 - IsInstalled
    2014-06-23 10:13:12 - from the following registry location...
    2014-06-23 10:13:12 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-23 10:13:12 - The value is (1)
    2014-06-23 10:13:12 - The prerequisite above is already installed
    2014-06-23 10:13:19 - Beginning download/installation
    2014-06-23 10:13:19 - Created thread for installer
    2014-06-23 10:13:20 - "C:\Windows\system32\ServerManagerCmd.exe" -inputpath "C:\Users\ADMINI~1\AppData\Local\Temp\2\PreA98B.tmp.XML"
    2014-06-23 10:13:20 - Error: Unable to install (2)
    2014-06-23 10:13:20 - Error: [In HRESULT format] (-2147024894)
    2014-06-23 10:13:20 - Last return code (2)
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - Flags
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - PendingFileRenameOperations
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-06-23 10:13:20 - Reading the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-06-23 10:13:20 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-06-23 10:13:20 - Last return code (2)
    2014-06-23 10:13:20 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any
    command line options.
    2014-06-23 10:13:20 - Cannot retry
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Management Framework 3.0
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - PowerShellVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 4.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft .NET Framework 4.5
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - Install
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 4.5.51641
    2014-06-23 10:13:20 - A post release .NET 4.5 is installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 6.1.7600.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-06-23 10:13:20 - Reading version of the following file...
    2014-06-23 10:13:20 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-06-23 10:13:20 - The version is...
    2014-06-23 10:13:20 - 1.0.3010.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 10.51.2500.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Server AppFabric
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - ProductVersion
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.1.2106.32
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCC
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheClient is Installed.
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCS
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheService is Installed.
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - DCA
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\AppFabric\V1.0\Features
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - CacheAdmin is Installed.
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Windows Identity Foundation (KB974405)
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 2.0.1230.0
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft Information Protection and Control Client
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 -
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 1.0.959.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Microsoft WCF Data Services 5.0
    2014-06-23 10:13:20 - Reading the following string value/name...
    2014-06-23 10:13:20 - Version
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-06-23 10:13:20 - The value is...
    2014-06-23 10:13:20 - 5.0.51212.0
    2014-06-23 10:13:20 - A higher version of the prerequisite above is already installed
    2014-06-23 10:13:20 - Check whether the following prerequisite is installed:
    2014-06-23 10:13:20 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-06-23 10:13:20 - Reading the following DWORD value/name...
    2014-06-23 10:13:20 - IsInstalled
    2014-06-23 10:13:20 - from the following registry location...
    2014-06-23 10:13:20 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-06-23 10:13:20 - The value is (1)
    2014-06-23 10:13:20 - The prerequisite above is already installed
    2014-06-23 10:16:23 - Opening log file
    2014-06-23 10:16:23 - Opened action for user
    2014-06-23 10:16:23 - C:\Users\ADMINI~1\AppData\Local\Temp\2\prerequisiteinstaller.2014.06.23-10.13.12.log

    It looks like you may have extracted the files to C:\sp2013. Can you try installing from a mounted ISO instead? Can you also validate that this is Server 2012 and not 2012 R2?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Unable to install iTunes 11.1.4.62 on Windows 8. I get Service "Apple Mobile Device" (Apple Mobile Device failed to start.  Verify that you have sufficent privileges to start system services.  I am trying to install this on my desktop not a mobile device.

    Unable to install iTunes 11.1.4.62 on windows 8.  I get
    Service "Apple mobile Device) failed to start. 
    Verify that you have sufficient privileges to start system services.
    I am trying to install it on my desktop.  I am also in Administrator mode.  My iTunes stopped working when I was notified that there was a new version of iTunes and would I like to download it. I said yes as always and it was unable to finish the update because of a
    runtime Error!
    Program: C:\program Files (x86)\iTunes\iTunes.exe
    R6034
    An application has made an attempt to load the C runtime library incorrectly.
    Please contace the application's suport team for more information.
    My iTunes stopped working at this time.  I thought I could delete iTunes and start over. This tactic did not work.
    Can anyone make sense of what I am saying and help me to get my iTunes back again?

    Try a more recent version of my advice. The "for older video cards version" may work when the default version doesn't.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Unable to Install Flash Player 11.7.700.169 on OSX 10.7.5

    I have tried everything I can think of to install your new version. On Sunday, I downloaded the 11.7.700.169 installation .dmg. When I double clicked on the Install Adobe Flash Player, it reported:
    Creating image
    Downloading image
    Installing Flash Player
    I got prompted for my password, and responded. Then it reports a "General Installation Failure" and stops.
    I have rebooted, run Disk Utility to repair permissions, uninstalled Flash Player, and eventually installed a downlevel version of Flash Player. I have tried to enter this message using Firefox, but your web site goes into a loop redirecting to https://www.adobe.com/cfusion/entitlement/index.cfm?e=ca&returnurl=http://forums.adobe.com /adobe_login&loc=en
    I am including the console log from my latest installation attempt.
    Apr 23 23:26:40 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:26:40 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:26:43 gull mdworker[366]: (Error) ImportPluginLoading: Couldn't load plugin 'file://localhost/Library/Spotlight/iWeb.mdimporter/'
    Apr 23 23:26:44 gull mdworker[367]: (Error) ImportPluginLoading: Couldn't load plugin 'file://localhost/Library/Spotlight/iWeb.mdimporter/'
    Apr 23 23:26:55 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:26:55 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:27:03 gull [0x0-0x7007].org.mozilla.firefox[170]: no loadgroup notificationCallbacks for http://sync.xmarks.com/sync/bookmarks/getchanges
    Apr 23 23:27:10: --- last message repeated 1 time ---
    Apr 23 23:27:10 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:27:10 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:27:24 gull [0x0-0x7007].org.mozilla.firefox[170]: no loadgroup notificationCallbacks for http://cloud.xmarks.com/cloud/history/write
    Apr 23 23:27:25 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:27:25 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:27:25 gull [0x0-0x7007].org.mozilla.firefox[170]: no loadgroup notificationCallbacks for http://cloud.xmarks.com/cloud/history/write
    Apr 23 23:27:25 gull [0x0-0x7007].org.mozilla.firefox[170]: no loadgroup notificationCallbacks for http://cloud.xmarks.com/cloud/history/read
    Apr 23 23:27:25: --- last message repeated 1 time ---
    Apr 23 23:27:25 gull [0x0-0x7007].org.mozilla.firefox[170]: no loadgroup notificationCallbacks for http://cloud.xmarks.com/cloud/tabs/write
    Apr 23 23:27:40: --- last message repeated 1 time ---
    Apr 23 23:27:40 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:27:40 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:27:42 gull mDNSResponder[15]: uDNS_UpdateRecord: Requested update of record gull\.pri._odisk._tcp.pri. type 16, in erroneous state 3
    Apr 23 23:27:42 gull mDNSResponder[15]: update_record: Error -65549 for   54 gull\.pri._odisk._tcp.pri. TXT sys=waMA=00:1D:4F:45:77:44,adVF=0x200,adDT=0x3,adCC=1
    Apr 23 23:27:43 gull DiskImages UI Agent[410]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    Apr 23 23:27:43 gull [0x0-0x2f02f].com.apple.DiskImageMounter[406]: 2013-04-23 23:27:43.525 DiskImages UI Agent[410:707] *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    Apr 23 23:27:55 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:27:55 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:28:08 gull authexec[428]: executing /bin/sh
    Apr 23 23:28:08 gull com.apple.launchd.peruser.501[154] ([0x0-0x32032].com.solidstatenetworks.awkhost[421]): Exited: Killed: 9
    Apr 23 23:28:10 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:28:10 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:28:13 gull parentalcontrolsd[439]: _FCXMIGAppCanLaunch [1952:] -- *** couldn't find tracker for uid 0
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x295d0009 (err=-2580)
    Apr 23 23:28:15: --- last message repeated 1 time ---
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0x9 InContext 0x1b1a80 in {33.000000,21.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 27b70003, actual seed is b03e0c6
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x27b70003 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 27b70003, actual seed is b03e0c6
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x27b70003 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0x3 InContext 0x1b1a80 in {33.000000,42.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 20a30006, actual seed is 71f32454
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x20a30006 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 20a30006, actual seed is 71f32454
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x20a30006 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0x6 InContext 0x1b1a80 in {33.000000,63.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 24580005, actual seed is 54e49eb4
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x24580005 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 24580005, actual seed is 54e49eb4
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x24580005 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0x5 InContext 0x1b1a80 in {33.000000,84.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 295a0007, actual seed is 4516dde9
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x295a0007 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 295a0007, actual seed is 4516dde9
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x295a0007 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0x7 InContext 0x1b1a80 in {33.000000,105.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 200d0002, actual seed is 4353d0cd
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x200d0002 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 200d0002, actual seed is 4353d0cd
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x200d0002 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0x2 InContext 0x1b1a80 in {33.000000,126.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 2d320001, actual seed is 79838cb2
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x2d320001 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 2d320001, actual seed is 79838cb2
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x2d320001 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0x1 InContext 0x1b1a80 in {33.000000,147.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x2105000a (err=-2580)
    Apr 23 23:28:15: --- last message repeated 1 time ---
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0xa InContext 0x1b1a80 in {33.000000,168.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x21250008 (err=-2580)
    Apr 23 23:28:15: --- last message repeated 1 time ---
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0x8 InContext 0x1b1a80 in {33.000000,189.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 2a310004, actual seed is 189a769b
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x2a310004 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 2a310004, actual seed is 189a769b
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x2a310004 (err=-2580)
    Apr 23 23:28:15 gull Install Adobe Flash Player[429]: PlotIconRef 0x4 InContext 0x1b1a80 in {33.000000,210.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 24580005, actual seed is 54e49eb4
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x24580005 (err=-2580)
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 24580005, actual seed is 54e49eb4
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x24580005 (err=-2580)
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: PlotIconRef 0x5 InContext 0x1b1a80 in {33.000000,84.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 24580005, actual seed is 54e49eb4
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x24580005 (err=-2580)
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 24580005, actual seed is 54e49eb4
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x24580005 (err=-2580)
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: PlotIconRef 0x5 InContext 0x1b1a80 in {33.000000,84.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 295a0007, actual seed is 4516dde9
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x295a0007 (err=-2580)
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 295a0007, actual seed is 4516dde9
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x295a0007 (err=-2580)
    Apr 23 23:28:16 gull Install Adobe Flash Player[429]: PlotIconRef 0x7 InContext 0x1b1a80 in {33.000000,105.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 20a30006, actual seed is 71f32454
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x20a30006 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 20a30006, actual seed is 71f32454
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x20a30006 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: PlotIconRef 0x6 InContext 0x1b1a80 in {33.000000,63.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 24580005, actual seed is 54e49eb4
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x24580005 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 24580005, actual seed is 54e49eb4
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x24580005 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: PlotIconRef 0x5 InContext 0x1b1a80 in {33.000000,84.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 295a0007, actual seed is 4516dde9
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x295a0007 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 295a0007, actual seed is 4516dde9
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x295a0007 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: PlotIconRef 0x7 InContext 0x1b1a80 in {33.000000,105.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 20a30006, actual seed is 71f32454
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x20a30006 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 20a30006, actual seed is 71f32454
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x20a30006 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: PlotIconRef 0x6 InContext 0x1b1a80 in {33.000000,63.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 20a30006, actual seed is 71f32454
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x20a30006 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 20a30006, actual seed is 71f32454
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: _GetISImageRefFromIconRefInternal: could not retain image ref 0x20a30006 (err=-2580)
    Apr 23 23:28:20 gull Install Adobe Flash Player[429]: PlotIconRef 0x6 InContext 0x1b1a80 in {33.000000,63.000000,16.000000,16.000000}, inAlign:5, inTransform:0, inFlags:0 failed. Invalid image ref (err=-2582)
    Apr 23 23:28:25 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:28:25 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:28:40 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:28:40 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:28:44 gull mDNSResponder[15]: uDNS_UpdateRecord: Requested update of record gull\.pri._odisk._tcp.pri. type 16, in erroneous state 3
    Apr 23 23:28:44 gull mDNSResponder[15]: update_record: Error -65549 for   54 gull\.pri._odisk._tcp.pri. TXT sys=waMA=00:1D:4F:45:77:44,adVF=0x200,adDT=0x3,adCC=1
    Apr 23 23:28:44 gull KernelEventAgent[75]: tid 00000000 received event(s) VQ_LOWDISK, VQ_VERYLOWDISK (516)
    Apr 23 23:28:44 gull mds[71]: (/)(Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI*):Throttling inefficient file system query
    Apr 23 23:28:49 gull authexec[469]: executing /bin/sleep
    Apr 23 23:28:49 gull authexec[470]: executing /usr/sbin/chown
    Apr 23 23:28:49 gull authexec[471]: executing /bin/chmod
    Apr 23 23:28:49 gull authexec[472]: executing /bin/chmod
    Apr 23 23:28:49 gull Adobe Flash Player Install Manager[464]: Unable to launch FPInstallHelper. Error = 'launch path not accessible'
    Apr 23 23:28:49 gull [0x0-0x32032].com.solidstatenetworks.awkhost[0]: 2013-04-23 23:28:49.780 Adobe Flash Player Install Manager[464:707] Unable to launch FPInstallHelper. Error = 'launch path not accessible'
    Apr 23 23:28:49 gull authexec[473]: executing /bin/chmod
    Apr 23 23:28:49 gull authexec[474]: executing /bin/rm
    Apr 23 23:28:50 gull Adobe Flash Player Install Manager[464]: Install failed with error code: 30.
    Apr 23 23:28:50 gull [0x0-0x32032].com.solidstatenetworks.awkhost[0]: 2013-04-23 23:28:50.119 Adobe Flash Player Install Manager[464:707] Install failed with error code: 30.
    Apr 23 23:28:55 gull sandboxd[463] ([71]): mds(71) deny file-write-data /dev/dtracehelper
    Apr 23 23:28:55 gull acvpnagent[94]: Function: OnSocketReadComplete File: IP/DNSRequest.cpp Line: 1022 Timeout (per-request) while trying to resolve 105.224.174.146.in-addr.arpa via DNS server 192.168.0.1 (timeout interval = 10 sec)
    Apr 23 23:28:55 gull acvpnagent[94]: Function: TestNetEnv File: NetEnvironment.cpp Line: 334 No DNS connectivity. Retesting connectivity to the secure gateway in 5 seconds.
    Apr 23 23:29:01 gull diskarbitrationd[19]: mdworker [367]:28959 not responding.
    Apr 23 23:29:01 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 2d320001, actual seed is 79838cb2
    Apr 23 23:29:01 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 200d0002, actual seed is 4353d0cd
    Apr 23 23:29:01 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 27b70003, actual seed is b03e0c6
    Apr 23 23:29:01 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 2a310004, actual seed is 189a769b
    Apr 23 23:29:01 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 24580005, actual seed is 54e49eb4
    Apr 23 23:29:01 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 20a30006, actual seed is 71f32454
    Apr 23 23:29:01 gull Install Adobe Flash Player[429]: ISGetIconFamilyFromStorage: seed mismatch for 295a0007, actual seed is 4516dde9

    The offline installer solved the problem for me, but still...
    Il giorno 28/lug/2013, alle ore 15:39, splodus1 <[email protected]> ha scritto:
    Re: Unable to Install Flash Player 11.7.700.169 on OSX 10.7.5
    created by splodus1 in Installing Flash Player - View the full discussion
    This turned out to be a permissions issue for me, your milage may vary. Note: This could be dangerous, you could always backup your file perms and put them back once flash is installed.
    1. Open console on your mac, go to the system.log section
    2. Attempt to install, after it downloads and fails use the "String Matching" at the top and type in "flash"
         You should get a section that looks like this:
    Jul 28 08:18:07 z.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/usr/libexec/security_authtrampoline' for authorization created by '/Volumes/539481aadb965dc489df8086d78bcd5c197e5645/Install Adobe Flash Player.app' (3,0)
    Jul 28 08:18:07 z.local authexec[1507]: executing /bin/chmod
    Jul 28 08:18:07 z.local com.apple.SecurityServer[27]: Succeeded authorizing right 'system.privilege.admin' by client '/usr/libexec/security_authtrampoline' for authorization created by '/Volumes/539481aadb965dc489df8086d78bcd5c197e5645/Install Adobe Flash Player.app' (3,0)
    Jul 28 08:18:07 z.local authexec[1508]: executing /bin/chmod
    Jul 28 08:18:07 z.local Adobe Flash Player Install Manager[1504]: Unable to launch FPInstallHelper. Error = 'launch path not accessible'
    Jul 28 08:18:07 z.local Adobe Flash Player Install Manager[1504]:
        Attributes for '/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/FPInstallHelper':
            NSFileCreationDate = "2013-06-21 22:45:59 +0000";
            NSFileExtensionHidden = 0;
    Notice how it says "Launch path not accessible" and gives a directory of '/var/folders/zz/zyxvpxvq6csfxvn_n0000000000000/T/FPInstallHelper'?
    chmod -R 777 * the contents of the n0000000000000/ directory and attempt to reinstall, this fixed it for me.
    Here's a tree:
    ├──   zyxvpxvq6csfxvn_n0000000000000
    │   ├──   0
    │   │   └──   com.apple.revisiond.temp
    │   ├──   C
    │   │   ├──   -Version\ 10.8\ (Build\ 12A269)
    │   │   ├──   -Version\ 10.8.3\ (Build\ 12D78)
    │   │   ├──   -Version\ 10.8.4\ (Build\ 12E55)
    │   │   ├──   com.apple.LaunchServices-0360.csstore
    │   │   ├──   com.apple.LaunchServices-0370.csstore
    │   │   ├──   com.apple.apsd
    │   │   │   └──   sandbox-cache.db
    │   │   ├──   com.apple.revisiond.private_temp
    │   │   ├──   com.apple.sandboxd
    │   │   ├──   com.apple.scriptmanager.le.cache
    │   │   └──   sandbox-cache.db
    │   ├──   Cleanup\ At\ Startup
    │   │   ├──   PKInstallSandboxManager
    │   │   └──   com.apple.backupd.filechecklist
    │   └──   T
    │       ├──   TemporaryItems
    │       ├──   com.apple.apsd
    │       └──   hsperfdata_root
    This could be dangerous, I'm not sure with the repercussions are. However, I do know I can use flash now. Obviously, if you aren't savy in terminal commands you shouln't be running them. I take no responsibility for any irresponsible actions, know what this means before you do it.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5545033#5545033
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5545033#5545033
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5545033#5545033. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Installing Flash Player by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Unable to install Adobe Air on MacBook Pro running OSX 10.7.2

    I have been trying for a while today to install the adobe air product on my machine so I'm able to run the TweetDeck software.  Unfortunately no matter what I do, the installation seems to fail.  I've manually uninstalled old files.  I've run suggested apple scripts suggested in other threads.  I've repaired local disk permissions.  You name it, I think I've tried it.  Any assistance would be appreciated.  I've included the console activity log for the last hour or so of trying to get it working. Thanks, Stephen
    10/13/11 1:33:27.067 PM ReportCrash: Saved crash report for Adobe AIR Application Installer[443] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Application Installer_2011-10-13-133327_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:37:58.710 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:37:58.710 PM Adobe AIR Installer: Commandline is: -psn_0_426088
    10/13/11 1:37:58.710 PM Adobe AIR Installer: Installed runtime (3.0.0.4080) located at /Library/Frameworks/Adobe AIR.framework
    10/13/11 1:37:59.938 PM com.apple.launchd.peruser.501: ([0x0-0x68068].com.adobe.air.Installer[452]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:38:00.144 PM ReportCrash: Saved crash report for Adobe AIR Installer[452] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-133800_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:41:08.400 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:41:08.400 PM Adobe AIR Installer: Commandline is: -psn_0_491640
    10/13/11 1:41:08.400 PM Adobe AIR Installer: Installed runtime (3.0.0.4080) located at /Library/Frameworks/Adobe AIR.framework
    10/13/11 1:41:10.111 PM com.apple.launchd.peruser.501: ([0x0-0x78078].com.adobe.air.Installer[518]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:41:10.332 PM ReportCrash: Saved crash report for Adobe AIR Installer[518] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-134110_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:42:21.142 PM automountd: parse_entry: bad key in map auto_home: Adobe AIR Installer.app
    10/13/11 1:42:34.771 PM Finder: Terminate AirDrop P2P link
    10/13/11 1:45:07.006 PM sudo:    Steve : TTY=ttys000 ; PWD=/Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS ; USER=root ; COMMAND=./Adobe AIR Installer
    10/13/11 1:45:10.494 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:45:10.494 PM Adobe AIR Installer: Commandline is:
    10/13/11 1:45:10.494 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 1:45:12.183 PM ReportCrash: Saved crash report for Adobe AIR Installer[578] version ??? (???) to /Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-134512_localhost.crash
    10/13/11 1:45:40.900 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:45:40.900 PM Adobe AIR Installer: Commandline is: -psn_0_557192
    10/13/11 1:45:40.900 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 1:45:42.164 PM com.apple.launchd.peruser.501: ([0x0-0x88088].com.adobe.air.Installer[584]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:45:42.330 PM ReportCrash: Saved crash report for Adobe AIR Installer[584] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-134542_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:56:17.999 PM UserEventAgent: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12295
    10/13/11 1:56:20.000 PM kernel: AirPort_Brcm4331: Ethernet address e4:ce:8f:41:c1:7c
    10/13/11 1:56:32.049 PM airportd: _processDLILEvent: en1 attached (down)
    10/13/11 1:56:35.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/13/11 1:56:39.000 PM kernel: AirPort: Link Up on en1
    10/13/11 1:56:40.000 PM kernel: AirPort: RSN handshake complete on en1
    10/13/11 1:56:40.963 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 1:56:41.233 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 1:56:45.862 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 1:57:48.677 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 1:57:48.677 PM Adobe AIR Installer: Commandline is: -psn_0_98328
    10/13/11 1:57:48.677 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 1:57:55.626 PM com.apple.launchd.peruser.501: ([0x0-0x18018].com.adobe.air.Installer[200]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 1:57:56.255 PM ReportCrash: Saved crash report for Adobe AIR Installer[200] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-135756_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 1:58:14.775 PM com.apple.launchd.peruser.501: ([0x0-0x1b01b].com.adobe.air.ApplicationInstaller[209]) Exited with code: 4
    10/13/11 2:01:00.067 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:01:00.067 PM Adobe AIR Installer: Commandline is: -uninstall
    10/13/11 2:01:00.067 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:01:01.520 PM ReportCrash: Saved crash report for Adobe AIR Installer[549] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-140101_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:04:15.960 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:04:15.960 PM Adobe AIR Installer: Commandline is: -playerVersion=11,0,1,152 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -x1 http://downloads.tweetdeck.com/TweetDeck_0_38.2.air
    10/13/11 2:04:15.960 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:04:17.375 PM ReportCrash: Saved crash report for Adobe AIR Installer[604] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-140417_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:04:17.378 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-12-160551_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:05:19.270 PM com.apple.launchd.peruser.501: ([0x0-0x38038].com.adobe.air.ApplicationInstaller[875]) Exited with code: 4
    10/13/11 2:09:36.467 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:09:36.468 PM Adobe AIR Installer: Commandline is: -psn_0_266305
    10/13/11 2:09:36.468 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:09:37.801 PM com.apple.launchd.peruser.501: ([0x0-0x41041].com.adobe.air.Installer[909]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:09:38.016 PM ReportCrash: Saved crash report for Adobe AIR Installer[909] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-140938_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:09:38.019 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-12-160607_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:10:04.777 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:10:04.777 PM Adobe AIR Installer: Commandline is: -playerVersion=11,0,1,152 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -x1 http://downloads.tweetdeck.com/TweetDeck_0_38.2.air
    10/13/11 2:10:04.777 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:10:06.144 PM ReportCrash: Saved crash report for Adobe AIR Installer[916] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-141006_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:10:06.148 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-12-160631_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:15:05.254 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:15:05.254 PM Adobe AIR Installer: Commandline is: -psn_0_319566
    10/13/11 2:15:05.254 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:15:05.936 PM Adobe AIR Installer: -[__NSCFType backingScaleFactor]: unrecognized selector sent to instance 0x14f160
    10/13/11 2:15:33.948 PM com.apple.launchd.peruser.501: ([0x0-0x4e04e].com.adobe.air.Installer[942]) Job appears to have crashed: Bus error: 10
    10/13/11 2:15:34.108 PM ReportCrash: Saved crash report for Adobe AIR Installer[942] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-141534_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:15:34.111 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-124814_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:16:58.472 PM UserEventAgent: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12295
    10/13/11 2:17:01.000 PM kernel: AirPort_Brcm4331: Ethernet address e4:ce:8f:41:c1:7c
    10/13/11 2:17:11.933 PM airportd: _processDLILEvent: en1 attached (down)
    10/13/11 2:17:15.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/13/11 2:17:18.000 PM kernel: AirPort: Link Up on en1
    10/13/11 2:17:18.000 PM kernel: AirPort: RSN handshake complete on en1
    10/13/11 2:17:22.468 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:18:55.979 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:18:55.980 PM Adobe AIR Installer: Commandline is: -psn_0_114716
    10/13/11 2:18:55.980 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:19:03.180 PM com.apple.launchd.peruser.501: ([0x0-0x1c01c].com.adobe.air.Installer[213]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:19:03.740 PM ReportCrash: Saved crash report for Adobe AIR Installer[213] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-141903_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:19:03.869 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-124844_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:22:07.124 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:22:07.124 PM Adobe AIR Installer: Commandline is: -psn_0_143395
    10/13/11 2:22:07.124 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:22:08.402 PM com.apple.launchd.peruser.501: ([0x0-0x23023].com.adobe.air.Installer[265]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:22:08.577 PM ReportCrash: Saved crash report for Adobe AIR Installer[265] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142208_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:22:08.580 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-125045_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:23:51.786 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:23:51.786 PM Adobe AIR Installer: Commandline is: -psn_0_167977
    10/13/11 2:23:51.786 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:23:53.029 PM com.apple.launchd.peruser.501: ([0x0-0x29029].com.adobe.air.Installer[301]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:23:53.194 PM ReportCrash: Saved crash report for Adobe AIR Installer[301] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142353_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:23:53.197 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-131826_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:25:38.323 PM sudo:    Steve : TTY=ttys000 ; PWD=/Users/Steve ; USER=root ; COMMAND=/Volumes/Adobe AIR/Adobe AIR Installer.app/Contents/MacOS/Adobe AIR Installer -silent -eulaAccepted
    10/13/11 2:25:38.908 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:25:38.908 PM Adobe AIR Installer: Commandline is: -silent -eulaAccepted
    10/13/11 2:25:38.908 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:25:40.304 PM ReportCrash: Saved crash report for Adobe AIR Installer[315] version ??? (???) to /Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142540_localhost.crash
    10/13/11 2:26:06.354 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:26:06.354 PM Adobe AIR Installer: Commandline is: -psn_0_184365
    10/13/11 2:26:06.354 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:26:07.682 PM com.apple.launchd.peruser.501: ([0x0-0x2d02d].com.adobe.air.Installer[322]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:26:07.841 PM ReportCrash: Saved crash report for Adobe AIR Installer[322] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142607_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:26:07.845 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-132020_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:26:56.590 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:26:56.590 PM Adobe AIR Installer: Commandline is: -psn_0_225335
    10/13/11 2:26:56.590 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:26:57.864 PM com.apple.launchd.peruser.501: ([0x0-0x37037].com.adobe.air.Installer[349]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:26:57.989 PM ReportCrash: Saved crash report for Adobe AIR Installer[349] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-142657_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:26:57.993 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-132404_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:29:01.315 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:29:44.576 PM UserEventAgent: WirelessAirPortDeviceNameCopy(): no BSD interface name found for object 12295
    10/13/11 2:29:48.000 PM kernel: AirPort_Brcm4331: Ethernet address e4:ce:8f:41:c1:7c
    10/13/11 2:30:01.170 PM airportd: _processDLILEvent: en1 attached (down)
    10/13/11 2:30:01.000 PM kernel: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    10/13/11 2:30:05.000 PM kernel: AirPort: Link Up on en1
    10/13/11 2:30:05.000 PM kernel: AirPort: RSN handshake complete on en1
    10/13/11 2:30:07.196 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:30:09.005 PM airportd: _doAutoJoin: Already associated to “MyNet”. Bailing on auto-join.
    10/13/11 2:33:54.896 PM Adobe AIR Installer: Runtime Installer begin with version 3.0.0.4080 on Mac OS 10.7.2 x86
    10/13/11 2:33:54.896 PM Adobe AIR Installer: Commandline is: -psn_0_110619
    10/13/11 2:33:54.896 PM Adobe AIR Installer: No installed runtime detected
    10/13/11 2:34:03.677 PM com.apple.launchd.peruser.501: ([0x0-0x1b01b].com.adobe.air.Installer[216]) Job appears to have crashed: Segmentation fault: 11
    10/13/11 2:34:04.337 PM ReportCrash: Saved crash report for Adobe AIR Installer[216] version 3.0 (3.0.0.4080) to /Users/Steve/Library/Logs/DiagnosticReports/Adobe AIR Installer_2011-10-13-143404_Stephen-Wrights-MacBook-Pro.crash
    10/13/11 2:34:04.480 PM ReportCrash: Removing excessive log: file://localhost/Users/Steve/Library/Logs/DiagnosticReports/Adobe%20AIR%20Installer_2011- 10-13-132448_Stephen-Wrights-MacBook-Pro.crash

    Robert.Delfs wrote:
    1.  Brand new MacBook Pro 2.5 GHz Intel Core i7 machine with two graphics chips (Intel HD Graphics 3000+ AMD Radeon HD 6770M), with   OS X 10.7.2 Lion (Build 11C74)  pre-installed. 
    2.  Attempting to download latest version of Photoshop CS5 fails.
         a.  Downloading CS5 from Adobe.com requires pre-installing Adobe Download Assistant. 
         b.  Adobe Download Assistant can be downloaded but cannot be installed because it requires pre-installing Adobe AIR. 
         c.  Adobe AIR can be downloaded but won't install.  Sometimes it issues error msg saying it requires most recent version of Adobe AIR, other times there is no screen activity after attempting to install from <AdobeAir.dmg>.
    2.  There is no option to turn off automatic graphics switching in Energy Saver System Preferences on this computer, so that suggested solution does not work.
    3.   Turning off (unchecking) "Automatically reduce brightness before display goes to sleep" has no effect — still unable to install AIR.
    This is a nightmare.  The reason I bought this computer rather than a less expensive model was to run Lightroom (which did install OK) and Photoshop CS5.  HELP!
    Robert
    My suggestion would be to reinstall Lion from zero. No update.
    I did that, and now I can install / uninstall Air without problems.
    The installation takes about 20 minutes...

  • INST-07408: Unable to install or configure the product on a 32-bit JVM on a 64-bit machine. Make sure to install and configure the product in supported modes.

    Hi there, i have an issue installing oracle forms and reports. its throwing this error"INST-07408: Unable to install or configure the product on a 32-bit JVM on a 64-bit machine. Make sure to install and configure the product in supported modes." on step 5. I have jdk 64bit installed, weblogic server was installed successfully but iam getting stuck somehow.
    Below are details of my pc.
    OS Name    Microsoft Windows 7 Professional
    Version    6.1.7601 Service Pack 1 Build 7601
    Other OS Description     Not Available
    OS Manufacturer    Microsoft Corporation
    System Name   ...........-HP
    System Manufacturer    Hewlett-Packard
    System Model    HP ProBook 4530s
    System Type    x64-based PC
    Processor    Intel(R) Core(TM) i5-2450M CPU @ 2.50GHz, 2501 Mhz, 2 Core(s), 4 Logical Processor(s)
    BIOS Version/Date    Hewlett-Packard 68SRR Ver. F.23, 09/03/2012
    SMBIOS Version    2.6
    Windows Directory    C:\windows
    System Directory    C:\windows\system32
    Boot Device    \Device\HarddiskVolume1
    Locale    United Kingdom
    Hardware Abstraction Layer    Version = "6.1.7601.17514"
    User Name    ...........-HP\................
    Time Zone    South Africa Standard Time
    Installed Physical Memory (RAM)    4.00 GB
    Total Physical Memory    3.94 GB
    Available Physical Memory    1.00 GB
    Total Virtual Memory    7.87 GB
    Available Virtual Memory    1.25 GB
    Page File Space    3.94 GB
    Page File    C:\pagefile.sys

    To clarify further....  It is important to note that Forms/Repors 11.1.2.x software (including WLS and JDK) must be of the same archetecture as the machine.  In other words, you cannot use the 32bit Forms/Reports 11.1.2 software on 64bit Windows.  If you are using a 64bit OS, you must install the 64bit software.  Again, this would include Forms/Reports, WLS, and JDK

  • Unable to install SQL 2005 Service Pack 3 (Unable to install Windows Installer MSI file)

    I'm unable to install SQL 2005 Service Pack 3. This results in the following error message: Unable to install Windows Installer MSI file.
    Could someone please help me. Thanks in advance!
    === Verbose logging started: 3-4-2009  9:33:00  Build type: SHIP UNICODE 4.05.6001.00  Calling process: d:\5ddfa356349ddf2e676c336d95c5\hotfix.exe ===
    MSI (c) (E0:88) [09:33:00:404]: Resetting cached policy values
    MSI (c) (E0:88) [09:33:00:404]: Machine policy value 'Debug' is 0
    MSI (c) (E0:88) [09:33:00:404]: ******* RunEngine:
               ******* Product: C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Cache\SQLSupport\x86\1033\SqlSupport.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (E0:88) [09:33:00:404]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (E0:88) [09:33:00:404]: Grabbed execution mutex.
    MSI (c) (E0:88) [09:33:00:419]: Cloaking enabled.
    MSI (c) (E0:88) [09:33:00:419]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (E0:88) [09:33:00:419]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (28:28) [09:33:01:747]: Running installation inside multi-package transaction C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Cache\SQLSupport\x86\1033\SqlSupport.msi
    MSI (s) (28:28) [09:33:01:747]: Grabbed execution mutex.
    MSI (s) (28:CC) [09:33:02:029]: Resetting cached policy values
    MSI (s) (28:CC) [09:33:02:029]: Machine policy value 'Debug' is 0
    MSI (s) (28:CC) [09:33:02:029]: ******* RunEngine:
               ******* Product: C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Cache\SQLSupport\x86\1033\SqlSupport.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (28:CC) [09:33:02:685]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (28:CC) [09:33:03:450]: File will have security applied from OpCode.
    MSI (s) (28:CC) [09:33:03:841]: SOFTWARE RESTRICTION POLICY: Verifying package --> 'C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Cache\SQLSupport\x86\1033\SqlSupport.msi' against software restriction policy
    MSI (s) (28:CC) [09:33:03:841]: SOFTWARE RESTRICTION POLICY: C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Cache\SQLSupport\x86\1033\SqlSupport.msi has a digital signature
    MSI (s) (28:CC) [09:33:04:841]: SOFTWARE RESTRICTION POLICY: C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Cache\SQLSupport\x86\1033\SqlSupport.msi is permitted to run at the 'unrestricted' authorization level.
    MSI (s) (28:CC) [09:33:04:888]: End dialog not enabled
    MSI (s) (28:CC) [09:33:04:888]: Original package ==> C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Cache\SQLSupport\x86\1033\SqlSupport.msi
    MSI (s) (28:CC) [09:33:04:888]: Package we're running from ==> C:\WINDOWS\Installer\3d3a713.msi
    MSI (s) (28:CC) [09:33:05:497]: APPCOMPAT: looking for appcompat database entry with ProductCode '{53F5C3EE-05ED-4830-994B-50B2F0D50FCE}'.
    MSI (s) (28:CC) [09:33:05:497]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (28:CC) [09:33:05:685]: MSCOREE not loaded loading copy from system32
    MSI (s) (28:CC) [09:33:05:825]: Note: 1: 2203 2: C:\WINDOWS\Installer\2f1994e.msi 3: -2147287038
    MSI (s) (28:CC) [09:33:05:825]: Opening existing patch 'C:\WINDOWS\Installer\e6ba0.msp'.
    MSI (s) (28:CC) [09:33:05:825]: Note: 1: 2203 2: C:\WINDOWS\Installer\e6ba0.msp 3: -2147287038
    MSI (s) (28:CC) [09:33:05:825]: Couldn't find local patch 'C:\WINDOWS\Installer\e6ba0.msp'. Looking for it at its source.
    MSI (s) (28:CC) [09:33:05:825]: Resolving Patch source.
    MSI (s) (28:CC) [09:33:05:825]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (28:CC) [09:33:05:825]: User policy value 'DisableMedia' is 0
    MSI (s) (28:CC) [09:33:05:825]: Machine policy value 'AllowLockdownMedia' is 0
    MSI (s) (28:CC) [09:33:05:825]: SOURCEMGMT: Media enabled only if package is safe.
    MSI (s) (28:CC) [09:33:05:825]: SOURCEMGMT: Looking for sourcelist for product {EE92F683-5F5C-4970-BB0B-9AC591B60268}
    MSI (s) (28:CC) [09:33:05:825]: SOURCEMGMT: Adding {EE92F683-5F5C-4970-BB0B-9AC591B60268}; to potential sourcelist list (pcode;disk;relpath).
    MSI (s) (28:CC) [09:33:05:825]: SOURCEMGMT: Now checking product {EE92F683-5F5C-4970-BB0B-9AC591B60268}
    MSI (s) (28:CC) [09:33:05:825]: SOURCEMGMT: Media is enabled for product.
    MSI (s) (28:CC) [09:33:05:825]: SOURCEMGMT: Attempting to use LastUsedSource from source list.
    MSI (s) (28:CC) [09:33:05:825]: SOURCEMGMT: Trying source \\NF04\d$\3db7739bf5c1bb9c50076c418420\HotFixSqlSupport\Files\.
    MSI (s) (28:CC) [09:33:06:607]: Note: 1: 2203 2: \\NF04\d$\3db7739bf5c1bb9c50076c418420\HotFixSqlSupport\Files\SqlSupport.msp 3: -2147287037
    MSI (s) (28:CC) [09:33:06:607]: SOURCEMGMT: Source is invalid due to missing/inaccessible package.
    MSI (s) (28:CC) [09:33:06:607]: Note: 1: 1706 2: -2147483647 3: SqlSupport.msp
    MSI (s) (28:CC) [09:33:06:607]: SOURCEMGMT: Processing net source list.
    MSI (s) (28:CC) [09:33:06:607]: Note: 1: 1706 2: -2147483647 3: SqlSupport.msp
    MSI (s) (28:CC) [09:33:06:607]: SOURCEMGMT: Processing media source list.
    MSI (s) (28:CC) [09:33:07:654]: SOURCEMGMT: Resolved source to: 'SqlSupport.msp'
    MSI (s) (28:CC) [09:33:37:732]: Note: 1: 1314 2: SqlSupport.msp
    MSI (s) (28:CC) [09:33:37:732]: Unable to create a temp copy of patch 'SqlSupport.msp'.
    MSI (s) (28:CC) [09:33:37:732]: Searching provided command line patches for patch code {EE92F683-5F5C-4970-BB0B-9AC591B60268}
    MSI (s) (28:CC) [09:33:37:763]: Note: 1: 1708
    MSI (s) (28:CC) [09:33:37:763]: Product: Microsoft SQL Server Setup Support Files (English) -- Installation failed.
    MSI (s) (28:CC) [09:33:37:763]: Windows Installer installed the product. Product Name: Microsoft SQL Server Setup Support Files (English). Product Version: 9.00.4035.00. Product Language: 1033. Installation success or error status: 1635.
    MSI (s) (28:CC) [09:33:37:779]: MainEngineThread is returning 1635
    MSI (s) (28:28) [09:33:37:888]: No System Restore sequence number for this installation.
    This patch package could not be opened.  Verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer patch package.
    C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Cache\SQLSupport\x86\1033\SqlSupport.msi
    MSI (s) (28:28) [09:33:37:888]: User policy value 'DisableRollback' is 0
    MSI (s) (28:28) [09:33:37:888]: Machine policy value 'DisableRollback' is 0
    MSI (s) (28:28) [09:33:37:888]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (28:28) [09:33:37:904]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (28:28) [09:33:37:919]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (28:28) [09:33:37:919]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3: 2
    MSI (s) (28:28) [09:33:37:919]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\InProgress 3: 2
    MSI (s) (28:28) [09:33:37:919]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (s) (28:28) [09:33:37:919]: Restoring environment variables
    MSI (c) (E0:88) [09:33:37:935]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (E0:88) [09:33:37:935]: MainEngineThread is returning 1635
    === Verbose logging stopped: 3-4-2009  9:33:37 ===

    This post should definitely help you
    http://blogs.msdn.com/sqlserverfaq/archive/2009/01/30/part-1-sql-server-2005-patch-fails-to-install-with-an-error-unable-to-install-windows-installer-msp-file.aspx?CommentPosted=true
    Feroz
    Mark as Answer if it helps. This posting is provided "AS IS" with no warranties and confers no rights.

  • In trying to install a Flash update on my Mac (version 10.7.5), I'm getting an "unable to install metafile" message after initialization starts (at the 25% point)-regardless of the site from which I download the installation folder.

    In trying to install a Flash update on my Mac (version 10.7.5), I'm getting an "unable to install metafile" message after initialization starts (at the 25% point)—regardless of the site from which I download the installation folder.

    Hello everybody, good news: after upgrading to Mountain Lion 10.8.5 I've been able to run the installer and all went fine.
    Mountain Lion allows user to force execution through the context-menu (CTRL-click) Open command and it does work, just that simple.
    So my advice is: if you want to install or re-install Flash Builder 4.6 on a Mac with Lion installed, upgrade to Mountain Lion or better to avoid problems.
    Apple introduced some (not all) Gatekeeper functionalities in 10.7.3 and following, but apparently you need a full-fledged 10.8 to have also what you need to circumvent a Revoked Certificate error.
    Since usually OS X has auto updating active, if you are running Lion you end up with 10.7.5 and won't install FB46. If you manage somehow to hold 10.7.2 I suppose you should be able to install FB46, sincerely I didn't check it out. Anyway it's simpler and safer to move on to 10.8.x.
    Bye

  • Nokia C7 "Unable to install OVI Store"

    Hi All,
    Here is my experience from NOKIA C-7
    Problem Description: “Unable to install OVI Store"
    Installed Version:
    ----------START-------------
    Phone Model: Nokia C-7
    Nokia Ovi Suite 3.0.0.284
    PC Connectivity Solution 10.50.2.0
    Connectivity Cable Driver 7.1.36.0
    Nokia Ovi Suite Software Updater 2010.44.0.60888
    Maps Service API 4.0.24.1
    Nokia mPlatform 2.7.44
    Ovi Desktop Sync Engine 1.4.1.42
    Operating system: Microsoft Windows 7 64-bit Edition
    Language: English
    Detected internet browsers: - Microsoft Internet Explorer 8.0.7600.16385 (Default browser)
    Detected Bluetooth stacks: - Microsoft (Version: 6.1.7600, Build: 16385), In use.
    Detected USB drivers: - USB Modem Driver 6.1.7600.16385
    Device Software Version : - 012.004
    -----------------------END-------------------------------
    Troubleshooting Done: with No Luck
    # Deleted Ovi Store from "Installed Application",
    # downloaded new OVI Store Application"
    # tried installing form OVI
    # tried sending SMS text link,
    Additional Problem:
    # Sine OVi store is not installed properly; as a result none of the other applications can be installed.
    # The WLAN (WIFI) unable to work, (only first 4-8 KB shared),
    # Nat Geo Does not response,
    # CNN Video Apac Does not work,
    # E! Does not move,
    # In OVI store with Nokia C-7 no OVI Store application is found,
    Expectation:
    # How to solve this problem,
    # If the Developer knows about the issue, then what is expected solution?
    # In India Nokia response centre is very poor, (Call get disconnected before Explain),
    # No direct Email Support from Nokia, Only queries can be send, but no guarantee if we get a response, no time line, No ticket number. Hence its straight way cheating to users,
    # it’s a Good to have discussion forum but does this helps to us!!! The reason is that maximum discussion answered by phone users with their experiences,
    Note: Keep it mind SAMSUNG is keep increasing market share,
    Question to Nokia Care: there are many discussion is opened, but without any response.
    * This is not to heart anyone, but I am the Nokia user and need help or share my experience.
    Regards
    Ashis,

    I have recently updated my Nokia C7 with a new version of Market and now I can no longer update any programs. I can click on markets, which gives a black screen. Nothing happens, regardless of how long time I seem to wait. Pressing the middle buttom, can get me back to idle, checking the open applications (longpress middle key) reveals that "nokiastoreclient" is running.  
    I want to remove this faulty version or update again. How can I do this? (using the link above, just start the "nokiastoreclient", then nothing.

  • Unable to install updates via App Store or Installer.app

    Ever since updating my 2008 Mac Pro from Mountain Lion (+Server.app) to Mavericks (10.9.3+Server.app) about a month ago, I have been unable to install updates on that system in any way, shape, or form.  Fixing permissions did not fix the problem, and reinstalling Mavericks also did not fix the problem.
    When trying to check for updates in the App Store, I run into this error:
    I have researched this problem extensively, and found no solution or workaround.  I also could find little in the way of relevant log entries for the problem.
    So, now I'm trying to install 10.9.4 manually, from a downloaded .dmg.  As you can see from the screenshot below, I started the installation of 10.9.4 over five and a half hours ago.  One message happened almost an hour after kicking off installation, but still nothing has happened.  The logs are included inline here for your convenience.
    Jul  5 16:04:21 snowbird Installer[45604]: It took 0.00 seconds to summarize the package selections.
    Jul  5 16:04:21 snowbird Installer[45604]: Will do post-logout install for package with trust 501
    Jul  5 16:04:21 snowbird softwareupdated (200)[174]: Adding client SUUpdateServiceClient pid=45604, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Installer.app/Contents/MacOS/Installer)
    Jul  5 16:04:21 snowbird installd[94071]: PackageKit: Adding client PKInstallDaemonClient pid=174, uid=200 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated)
    Jul  5 17:01:01 snowbird Installer[45604]: IFDCC: padded OS update package with 1341440
    Has anybody seen this before?  Help much appreciated!
    -peter

    Here you go, Mr. Davis ... and thanks!
    Jul  5 16:03:07 snowbird Installer[45604]: LSExceptions [0x7f8e22100c70] loaded
    Jul  5 16:03:07 snowbird Installer[45604]: @(#)PROGRAM:Install  PROJECT:Install-846
    Jul  5 16:03:07 snowbird Installer[45604]: @(#)PROGRAM:Installer  PROJECT:Installer-721
    Jul  5 16:03:07 snowbird Installer[45604]: Hardware: MacPro3,1 @ 2.80 GHz (x 8), 12288 MB RAM
    Jul  5 16:03:07 snowbird Installer[45604]: Running OS Build: Mac OS X 10.9.3 (13D65)
    Jul  5 16:03:07 snowbird Installer[45604]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Jul  5 16:03:07 snowbird Installer[45604]: Env: TMPDIR=/var/folders/r2/wbhxrq5n4vn7kxch9wb8lr6r0000mt/T/
    Jul  5 16:03:07 snowbird Installer[45604]: Env: SHELL=/bin/tcsh
    Jul  5 16:03:07 snowbird Installer[45604]: Env: HOME=/Users/peter
    Jul  5 16:03:07 snowbird Installer[45604]: Env: USER=peter
    Jul  5 16:03:07 snowbird Installer[45604]: Env: LOGNAME=peter
    Jul  5 16:03:07 snowbird Installer[45604]: Env: SSH_AUTH_SOCK=/tmp/launch-VQKNdI/Listeners
    Jul  5 16:03:07 snowbird Installer[45604]: Env: Apple_PubSub_Socket_Render=/tmp/launch-hzmFry/Render
    Jul  5 16:03:07 snowbird Installer[45604]: Env: DISPLAY=/tmp/launch-jKh9Nb/org.macosforge.xquartz:0
    Jul  5 16:03:07 snowbird Installer[45604]: Env: COMMAND_MODE=unix2003
    Jul  5 16:03:07 snowbird Installer[45604]: Env: __CHECKFIX1436934=1
    Jul  5 16:03:07 snowbird Installer[45604]: Env: __CF_USER_TEXT_ENCODING=0x29A:0:0
    Jul  5 16:03:07 snowbird Installer[45604]: OS X Update  Installation Log
    Jul  5 16:03:07 snowbird Installer[45604]: Opened from: /Volumes/OS X 10.9.4 Update/OSXUpd10.9.4.pkg
    Jul  5 16:03:07 snowbird Installer[45604]: Warning: accessing obsolete X509Anchors.
    Jul  5 16:03:07 snowbird Installer[45604]: Product archive /Volumes/OS X 10.9.4 Update/OSXUpd10.9.4.pkg trustLevel=501
    Jul  5 16:03:17 snowbird Installer[45604]: LSExceptions [0x7f8e22100c70] unloaded
    Jul  5 16:03:27 snowbird Installer[45604]: IFDCC: padded OS update package with 1341440
    Jul  5 16:03:30 --- last message repeated 2 times ---
    Jul  5 16:03:30 snowbird Installer[45604]: InstallerStatusNotifications plugin loaded
    Jul  5 16:04:19 snowbird runner[45656]: Administrator authorization granted.
    Jul  5 16:04:21 snowbird Installer[45604]: =============================================================================== =
    Jul  5 16:04:21 snowbird Installer[45604]: User picked Custom Install
    Jul  5 16:04:21 snowbird Installer[45604]: Choices selected for installation:
    Jul  5 16:04:21 snowbird Installer[45604]: Install: "OS X Update"
    Jul  5 16:04:21 --- last message repeated 1 time ---
    Jul  5 16:04:21 snowbird Installer[45604]: OSXUpd10.9.4.pkg#OSXUpd10.9.4.pkg : delta : 1.0.0.0.1.1306847324
    Jul  5 16:04:21 snowbird Installer[45604]: =============================================================================== =
    Jul  5 16:04:21 snowbird Installer[45604]: It took 0.00 seconds to summarize the package selections.
    Jul  5 16:04:21 snowbird Installer[45604]: Will do post-logout install for package with trust 501
    Jul  5 16:04:21 snowbird softwareupdated (200)[174]: Adding client SUUpdateServiceClient pid=45604, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Installer.app/Contents/MacOS/Installer)
    Jul  5 16:04:21 snowbird installd[94071]: PackageKit: Adding client PKInstallDaemonClient pid=174, uid=200 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated)
    Jul  5 17:01:01 snowbird Installer[45604]: IFDCC: padded OS update package with 1341440
    Jul  7 16:51:51 snowbird /System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_firstrun_tasks (200)[42]: swscan.apple.com is available: TRUE
    Jul  7 16:51:51 snowbird softwareupdated (200)[184]: softwareupdated: Starting with build 10.9.3 (13D65)
    Jul  7 16:51:57 snowbird softwareupdated (200)[184]: Product 031-02368: no package found for identifier com.apple.pkg.BootCampESD
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1219: no package found for identifier com.apple.pkg.MultiLingualVoice_zh_HK_sinji
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1220: no package found for identifier com.apple.pkg.MultiLingualVoice_es_ES_monica
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1614: no package found for identifier com.apple.pkg.RemoteDesktopClientShell
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1886: no package found for identifier com.apple.pkg.RemoteDesktopClientShell
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1929: no package found for identifier com.apple.pkg.MultiLingualVoice_zh_TW_meijia
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1930: no package found for identifier com.apple.pkg.MultiLingualVoice_pl_PL_ewa
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1934: no package found for identifier com.apple.pkg.MultiLingualVoice_pl_PL_zosia
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1935: no package found for identifier com.apple.pkg.MultiLingualVoice_es_ES_jorge
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1937: no package found for identifier com.apple.pkg.MultiLingualVoice_zh_CN_tingting
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1939: no package found for identifier com.apple.pkg.SpeechRecognitionCoreLanguage_es_ES
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1940: no package found for identifier com.apple.pkg.SpeechRecognitionCoreLanguage_en_US
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1942: no package found for identifier com.apple.pkg.SpeechRecognitionCoreLanguage_es_US
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1943: no package found for identifier com.apple.pkg.SpeechRecognitionCoreLanguage_ja_JP
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1945: no package found for identifier com.apple.pkg.SpeechRecognitionCoreLanguage_fr_FR
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1947: no package found for identifier com.apple.pkg.SpeechRecognitionCoreLanguage_zh_HK
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1948: no package found for identifier com.apple.pkg.SpeechRecognitionCoreLanguage_en_GB
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 031-1951: no package found for identifier com.apple.pkg.SpeechRecognitionCoreLanguage_ko_KR
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8607: no package found for identifier com.apple.pkg.MultiLingualVoice_th_TH_kanya
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8608: no package found for identifier com.apple.pkg.MultiLingualVoice_es_AR_diego
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8611: no package found for identifier com.apple.pkg.MultiLingualVoice_fr_FR_aurelie
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8613: no package found for identifier com.apple.pkg.MultiLingualVoice_en_US_susan
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8615: no package found for identifier com.apple.pkg.MultiLingualVoice_en_IN_veena
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8616: no package found for identifier com.apple.pkg.MultiLingualVoice_fr_CA_amelie
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8618: no package found for identifier com.apple.pkg.MultiLingualVoice_es_MX_angelica
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8621: no package found for identifier com.apple.pkg.MultiLingualVoice_el_GR_melina
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8622: no package found for identifier com.apple.pkg.MultiLingualVoice_da_DK_sara
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8626: no package found for identifier com.apple.pkg.MultiLingualVoice_ja_JP_kyoko
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8627: no package found for identifier com.apple.pkg.MultiLingualVoice_en_US_allison
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8629: no package found for identifier com.apple.pkg.MultiLingualVoice_es_CO_carlos
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8632: no package found for identifier com.apple.pkg.MultiLingualVoice_no_NO_nora
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8641: no package found for identifier com.apple.pkg.MultiLingualVoice_es_MX_paulina
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8643: no package found for identifier com.apple.pkg.MultiLingualVoice_no_NO_henrik
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8645: no package found for identifier com.apple.pkg.MultiLingualVoice_fr_FR_thomas
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8648: no package found for identifier com.apple.pkg.MultiLingualVoice_it_IT_federica
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8651: no package found for identifier com.apple.pkg.MultiLingualVoice_fr_CA_chantal
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8654: no package found for identifier com.apple.pkg.MultiLingualVoice_en_scotland_fiona
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8657: no package found for identifier com.apple.pkg.MultiLingualVoice_en_US_samantha
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8660: no package found for identifier com.apple.pkg.MultiLingualVoice_en_GB_serena
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8663: no package found for identifier com.apple.pkg.MultiLingualVoice_ro_RO_ioana
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8665: no package found for identifier com.apple.pkg.MultiLingualVoice_cs_CZ_iveta
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8667: no package found for identifier com.apple.pkg.MultiLingualVoice_es_CO_soledad
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8669: no package found for identifier com.apple.pkg.MultiLingualVoice_nl_NL_claire
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8670: no package found for identifier com.apple.pkg.MultiLingualVoice_ru_RU_katya
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8671: no package found for identifier com.apple.pkg.MultiLingualVoice_en_ZA_tessa
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8673: no package found for identifier com.apple.pkg.MultiLingualVoice_nl_NL_xander
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8675: no package found for identifier com.apple.pkg.MultiLingualVoice_pt_PT_catarina
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8676: no package found for identifier com.apple.pkg.MultiLingualVoice_tr_TR_cem
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8682: no package found for identifier com.apple.pkg.MultiLingualVoice_it_IT_paola
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8686: no package found for identifier com.apple.pkg.MultiLingualVoice_id_ID_damayanti
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8687: no package found for identifier com.apple.pkg.MultiLingualVoice_ru_RU_yuri
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8689: no package found for identifier com.apple.pkg.MultiLingualVoice_en_GB_kate
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8690: no package found for identifier com.apple.pkg.MultiLingualVoice_el_GR_nikos
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8694: no package found for identifier com.apple.pkg.MultiLingualVoice_en_US_tom
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8695: no package found for identifier com.apple.pkg.MultiLingualVoice_sv_SE_oskar
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8697: no package found for identifier com.apple.pkg.MultiLingualVoice_de_DE_markus
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8699: no package found for identifier com.apple.pkg.MultiLingualVoice_en_AU_lee
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8700: no package found for identifier com.apple.pkg.MultiLingualVoice_de_DE_petra
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8702: no package found for identifier com.apple.pkg.MultiLingualVoice_ar_SA_tarik
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8704: no package found for identifier com.apple.pkg.MultiLingualVoice_ja_JP_otoya
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8707: no package found for identifier com.apple.pkg.MultiLingualVoice_de_DE_anna
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Product 091-8710: no package found for identifier com.apple.pkg.MultiLingualVoice_da_DK_magnus
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: BackgroundActivity: Activity check-in with Interval 21600
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=42, uid=200, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_firstrun_tasks)
    Jul  7 16:52:05 snowbird softwareupdated (200)[184]: Removing client SUUpdateServiceClient pid=42, uid=200, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_firstrun_tasks)
    Jul  7 16:55:21 snowbird softwareupdate_notify_agent (666)[701]: softwareupdate_notify_agent[uid=666]: Running for LoginDone
    Jul  7 16:55:21 snowbird softwareupdate_notify_agent (666)[701]: AssertionMgr: Take com.apple.softwareupdate.NotifyAgentAssertion assertion with type BackgroundTask for pid 701
    Jul  7 16:55:21 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=701, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent)
    Jul  7 16:55:21 snowbird softwareupdate_notify_agent (666)[701]: softwareupdate_notify_agent[uid=666]: Notifying with params: {
         UpdateNotificationsOnly = 1;
    Jul  7 16:55:21 snowbird softwareupdate_notify_agent (666)[701]: softwareupdate_notify_agent[uid=666]: appstoreupdateagent notified
    Jul  7 16:55:21 snowbird softwareupdate_notify_agent (666)[701]: AssertionMgr: Cancel com.apple.softwareupdate.NotifyAgentAssertion assertion for pid 701
    Jul  7 16:55:44 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=715, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Resources/s toreagent)
    Jul  7 16:55:48 snowbird softwareupdated (200)[184]: Removing client SUUpdateServiceClient pid=701, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdate_notify_agent)
    Jul  7 16:57:48 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=1147, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com .apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent)
    Jul  7 16:58:37 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=1288, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com .apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent)
    Jul  7 16:58:37 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=1292, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com .apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent)
    Jul  7 16:58:37 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=1291, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com .apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent)
    Jul  7 16:58:37 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=1290, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com .apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent)
    Jul  7 16:59:14 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=1111, uid=666, installAuth=NO rights=(), transactions=0 (/Applications/App Store.app/Contents/MacOS/App Store)
    Jul  7 16:59:19 snowbird softwareupdated (200)[184]: Scan for changed products with previous 0 updates:  (plus 94 predicate-only)
    Jul  7 16:59:19 snowbird softwareupdated (200)[184]: SoftwareUpdate: Scan for client pid 184 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated)
    Jul  7 16:59:22 snowbird softwareupdated (200)[184]: SoftwareUpdate: Using catalog https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-sn owleopard-leopard.merged-1.sucatalog.gz
    Jul  7 16:59:29 snowbird suhelperd (0)[189]: SoftwareUpdate: timed out waiting for makequeues to run
    Jul  7 16:59:29 snowbird softwareupdated (200)[184]: SoftwareUpdate: Reusing previous package sources (SUCatalogPackageSource, SUContentLocatorPackageSource) for partial scan
    Jul  7 16:59:46 snowbird softwareupdated (200)[184]: SoftwareUpdate: elapsed scan time = 26.7
    Jul  7 16:59:47 snowbird softwareupdated (200)[184]: Scan (f=0, d=0) found 2 updates: 031-04361, 031-04978 (plus 94 predicate-only)
    Jul  7 16:59:47 snowbird softwareupdated (200)[184]: Product 031-02368: no package found for identifier com.apple.pkg.BootCampESD
    Jul  7 16:59:49 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=1415, uid=0, installAuth=NO rights=(), transactions=0 (/usr/sbin/softwareupdate)
    Jul  7 17:00:30 snowbird softwareupdated (200)[184]: Product 031-1219: no package found for ...
    Jul  7 17:00:30 snowbird softwareupdated (200)[184]: Ramped updates marked
    Jul  7 17:00:30 snowbird softwareupdated (200)[184]: SoftwareUpdate: Scan for client pid 184 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated)
    Jul  7 17:00:30 snowbird softwareupdated (200)[184]: Product 031-02368: no package found for identifier ...
    Jul  7 17:00:30 snowbird softwareupdated (200)[184]: SoftwareUpdate: Catalog Not Modified since last scan ("12c17-4fd9fc0cb02c0")
    Jul  7 17:00:30 snowbird softwareupdated (200)[184]: SoftwareUpdate: Using catalog https://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-sn owleopard-leopard.merged-1.sucatalog.gz
    Jul  7 17:02:49 snowbird softwareupdated (200)[184]: JS: 10.9.3
    Jul  7 17:02:52 snowbird softwareupdated (200)[184]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:WP-4530 Series
    Jul  7 17:02:52 snowbird softwareupdated (200)[184]: JS: Connected printer: MANUFACTURER:EPSON;MODEL:EPSON WP-4530 Series
    Jul  7 17:03:09 snowbird Installer[1730]: LSExceptions [0x7ffd98411830] loaded
    Jul  7 17:03:09 snowbird Installer[1730]: @(#)PROGRAM:Install  PROJECT:Install-846
    Jul  7 17:03:09 snowbird Installer[1730]: @(#)PROGRAM:Installer  PROJECT:Installer-721
    Jul  7 17:03:09 snowbird Installer[1730]: Hardware: MacPro3,1 @ 2.80 GHz (x 8), 12288 MB RAM
    Jul  7 17:03:09 snowbird Installer[1730]: Running OS Build: Mac OS X 10.9.3 (13D65)
    Jul  7 17:03:09 snowbird Installer[1730]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Jul  7 17:03:09 snowbird Installer[1730]: Env: TMPDIR=/var/folders/r2/wbhxrq5n4vn7kxch9wb8lr6r0000mt/T/
    Jul  7 17:03:09 snowbird Installer[1730]: Env: SHELL=/bin/tcsh
    Jul  7 17:03:09 snowbird Installer[1730]: Env: HOME=/Users/peter
    Jul  7 17:03:09 snowbird Installer[1730]: Env: USER=peter
    Jul  7 17:03:09 snowbird Installer[1730]: Env: LOGNAME=peter
    Jul  7 17:03:09 snowbird Installer[1730]: Env: SSH_AUTH_SOCK=/tmp/launch-BmQDON/Listeners
    Jul  7 17:03:09 snowbird Installer[1730]: Env: Apple_PubSub_Socket_Render=/tmp/launch-UKeIBF/Render
    Jul  7 17:03:09 snowbird Installer[1730]: Env: DISPLAY=/tmp/launch-ZiY74U/org.macosforge.xquartz:0
    Jul  7 17:03:09 snowbird Installer[1730]: Env: COMMAND_MODE=unix2003
    Jul  7 17:03:09 snowbird Installer[1730]: Env: __CHECKFIX1436934=1
    Jul  7 17:03:09 snowbird Installer[1730]: Env: __CF_USER_TEXT_ENCODING=0x29A:0:0
    Jul  7 17:03:10 snowbird Installer[1730]: OS X Update  Installation Log
    Jul  7 17:03:10 snowbird Installer[1730]: Opened from: /Volumes/OS X 10.9.4 Update/OSXUpd10.9.4.pkg
    Jul  7 17:03:12 snowbird Installer[1730]: Warning: accessing obsolete X509Anchors.
    Jul  7 17:03:12 snowbird Installer[1730]: Product archive /Volumes/OS X 10.9.4 Update/OSXUpd10.9.4.pkg trustLevel=501
    Jul  7 17:03:18 snowbird Installer[1730]: IFDCC: padded OS update package with 1341440
    Jul  7 17:03:21 --- last message repeated 2 times ---
    Jul  7 17:03:21 snowbird Installer[1730]: LSExceptions [0x7ffd98411830] unloaded
    Jul  7 17:03:25 snowbird Installer[1730]: InstallerStatusNotifications plugin loaded
    Jul  7 17:03:33 snowbird runner[1800]: Administrator authorization granted.
    Jul  7 17:03:35 snowbird Installer[1730]: =============================================================================== =
    Jul  7 17:03:35 snowbird Installer[1730]: User picked Custom Install
    Jul  7 17:03:35 snowbird Installer[1730]: Choices selected for installation:
    Jul  7 17:03:35 snowbird Installer[1730]: Install: "OS X Update"
    Jul  7 17:03:35 --- last message repeated 1 time ---
    Jul  7 17:03:35 snowbird Installer[1730]: OSXUpd10.9.4.pkg#OSXUpd10.9.4.pkg : delta : 1.0.0.0.1.1306847324
    Jul  7 17:03:35 snowbird Installer[1730]: =============================================================================== =
    Jul  7 17:03:35 snowbird Installer[1730]: It took 0.00 seconds to summarize the package selections.
    Jul  7 17:03:35 snowbird Installer[1730]: Will do post-logout install for package with trust 501
    Jul  7 17:03:35 snowbird softwareupdated (200)[184]: Adding client SUUpdateServiceClient pid=1730, uid=666, installAuth=NO rights=(), transactions=0 (/System/Library/CoreServices/Installer.app/Contents/MacOS/Installer)
    Jul  7 17:03:35 snowbird installd[1823]: installd: Starting
    Jul  7 17:03:35 snowbird installd[1823]: installd: uid=0, euid=0
    Jul  7 17:03:35 snowbird installd[1823]: PackageKit: Adding client PKInstallDaemonClient pid=184, uid=200 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated)
    Jul  7 17:15:30 snowbird softwareupdated (200)[184]: SoftwareUpdate: timed-out waiting for product load operations to finish
    Jul  7 17:15:30 snowbird softwareupdated (200)[184]: Scan got error Can't load data from the Apple Software Update server.
    Jul  7 17:15:31 snowbird softwareupdated (200)[184]: Scan for changed products with previous 2 updates: 031-04361, 031-04978 (plus 94 predicate-only)
    Jul  7 17:15:31 snowbird softwareupdated (200)[184]: SoftwareUpdate: Scan for client pid 184 (/System/Library/CoreServices/Software Update.app/Contents/Resources/softwareupdated)
    Jul  7 17:15:31 snowbird softwareupdated (200)[184]: SoftwareUpdate: Catalog Not Modified since last scan ("12c17-4fd9fc0cb02c0")
    Jul  7 17:16:09 snowbird suhelperd (0)[189]: Verifying package at path: /Library/Updates/_ManualUpdate/OSXUpd10.9.4.pkg
    Jul  7 17:16:09 snowbird suhelperd (0)[189]: packageWithPath returned nil!
    Jul  7 17:27:30 snowbird softwareupdated (200)[184]: 1477.5s to run getPPDVersion -all /Library/Printers/PPDs/Contents/Resources
    Jul  7 17:27:30 snowbird softwareupdated (200)[184]: Added 3965 PPD versions from /Library/Printers/PPDs/Contents/Resources
    Jul  7 17:30:31 snowbird softwareupdated (200)[184]: SoftwareUpdate: timed-out waiting for product load operations to finish
    Jul  7 17:30:31 snowbird softwareupdated (200)[184]: Scan got error Can't load data from the Apple Software Update server.
    Jul  7 19:24:27 snowbird Installer[1730]: IFDCC: padded OS update package with 1341440
    Jul  7 19:52:17 snowbird softwareupdated (200)[184]: BackgroundActivity: Starting Background Check Activity

Maybe you are looking for

  • Idoc and order mapping

    Hi,    How to find the relationship between the order and idoc in crm. I have a sceneraio like if i give the idoc number it has to display the corresponding order number. Where can i find the link between this.. link between crm order and idoc. Regar

  • Moving to Outlook 2011 advice

    i am considering moving to Outlook now that i purchased the office for mac suite. mostly i did this to get excel in case i need it for a small business. since i run a small business i don't have anyone in IT organizing my data but can anyone help me

  • Apache reports error 405 Method Not Allowed

    Hello, I have been attempting AJAX techniques on a portlet and am getting a weird error message in apache's access log. I checked the logs because the requestObject.open method I am using in some javascript was not returning any results. Apache is re

  • Longtext in custom infotype

    Hi , I am trying to upload long-text for a particular pernr in a custom infotype. But the text is not coming in PA30. Below is the code. DATA: wa_record_gdocs TYPE p9004,             pskey type pskey. ptext-line = This is text note'. append ptext. p_

  • Omniportlet and web cache

    I am setting up the omniportlet. I get the following message: Web Cache Invalidation default config file not defined by oracle.http.configfile REASON: oracle.http.configfile system property is not defined when you start OC4J Does anyone have a clue a