Skip to main content
Question

Unable to deploy Adobe CS6 using casper Imaging after converted By Adobe AAMEE


Forum|alt.badge.img+3
  • New Contributor
  • 2 replies

Hi,

After I created a Build pkg of CS6 from Adobe AAMEE, I tried to upload onto Casper Admin for Imaging. they can upload the pkg successfully but the CS6 File size is different ( Regular File Size: 7.66GB, after added onto Casper Admin, the file size is 5.2MB, This also happens on my other pkg as well: MathType, Typing Tournament)

I thought this is the way how Casper works, so then I given them a Category as: "Adobe", Priority: "10". then "Save".

Later on I create a Policy for a test to deploy Adobe CS6 onto Testing Mac Macbook pro. An hour later, I checked on the Testing Machine, Adobe has not been install. Checked on the "Policy Log", They said, "Invalid file path..." something like this.

Is there something I did wrong?
and why there is a File size difference to my uploaded pkg onto Casper Admin.

*Note: if I install the pkg manually without using casper, it successfully installed

32 replies

Forum|alt.badge.img+21
  • Honored Contributor
  • 970 replies
  • December 18, 2012

Hi Annie

Have a look here

https://jamfnation.jamfsoftware.com/discussion.html?id=4482

Myself and a few others are making a dmg of the package and using a script in a policy to mount the dmg and install it.

I am finding this is the only reliable method that is working for me.


jhbush
Forum|alt.badge.img+26
  • Esteemed Contributor
  • 539 replies
  • December 18, 2012

I'm also using the method tkimpton mentioned above via Self Service using AD security groups to define who can install the software.


donmontalvo
Forum|alt.badge.img+36
  • Legendary Contributor
  • 4293 replies
  • December 18, 2012

FYI, there is an active AAMEE enterprise forum, maybe post there too?

http://forums.adobe.com/community/download_install_setup/creative_suite_enterprise_deployment


Forum|alt.badge.img+10
  • Valued Contributor
  • 229 replies
  • December 20, 2012

Hello everyone, I am facing a different issue with Adobe CS6 - both "Master Collection" and "Design&Web" - packaged with AAMEE 3 and deployed with ARD or Casper (it seems not to make a difference).

After a few days or regular and smooth usage on the user side - as soon as you open any CS app – it keeps bouncing in the dock together with Adobe Application Manager.

It looks like the CS app is trying to start up and somehow needs to "talk" to AAM but they go into a never ending loop.
The only "solution" I found so far is un-installing and re-installing the suite and hoping it does not happen again.
The weird thing is only some clients are affected and they all share the same image (OS/configuration) and CS6 installation (only recently added).

Clients are managed with MCX but it also affects the local admin (with administrative privileges).

I was wondering if anyone has seen this behavior and what the cause could be.
Many thanks for your help!
Ciao
Carlo


donmontalvo
Forum|alt.badge.img+36
  • Legendary Contributor
  • 4293 replies
  • December 20, 2012

@carlo.anselmi Have you tried the latest AAM patch?

http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774


Forum|alt.badge.img+10
  • Valued Contributor
  • 229 replies
  • December 20, 2012

Hi Don, I haven't yet but will immediately!
Many thanks, I'll let you know how it goes.
Ciao
Carlo


Forum|alt.badge.img+7
  • Contributor
  • 27 replies
  • December 20, 2012

I am having an issues as well. I created the C6 Web Premium pkg in AAMEE 3.1. When I put the pkg in a configuration for netbooting it skips the install. I push it from casper remote and it works. Any reason why it would install in Casper Remote but not in Casper Imaging?


donmontalvo
Forum|alt.badge.img+36
  • Legendary Contributor
  • 4293 replies
  • December 20, 2012

@TheDecline SMB?


Forum|alt.badge.img+10
  • Valued Contributor
  • 229 replies
  • December 20, 2012

My experience with AAMEE pkgs and CS6 has been "various" so far. At times it works only if the Mac is at the login window, others when a user is logged in. The very same pkg can then fail when installed from a login policy and succeded when installed with SelfService as local admin.
So far the most reliable way seemed to be ARD, which of course is not quite handy
My two cents
Ciao
Carlo

EDIT: AFP only!


Forum|alt.badge.img+7
  • Contributor
  • 27 replies
  • December 20, 2012

Don, It is AFP

Carlo, that is not good to hear..


Forum|alt.badge.img+7
  • Contributor
  • 27 replies
  • December 20, 2012

