CP5 trial install fails after beta

We are attempting to install Cp5 on an OSX machine that previously had the Cp5 beta installed.  The Beta was deleted but not properly uninstalled using the uninstall software.  The Cp5 trial install still detects the old software.  Any suggestions to remove the remnants of the beta to allow the new install?

We found the original DMG, reinstalled the beta and then uninstalled.  That solved the problem.

Similar Messages

  • Crystal Reports ClickOnce install fails after upgrade to run time 13.0.2

    I realize this is very similar to two other posts but the ClickOnce failure was not addresses in the two threads I found.
    Visual Studio 2010 V 10.0.40219.1 SP1Rel
    .NET Framework V 4.0.30319 SP1Rel
    Crystal Reports for .NET Framework 4.0 BuildVersion=13.0.2.469.Cortez_CR4VS (from ProductId.txt in the download folder)
    Application was original developed using CR BuildVersion=13.0.1.220.Cortez_CR4VS
    So since I upgraded this week, if a user clicks the Launch link on the deployment web page the application loads the appl;ication update and starts. Does not even check with Crystal Reports but everything seems to work.
    The new version of the Crystal Reports runtime tries to install for users I have that enjoy clicking the run button. The install fails and points at a log file, the key part of which is
    Installing using command 'C:\WINDOWS\system32\msiexec.exe' and parameters ' -I "C:\DOCUME1\clyle\LOCALS1\Temp\VSDC8.tmp\Crystal Reports for .NET Framework 4.0\CRRuntime_32bit_13_0_2.msi" -q '
    Process exited with code 1603
    Status of package 'SAP Crystal Reports Runtime Engine for .NET Framework 4.0' after install is 'InstallFailed'
    Uninstalling the previous version manually alleviates the failure as does manually running the msi on the target machine. But that kind of defeats the purpose of ClickOnce. Looking at product.xml that accompanies the runtime download I see it tests for the 13.0.2 version and bypasses the install if it finds it but it does not check for earlier versions.
    Another thread I read indicated changing the switches in the install command would work but I am not clear on how to do that from ClickOnce, I cannot locate where the command is being given. Is there a way to get it to test for previous versions and delete them or force an overwrite using the ClickOnce?

    Ludek,
    Did this issue above every get resolved? 
    Here is what I have:
    ClickOnce, Windows form app that uses Crystal.  I upgraded to VS 2012 and Crystal right along
    with it. 
    I only want the 32bit version to install, even on 64bit
    machines.  I have modified the
    product.xml file to allow for this.  Also
    have some machines with version 13.0.0 and 13.0.1 of the Crystal ClickOnce msi
    file.  Would like to get everyone up to
    13.0.6.
    I am doing ALL this testing on clean VMWare installs.
    Windows 7 x64 and Windows XP x86.
    I force the 32bit install in the product file. (This I believe
    is working correctly) And I do a version check, this is where the problem comes
    in… Below, from the product file:
      <InstallChecks>
        <RegistryCheck
    Property="CRRuntime32Version" Key="HKLM\SOFTWARE\SAP
    BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports"
    Value="CRRuntime32Version" />
      </InstallChecks>
    Note to path in the registry. This path which is installed
    by CR is different for Win7 vs WinXP, not sure why?  In Win7 the path is: 
    HKLM\SOFTWARE\Wow6432Node\SAP
    BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports
    Also if you have version 13.0.0 installed there is no entry
    in the registry for the version number at all!
    The log file also show that it can’t find the version if 13.0.0 is
    installed.
    Admittedly the error log shows that it is somehow finding
    the version if it is 13.0.1 (nothing for 13.0.0)? But even though I have it set
    to skip the 13.0.6 install if the version check is 13.0.1 or higher Crystal
    attempts to install anyway, and it fails in the process, halting the entire
    ClickOnce install.
    In summary.  I need to
    be able to check the version currently installed and update it to 13.0.6.  This fails and seems to be a bug?   Hopefully there is a work around. 
    Thanks,
    Jim
    The product.xml file I have modified is below for review.
    <?xml version="1.0" encoding="utf-8" ?>
    <Product
      xmlns="http://schemas.microsoft.com/developer/2004/01/bootstrapper"
      ProductCode="SAP.CrystalReports14.NET.2.0"
    >
      <!-- Defines list of files to be copied on build -->
      <PackageFiles>
        <PackageFile Name="CRRuntime_32bit_13_0_6.msi"
          HomeSite="http://downloads.businessobjects.com/akdlm/crnetruntime/clickonce/CRRuntime_32bit_13_0_6.msi"
          PublicKey="30818902818100cbc8f3d8b4bc4db86f150116f4ad7f2fd2d91d29ae6f752c2aa6489cbda10670a0b97b8840d03dd8d082bfb985882b1278504bdd15a1f2a00b629cd70bf26d94b3933a9647a12c819ca67acd1c32ac942e1b824aad4fd8e8a989c45cf4a13770fe2b233f598ea06b62081174be6b7701f347612c126d42c2f9b759ff00164eb30203010001"/>
      </PackageFiles>
      <RelatedProducts>
        <DependsOnProduct Code="Microsoft.Net.Framework.2.0" />
        <DependsOnProduct Code="Microsoft.Data.Access.Components.2.8" />
      </RelatedProducts>
      <InstallChecks>
        <RegistryCheck Property="CRRuntime32Version" Key="HKLM\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports" Value="CRRuntime32Version" />
      </InstallChecks>
      <Commands Reboot="Defer">
        <Command PackageFile="CRRuntime_32bit_13_0_6.msi"
          Arguments=''
          EstimatedInstalledBytes="50000000"
          EstimatedInstallSeconds="220">
          <!-- These checks determine whether the package is to be installed -->
          <InstallConditions>
            <!-- Comment out the below BypassIf entry if you want to install the 32bit version CRRuntime redist in the target machine -->     
            <!-- ByPass if the Processor is not x86 -->
            <!-- <BypassIf Property="ProcessorArchitecture" Compare="ValueNotEqualTo" Value="Intel"/> -->
            <!-- ByPass if the installed version is same or higher -->
            <BypassIf Property="CRRuntime32Version" Compare="VersionGreaterThanOrEqualTo"  Value="13.0.1"/>
            <!-- Block install if user does not have admin privileges -->
            <FailIf Property="AdminUser" Compare="ValueEqualTo" Value="false" String="AdminRequired"/>
            <!-- Block install on Win95 -->
            <FailIf Property="Version9x" Compare="VersionLessThan" Value="4.10" String="InvalidPlatformWin9x"/>
            <!-- Block install on NT 4 or less -->
            <FailIf Property="VersionNT" Compare="VersionLessThan" Value="5.00" String="InvalidPlatformWinNT"/>
          </InstallConditions>
          <ExitCodes>
            <ExitCode Value="0" Result="Success"/>
            <ExitCode Value="1641" Result="SuccessReboot"/>
            <ExitCode Value="3010" Result="SuccessReboot"/>
            <DefaultExitCode Result="Fail" FormatMessageFromSystem="true" String="GeneralFailure" />
          </ExitCodes>
        </Command>
      </Commands>
    </Product>

  • Flash 10 install fail after 10.6.2 update. Help please.

    It all started after the new 10.6.2 update I did for Snow Leopard
    I don't know if this is an something you here at adobe can fix or its something going on at Apple.
    Is anyone else having this problem or is it just me?
    Opera, and firefox unexpectidy quit as well.
    and my wacom drivers are out of wack.
    I tryed to uninstall flash player but that too unexpectidly quits.
    When I try to restart it gets hung up, and I have to do a hard start to get logged into my computer again.
    I ran the disk utility and repaired permissions, that didn't help.
    Anyway the install failed said I should contact Adobe so here I am.

    Good News I Fixed it.
    So what I did was downoad and install the MacOSXUpdCombo10.6.2.dmg
    Found here
    http://www.apple.com/support/snowleopard/
    On the left you will see the downloads, The one you want is the (combo) version.
    Just as a precaution, I would recommend backups, as these little glitches are often percursers to the big fail.
    I use corbonite, you can search for it on your own, or time machine ect, whatever works best for you.
    Sorry I may have been rude, I have always liked Adobe products and I have no doubt that the people at Adobe are working hard to keep everything working, it must be quite hard to deal with irate customers all day.
    Hope this helps some people.
    Thanks again.

  • Trial install fails on Vista 64

    I wonder if anyone can help me? I was going to buy Premiere Pro as it is highly recommended by our media folk, but now am not sure. I can't get the trial version to install on Vista 64; the only message is "Setup has encountered an error. Contact product support". As if there were such a thing anymore.
    I have disabled UAC, Defender, firewall, antivirus, spybot, and am running on an admin account with full privvies anyway... am I missing something obvious? Any suggestions welcome.
    Thanks,
    DD

    Seems to be a x64 problem, because I'm trying to install on the Windows 7 Ultimate x64 (RC1) and got a fairly same error message:
    Adobe Anchor Service CS4
    Error:
    Error 1603.
    Error 1402.
    Could not open key: UNKNOWN\Components\C2A2A973-71FD-33D4-BB5A-610DE8420B9A\A4378161-7593-DDA4-1899-9F3767139 08A
    Verify that you have sufficient access to that key, or contact your support personnel.
    I did some digging and actually got pointed in the right direction through Adobe Support where I found a technote on this subject.
    http://kb2.adobe.com/cps/404/kb404622.html
    By just following the instructions I found out that the regkey:C2A2A973-71FD-33D4-BB5A-610DE8420B9A is accessible but the value A4378161-7593-DDA4-1899-9F376713908A is protected by means of restricted permissions.
    At step 8 or 9 of the Technote you do also have to set the Administrators permission in the tabs: Auditing and Effective Permissions.
    You will also have to make Administrators the owner. Do not forget to check EVERY checkbox and after that press APPLY. Just pressing OK will not do the job.
    And just to be sure, I also did a search in the registry on A4378161-7593-DDA4-1899-9F376713908A and found another hit. So I changed that one also with the account-permissions-method.
    After making these thrilling changes in the registry (you DID take the advice in the technote to fost make a backup of the registry, didn't you?) I was able to delete the whole register-key.
    After all this, I was able to install CS4 on my Windows 7 system with no problems of what so ever!!!
    All in a nutshell: CS4 tried to make a change withing the registry of Windows but failed due to a write-protection on the users-account level.
    I hope you all will have as much luck with this as I did.
    If it works on Windows 7 x64 then it will also work on Windows Vista x64, because actually Win7 is a much better version of Vista.

  • Dreamweaver trial install fails

    Hi not sure if i am posting in the correct place. I have
    downloaded the Dreamweaver CS4 trial from the Adobe website. When
    trying to install it extracts 100% and then a message pops up
    saying " please check available space and write privledges on the
    disk" I have 460gb free space, have cleared all temp files and am
    running as admin. Please help! A quick google search showed this is
    not uncommon however noone seems to have an answer other than run
    as admin!! Please help. Thanks in advance! Also all uneccessary
    startup items are disabled. Matt.

    Seems to be a x64 problem, because I'm trying to install on the Windows 7 Ultimate x64 (RC1) and got a fairly same error message:
    Adobe Anchor Service CS4
    Error:
    Error 1603.
    Error 1402.
    Could not open key: UNKNOWN\Components\C2A2A973-71FD-33D4-BB5A-610DE8420B9A\A4378161-7593-DDA4-1899-9F3767139 08A
    Verify that you have sufficient access to that key, or contact your support personnel.
    I did some digging and actually got pointed in the right direction through Adobe Support where I found a technote on this subject.
    http://kb2.adobe.com/cps/404/kb404622.html
    By just following the instructions I found out that the regkey:C2A2A973-71FD-33D4-BB5A-610DE8420B9A is accessible but the value A4378161-7593-DDA4-1899-9F376713908A is protected by means of restricted permissions.
    At step 8 or 9 of the Technote you do also have to set the Administrators permission in the tabs: Auditing and Effective Permissions.
    You will also have to make Administrators the owner. Do not forget to check EVERY checkbox and after that press APPLY. Just pressing OK will not do the job.
    And just to be sure, I also did a search in the registry on A4378161-7593-DDA4-1899-9F376713908A and found another hit. So I changed that one also with the account-permissions-method.
    After making these thrilling changes in the registry (you DID take the advice in the technote to fost make a backup of the registry, didn't you?) I was able to delete the whole register-key.
    After all this, I was able to install CS4 on my Windows 7 system with no problems of what so ever!!!
    All in a nutshell: CS4 tried to make a change withing the registry of Windows but failed due to a write-protection on the users-account level.
    I hope you all will have as much luck with this as I did.
    If it works on Windows 7 x64 then it will also work on Windows Vista x64, because actually Win7 is a much better version of Vista.

  • Dreeamweaver CS3 trial install fails

    I'm trying to install CS3 trial on my XP pro PC except it
    fails to install shaired componants and dreamweaver CS3, both
    marked with an X on the install panel.
    They fail shortly after Mcafee asks if BONJOUR should access
    the internet which I granted.
    I have DW8 on here without any problems...
    Basically I want to see what improvements adobe have made to
    CS3 since that DW8 was vastly improved from the previous version...
    Anyone got any ideas?
    Thanks

    ok, I just found an event log that might help....
    Application event log
    "Product: Adobe Version Cue CS3 Client -- Error 1920.Service
    ##Id_String1.6844F930_1628_4223_B5CC_5BB94B879762## (Bonjour
    Service) failed to start. Verify that you have sufficient
    privileges to start system services."
    I'm an administrator! of course I have the privileges...
    system event log
    "The ##Id_String1.6844F930_1628_4223_B5CC_5BB94B879762##
    service terminated with service-specific error 4294967295
    (0xFFFFFFFF)."
    Does this help?

  • IDC High Definition Audio CODEC driver re-install fails after windows 8.1 upgrade on HP Pavilion dm1

    Following upgrade, no sound was available. The driver had disappeared. I have found new drivers on the hp support site, however, they fail to install complaining that the driver is incompatible with the hardware.
    Other users have been successful in solving this problem, but not me.
    Any ideas?
    Thanks
    Derek Pool

    Hello Pipster100,
    I would like to assist you with getting this audio issue resolved with your HP Pavilion g6 Notebook PC. So I can better assist you, please provide me with the model/product number from your notebook.
    Also, something that you can try is to use the Recovery Manager to Restore Software and Drivers. Once you open the HP Recovery Manager, install the audio driver that will be listed under drivers.
    Looking forward to your response.
    Thank you,
    I worked on behalf of HP.

  • Stack Underflow and Archive Install fail after 10.4.9 upgrade

    After performing the 10.4.9 upgrade on my Black MacBook Core Duo, each of the Microsoft Office Applications (Word, Excel, Entourage, Power Point, and Office Updater and Office Installer) all abort on activation. The System Log indicates a stack underflow:
    Mar 24 11:36:38 Arakis /Applications/Microsoft Office 2004/Microsoft Word: CGGStackRestore: gstack underflow.
    Attempts to reinstall office fail. Drag and Drop method and Using Office Installer App both fail. The Installer App also aborts with the same error.
    After speaking with Microsoft Support and trying their suggestions for removing prefrence files and MS user directory, all fail with the same results. Last Microsoft reccomendation is to perform Archive and Install, and upgrade only to 10.4.8 using combo update.
    So I Cloned my boot disk before performing Archive and Install (and it's a good thing too).
    I started the Archive and install, and all went well until disk 2, specifically while it was installing iLife demo. When it said two minutes remaining, it froze. Last log entry indicates "specified processes cannot be found". I left it to continue overnight (about 8 hours). It was in the same state in the morning. So I forced a Power down and restarted. It requested disk 1 and began the Archive and Install again, with the same results.
    I was able to boot off my external clone and restore my boot disk. I am now back to 10.4.9, and Office apps still abort with stack underflow.
    One other point. I have a G4 iMac, A Dual G5 Power Mac, and a G5 Mac Mini, all with 10.4.9 and MS Office, and they all work fine. Problem only seems to be on DualCore MacBook, and only Microsoft Office Apps. MS messenger and MS Remote Desktop Client for MAC work. All other apps (apple and 3rd party) also work OK.
    One last thing. After 10.4.9 upgrade, Finder quite often crashes when right clicking or Cotrol-clicking on files or folders in finder windows. Looking at crash dump indicates that this is an unrelated issue, which I will address later, in another rpost.
    Are there any suggestions on how to sucessfully perform an archive and Install? Is it possible to disable the install of optional software like iLife demo? Any other suggestions would be appreciated.
    Jeff Cameron
    DualCore MacBook   Mac OS X (10.4.9)  

    After spending a bit of time, researching this problem, it seems I have been bit by the dyldupdateprebinding bug while updating to 10.4.9. This is outlined in the article located at:
    http://www.unsanity.org/archives/macos_x/shock_andawe.php
    However I am still unable to repair my problem by performing an Archive and install (possibly because of the dyldupdateprebinding). So if anyone can help me do the Archive & install without installing the iLife demo, or any of the optional software, I would be most appreciative.
    Jeff

  • Upgrade and Install fails after first boot. Then I am unable to repair

    I don't know if anyone else has experienced this?
    I've experienced the aqua screen of death with the Upgrade option and was unable to resolve it, even after trying the APE removing technique.
    So, I decided to restore back to Tiger 10.4.10 (thanks to Super Dupering prior to upgrade) and try the archive and install option. All appeared to go well, installed fine, allowed me to login and run all my apps. But, upon doing my first reboot after the 'sucessful' install the system just hangs at the gray screen. I tried using Disk Utility from the Leopard DVD, but it's unable to repair permissions.
    I got this error message: 'The underlying task reported failure on exit'. Tried many times, I also tried the /sbin/fsck -fy in single user mode.
    I tried booting into DiskWarrior 4's. Once in DW4 I ran the Repair function there... Here I got another error message.
    This error being: 'Error -9997'.
    OK I thought, something random must have happened. Soooo I restored to Tiger again and ran the Archive and Install option once again.
    I'm am again experiencing the exact same problems with freezing gray boot screen and the inability to repair permissions (all after doing my first boot after sucessful install and login/opening of many apps)
    Please please please can anyone she some light on this problem???
    I'm going to try one more option:
    Upgrade after I've disable all startup options and removing anything to do with APE....
    I will report back!
    This is really really crap Apple, I can't believe I've spent £85 and probably 15 hours on this sloppy release. Utterly disapointed

    Just me it seems then....
    Right, I think it's finally resolved, only after the fifth time. I've now rebooted twice and so far so good.
    There was a new message when I powered down for the first time, something along the lines of:
    Please wait while your Boot Caches are updated.
    This seems to be a reasuring message, I feel almost confident in restarting again.
    I upgraded using the following method:
    1. Disabled ALL startup items (System Preferences>Accounts>Login items)
    2. Removed all traces of APE (Application Enhancer) using Finder:
    /Library/Preference Panes/Application Enhancer.prefpane
    /Library/Frameworks/Application Enhancer.framework
    /System/Library/SystemConfiguration/Application Enhancer.bundle
    /Library/Preferences/com.unsanity.ape.plist
    3. Repaired Permissions
    Right, before I perform a new backup I think I'll see how she runs for a week, so I'm sure the boot problem is definitely gone.

  • Why does Elments 10 trial install fail?

    I have downloaded the trial twice and both times the install is almost finished and then there is an error which I never see a message and then it starts rolling back the installation.
    Why?
    Thank you
    [email protected]

    Photoshop Elements Help | Troubleshoot install using logs | Elements
    And provide system info as well.
    Mylenium

  • Microsoft Visual C++ 2005 SP1 install fails after gathering requirements stage and vanishes.. and hence unable to upgrade Appv Client

    Hi Team,
    We are trying to install App-V 4.6 SP2 and it fails when installing the prerequisites. It doesnt show any other information on why it fails.
    Please assist with this issue at the earliest possible. We will be grateful to you.

    You will need to meet the prerequisites before installation will proceed past that point. If Visual C++ is not installing, you may want to try installing it separately before installing App-V 4.6 SP2.
    The link for the Visual C++ 2005 SP1 x86 can be found here.
    Brandon
    MDOP on the Springboard Series on TechNet

  • Installing 2 after Beta 2

    Searched around the Adobe site and couldn't find a specific instruction regarding what to do with the Beta version and the new version 2.<br />Do I uninstall the V2 beta and all folders connected with it before installing a download of V2?<br />The Beta version picked up my preferences used in v 1.4.1 so I'm guessing this will continue or will it not?<br /><br />Any install suggestions or links are welcome <grin><br />Thanks,<br />Rose

    I just left the v2 beta untouched and let the new, full v2 load itself and add/update the old catalogue -- couldn't have taken more than ten or fifteen minutes all told. Looks like everything is there. The beta is still there, too. I plan to leave it as back-up until it expires in a few days.
    On quick glance, my first reaction just a big grin -- and an occasional "cool" or "wow" under my breath as I skim through it - how about that graduated filter?!
    KUDOS to the development crew and many thanks to Adobe for allowing us to use the beta right up until the full release.

  • App install failing after uninstall

    I uninstalled an app I've been working on, and now when I try
    re-installing it tells me the file is corrupt. But the file is
    definitely not corrupt. True for badge install or manual install.
    I've tried uninstalling/reinstalling AIR several times, and
    deleting every AIR related directory I can find. Still dead in the
    water.
    Mac OS X 10.5.2
    Here's what the install log says:
    UI SWF load is complete
    UI initialized
    Converting to
    /private/var/folders/Af/AfhEQDevFwaKcP77YUvST++++TI/TemporaryItems/FlashTmp1
    Conversion is complete
    AIR file is bound to version 1.0
    app id [omitted]
    application is bound to this version of the runtime
    Failed while converting AIR file: [ErrorEvent type="error"
    bubbles=false cancelable=false eventPhase=2 text="Error #3003"
    errorID=3003]
    Starting cleanup
    Installation exited
    Help? What is Error #3003?

    Hi Oliver, thanks for the instructions. I've sent you the
    output of the commands via email. I'll make a wild guess here, I
    think the problem originates starting at line 15497 of dtruss.out:
    mmap(0x0, 0x10000, 0x3, 0x1002, 0x3000000,
    0xFFFFFFFF00000000) = 0x19FA5000 0
    getattrlist("/.vol/234881026/31688dtrace: error on enabled
    probe ID 1725 (ID 18033: syscall::getattrlist:return): out of
    scratch space in action #11 at DIF offset 28
    dtrace: error on enabled probe ID 1723 (ID 17865:
    syscall::mkdir:return): out of scratch space in action #11 at DIF
    offset 28
    dtrace: error on enabled probe ID 1725 (ID 18033:
    syscall::getattrlist:return): out of scratch space in action #11 at
    DIF offset 28
    dtrace: error on enabled probe ID 1725 (ID 18033:
    syscall::getattrlist:return): out of scratch space in action #11 at
    DIF offset 28
    dtrace: error on enabled probe ID 1723 (ID 17865:
    syscall::mkdir:return): out of scratch space in action #11 at DIF
    offset 28
    dtrace: 21926 drops on CPU 0
    Please let me know what you find out. Thanks!

  • How do I install Lion after Beta

    I currently have a beta version of Lion Build (11A390).  I purchased Lion from the app site but I cannot update the newer version.  What could I do to install the newer version?

    No. I have the developer build which is the same as the release build. I expect at some point I may have to erase my hard drive and reinstall a release version. If you don't procure your operating system from the normal retail channels, even if it is legitimately licensed, you may not be able to participate in the normal update behaviour. I'm not saying you will have problems, I'm just saying it is a possiblity. The original poster has a really old version. All bets are off in that case. Erase and reinstall.

  • Solaris 10 DVD install fails at 90%

    Hi, this is my first time posting here. I've used a variety of linux distributions for a few years now: first Red Hat, then Suse, then Ubuntu, and currently Gentoo. So I have familiarity with installs and *nix systems.  Now I'm trying to install Solaris 10 on a second hard drive with the install DVD that I burned from a download.  After a few tries, and learning some Solaris command line, I went ahead and selected my custom packages, then made my custom partitioning layout on the second disk, then I began the package install.
    It took a while, so I was not there the whole time, but before the error, package install was at 90%. I know I had enough room on the partition for all the packages. After checking the system again I found that it had stopped, and began complaining about not finding packages on the install disk.
    I tried the install again, this time with a minimum of my intervention and custom packaging selection. Again the install fails after it is mostly installed. After learning how to mount an IBM formatted disk, I copied the install logs to it, and I'd like to attach them to this post, but I can't see how to do that, if anyone can tell me how to add log files, I'd appreciate it. I just don't want to paste their entire contents here because they're too large.
    Thanks in advance for the help,
    Sam
    Snippets from the log files:
    Log file 1:
    Default layout will not work on this system.
    Installation partially failed
    Error:
    Error: ERROR: Could not install boot blocks
    Error:
    Error: ERROR: System installation failed
    Pfinstall failed. Exit stat= java.lang.UNIXProcess@39474b 2
    Installation of <SUNWgzip> was successful.
    6276 blocks
    Installation of <SUNWdtdte> was successful.
    bzcat: I/O or other error, bailing out.  Possible reason follows.
    bzcat: I/O error
            Input file = /cdrom/Solaris_10/Product/SUNWgttf/archive/none.bz2, output
    file = (stdout)
    cpio: Can't read input:  end of file encountered prior to expected end of archiv
    e.
    1 errors
    Unarchiving of /cdrom/Solaris_10/Product/SUNWgttf/archive/none failed with error
    1
    pkgadd: ERROR: class action script did not complete successfully
    Installation of <SUNWgttf> failed.
    260 blocks
    Installation of <SUNWxwacx> was successful.
    No changes were made to the system.
    pkgadd: ERROR: unable to access pkgmap file </cdrom/Solaris_10/Product/SUNWgnome
    -text-editor-share/pkgmap>Log file 2:
    Default layout will not work on this system.
    Installation partially failed
    Error:
    Error: ERROR: Could not copy file (/cdrom/Solaris_10/Product/.clustertoc) to (/a
    /var/sadm/system/admin/.clustertoc)
    Error:
    Error: ERROR: Could not install administration information
    Error:
    Error: ERROR: Could not install all packages. Product installation failed
    Error:
    Error: ERROR: System installation failed
    Pfinstall failed. Exit stat= java.lang.UNIXProcess@1eb5666 2
    Installation of <SUNWperl584usr> was successful.
    bzcat: I/O or other error, bailing out.  Possible reason follows.
    bzcat: I/O error
            Input file = /cdrom/Solaris_10/Product/SUNWesu/archive/none.bz2, output
    file = (stdout)
    cpio: Can't read input:  end of file encountered prior to expected end of archiv
    e.
    1 errors
    Unarchiving of /cdrom/Solaris_10/Product/SUNWesu/archive/none failed with error
    1
    pkgadd: ERROR: class action script did not complete successfully
    Installation of <SUNWesu> failed.
    118 blocks
    No changes were made to the system.
    pkgadd: ERROR: unable to access pkgmap file </cdrom/Solaris_10/Product/SUNWgnome
    -config/pkgmap>
    No changes were made to the system.
    pkgadd: ERROR: unable to access pkgmap file </cdrom/Solaris_10/Product/SUNWgnome
    -vfs-root/pkgmap>
    Solaris 10 software installation partially failed
    ERROR: Could not copy file (/cdrom/Solaris_10/Product/.clustertoc) to (/a/var/sa
    dm/system/admin/.clustertoc)
    ERROR: Could not install administration information
    ERROR: Could not install all packages. Product installation failed
    ERROR: System installation failed

    Hi. I had your same problem with Solaris Express Developer Edition 01/08.
    The PC was complaining about the failed installation of some packages:
    SUNWsndmr
    SUNWsndmu
    SUNWsolnm
    I suspected they were audio drivers and/or libraries.
    So I decided to do an absolutely minimum installation and I even excluded anything that was unnecessary and Audio-related. Actually Solaris Installer complained about unsatisfied USB debendencies, but went on anyway...
    And it worked!
    Solaris completed the installation.
    I don't know if it's possible to add the left out drivers in a second moment yet. We'll see.
    Maybe I'm wrong but, from your logfiles you seem to have a similar problem with:
    SUNWgttf
    SUNWgnome-config
    SUNWgnome-vfs-root
    And I suspect it may be due to a CD/DVD read error.
    Edited by: Dario.Rvsso on Apr 23, 2008 3:34 PM

Maybe you are looking for