Don, It is AFP

Carlo, that is not good to hear..


donmontalvo
Forum|alt.badge.img+36
  • Legendary Contributor
  • 4293 replies
  • December 20, 2012

@TheDecline For what it's worth, we've been deploying CS5/5.5/6 using AAMEE for a couple years now. There were a few issues with the older AAMEE versions, but 3.1 is really very good. The only issue I've run into, and I've spoken up about this, is the SMB issue. AAMEE packages somehow get corrupted when stored on SMB shares. JAMF provides a KB for this, although it does not address the issue at imaging time (only for pushes or Self Service):

https://jamfnation.jamfsoftware.com/article.html?id=161

We've deployed to over 1,000 users. Some during imaging time (new Macs), some via push (including removal of older versions), and some via Self Service (to controlled target groups).

Don


Forum|alt.badge.img+9
  • Contributor
  • 124 replies
  • December 20, 2012

@TheDecline: When imaging, it'll want to boot into the OS to install Adobe so you'll have to have the "This package must be installed to the boot volume at imaging time" option selected on the installer in Casper Admin. It'll use an account called Temporary Adobe Install typically behind a JAMFHelper screen (sometimes not). Allow this to finish and iti'll reboot back to the login screen.

Right now, you may actually have the PKG on the drive after imaging. I've noticed that if I don't check that box, imaging basically copies the PKG to the root.


Forum|alt.badge.img+15
  • Contributor
  • 208 replies
  • December 20, 2012

We have had varied success. also using AAMEE for standard installs.

At imaging time
we have a PKG that has "This package must be installed to the boot volume at imaging time" option selected on the installer in Casper Admin. It'll use an account called Temporary Adobe Install typically behind a JAMFHelper screen (sometimes not). Allow this to finish and iti'll reboot back to the login screen.

when it is done, it will delete the package and the adobe account.

This has been successful and have not had to troubleshoot.

Self Service

We have the installer PKG copied into /Users/Shared , after it is copied this script is called

#!/bin/sh

# Variables used for logging
logFile="/private/var/log/installCS6PKG-Users-Shared.log"

####################################################################################################
# 
# LOGGING FUNCTION
#
####################################################################################################

log () {
    echo $1
    echo $(date "+%Y-%m-%d %H:%M:%S: ") $1 >> $logFile  
}


mv /Users/Shared/Adobe CS6 Standard AAMEEv1_Install.pkg /Users/Shared/AdobeCS6StandardAAMEEv1Install.pkg

log "PKG Renamed successfully AdobeCS6StandardAAMEEv1Install.pkg"

log "Installing AdobeCS6StandardAAMEEv1Install.pkg ......"
sudo jamf install -path /Users/Shared -package AdobeCS6StandardAAMEEv1Install.pkg

log "Package Successfully Installed AdobeCS6StandardAAMEEv1Install.pkg"


sudo jamf displayMessage -message "Soups Done! Package Successfully Installed Adobe CS6 Standard"

/bin/rm -R /Users/Shared/AdobeCS6StandardAAMEEv1Install.pkg

This ensures the user is logged in for the PKG deployment.

Caper Remote
We have had mixed results using remote.
Using the main Distribution point has been near perfect. Using a distribution point for a remote location has not been as successful. I'm not sure if something is happening to the PKG during the sync so I zipped them and moved them over using another method. this worked for a while but then the techs using those distribution points were complaining it was not working. it would go about 90% and fail. Oddly enough sending it using remote a second time would work. Not ideal, but it worked for now. JAMF support said to try and chmod -R the pkg to 755.
I did not have 100% success with chmod. Still working though it, will update if anything changes. Once we have successfully deployed, we have had 0 issues with the suite. Just getting it there has been the challenge


Forum|alt.badge.img+7
  • Contributor
  • 27 replies
  • December 20, 2012

Thanks guys I will give this a try and post the findings.


donmontalvo
Forum|alt.badge.img+36
  • Legendary Contributor
  • 4293 replies
  • December 20, 2012

@TheDecline Just curious, did you exclude Adobe AIR when creating the PKG? What options did you select? Got screenshots?


donmontalvo
Forum|alt.badge.img+36
  • Legendary Contributor
  • 4293 replies
  • December 20, 2012

dupe


Forum|alt.badge.img+5
  • New Contributor
  • 75 replies
  • December 21, 2012

We use AAMEE 3.1 and its been working fine. As jafuller mentioned, be sure you select "This package must be installed to the boot volume at imaging time."

This past Sept, made the Design Std CS6 pkg with current patches (at the time). Tossed the pkg into Casper Admin and after re-imaging ~1000 machines as an upgrade to Mtn Lion, didn't run into any problems specifically related to that.

Also have a few other of the Suites packaged up for special deployment, with the current updates (as of the time of packaging). Those also work. Everyone gets Design Std, and if they want something else, then we uninstall that and install the other one (e.g. Prod Premium). Then toss on individual applications as required.

And we have AIR deselected as well.

AAMEE 3.1 seems to work pretty well and can go from nothing to a policy ready to go in less than half an hour with no fuss. (probably much less than a half hour, but I didn't time it).


Forum|alt.badge.img+10
  • Valued Contributor
  • 229 replies
  • December 21, 2012

Hello again, @don: Thank you, I checked one of those troublesome CS6 and AAM seems broken, as an error message appear saying I should contact the customer service. On this client I cannot even update AAM with the patch you suggested.
Then I tried with another one and - I can't remebember exactly how I did - but I somehow started downloading AAM that needed to be reinstalled and asked for my Adobe ID, like if CS6 registration was lost. But even after that the "loop" between AAM and any CS6 jumping in the dock started again.
So it looks like it's AAM fault, It would be interesting to know if there's a way to clean uninstall/reinstall it and see if it's only an issue related to registration or something else.
The weird thing is that CS6 might becomes unsable after several days and I would assume that if tehre was an issue with registration/installation, it should appear immediately...
Thank you all
Ciao
Carlo


donmontalvo
Forum|alt.badge.img+36
  • Legendary Contributor
  • 4293 replies
  • December 21, 2012

I should have mentioned, we migrated our Distribution Points back over to AFP to avoid the SMB issue (since it "breaks" our imaging workflow). So we're able to deploy CS6 at imaging time and via push (policy or SS). I'm hoping Adobe irons out the AAMEE/SMB issues. :)

@gregp When you uninstall, are you using the AAMEE generated "uninstaller" PKG? The reason I ask, Apple never supported or recommended uninstallers (one reason thrown at me is "uninstalls can't deal with merges"). I presume AAMEE uninstalls what its installer counterpart PKG installed. The problem there is if any changes are made to the suite, the AAMEE uninstaller breaks. Thankfully CS6 handles concurrent installs with fewer issues (really haven't run into any - yet) than older versions.

@dderusha Wow, your script would be helpful to us...mind if I steal it? :)

Don


Forum|alt.badge.img+7
  • Contributor
  • 27 replies
  • December 21, 2012

Ok I got it to work on imaging a new machine, Thank You jafuller, dderusha, gregp. I checked "This package must be installed to the boot volume at imaging time". I was hoping this was going to work when pushing from a policy but it fails and I get an error of Installation failed. The installer reported: installer: Package name is CS6 Web Premium 12_14_12
installer: Installing at base path /
installer: The install failed (The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.)

@ Don yes i did exclude Adobe AIR when creating the PKG. I didn't take any screenshots. I followed Administering-Adobe-Creative-Suite-6-with-the-Casper-Suite guide pdf


Forum|alt.badge.img+15
  • Contributor
  • 208 replies
  • December 21, 2012
@dderusha Wow, your script would be helpful to us...mind if I steal it? :)

what's mine is yours! I'm pretty sure we mashed that up from another script...

@TheDecline did you have a user logged in when this policy kicked off? .pkg's need a user logged in.

Dan


Forum|alt.badge.img+7
  • Contributor
  • 27 replies
  • December 21, 2012

@dderusha it was at log in screen, I will log a user in and test that. thanks


Forum|alt.badge.img+7
  • Contributor
  • 27 replies
  • December 21, 2012

Still fails while pushing it with a policy and being logged in as an admin user. I watched the whole install and you can see the CS6 applications being installed but then all disappear. The log reads as follows:

"Installation failed. The installer reported: installer: Package name is CS6 Web Premium 12_14_12
installer: Installing at base path /
installer: The install failed (The Installer encountered an error that caused the installation to fail. Contact the software manufacturer for assistance.)"


bentoms
Forum|alt.badge.img+35
  • Legendary Contributor
  • 4331 replies
  • December 21, 2012

You need to cache the package 1st, then install from cached.

Try installing the pkg manually from a server volume, you should get the same error


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings