I've captured a "New and Modified" using Composer 8.63, but looking for suggestions on what can safely be removed prior to building the package.
All my packaging is done on a clean machine with a fresh install. Does a standard snapshot not work?
Hey there - I am also "working" on Photoshop Elements 11....
a) I capture (as root) with composer from a clean machine and killed all branches but the /Applications and the /Library
b) the "original" link to the editor under "Photoshop Elements" is dead but I can start the ps elements editor from the /Support files folder
c) It runs not really smooth - the switching between the modes (expert, guided, quick) freezes soon
Any ideas?
and: What did you do with the Adobe ID ? It will pop up time after time if you do not fill it in?
last: I need to deploy also to machines with CS6: Would you therefore use as "clean machine" for capturing a machine set up with CS6 ?
Thanx a lot!
AAMEE google it learn it love it. https://jamfnation.jamfsoftware.com/viewProduct.html?id=201&view=info
AAMEE doesn't work with Elements
creative cloud elements is there, sorry i never packaged an older version of elements before. and CS6 you should be using AAMEE
thanx - I am glad we are on the same page :-)
Yes - we use AAMEE for CS6. And for the moment I have to stick to the "old" Elements 11 - and you are totally right AAMEE does not work with Elements.
I'm currently working on PSE 12 and I am not having any luck with AAMEE, any version. Does anyone have experience or hints with this version?
If I manually install and activate with adobe_prtk all is well, until I install the captured version.
FYI This doesn't work:
http://helpx.adobe.com/photoshop-elements/kb/silent-install-instructions-photoshop-elements.html
...less than a hint:
I captured PSE11 with composer - made a dmg to use FUT FEU
This worked on machines without CS6 - since they share some folders and I did not have to figure that out.
PSE 12 just does not like the snapshot installer. Each time I try, I receive an error that "Your application install seems to be damaged..." even when not editing the package and FUT and FEU.
Looks like adobe has a silent install option, but it requires the media be copied to the client then run from install.app. Looks like I will have to leverage that.
Has anyone had any luck with packaging PSE12?
@a.simmons what I did was create a package that copied the install media to the client to the path of your choosing. I also included the adobe_prtk as part if the package. Then after the media was copied, I created a script that ran adobes silent install followed by the prtk activation. I will see if I can drum up some more details later but it worked like a charm once I figured out their terrible and missing documentation
Thanks a lot Freddie, a copy of that script would be fantastic.
@a.simmons][/url][/url][/url][/url][/url Here you go!
#!/bin/bash
# Install Adobe Photoshop Elements Silently
/Library/HoldingRoom/Elements12/Install.app/Contents/MacOS/Install --mode=silent --deploymentFile=/Library/HoldingRoom/Elements12/deploy/AdobePhotoshopElements12en_US.install.xml
# Activate with Volume License and disable adobe sign in prompt
/usr/sbin/adobe_prtk --tool=VolumeSerialize --generate --serial=####-####-####-####-####-#### --leid="V7{}PhotoshopElements-EMT12-Mac-GM" --regsuppress=ss
# You have to run this again to actually get the activation to work, why I don't know.
/usr/sbin/adobe_prtk --tool=VolumeSerialize
# You can Delete the install media here if space is an issue.
# I left it on the client in case it is needed on site.
Information About The Silent Install of Elements 12 with registration info at the bottom of the page.
http://helpx.adobe.com/photoshop-elements/kb/silent-install-instructions-photoshop-elements2.html
You will need to do the following:
- Create a Composer Image that Copies the entire Elements 12 Install Folder to the client (I used /Library/HoldingRoom)
- Add the adobe_prtk to the Composer Image to the path of your choosing (I used /usr/sbin)
- Create a policy and add the composer install dmg and your customized script from the code above (with your serial number and correct paths to the install.app and adobe_prtk)
- Have that script run AFTER the media is "installed" to your client. The script will handle the actual install and activation
- Cross your fingers and wish it good luck on its journey
Let me know if you have any other specific questions as there is a good chance I left something out.
Hi Freedie,
Thanks for your help and thanks a lot for the script. It worked great installing the .dmg then installing the software. The only problem I had was when I opened the program I would be prompted to sign in with my Adobe ID.
In my script I did enter:
-- leid=”V7{}PremiereElements-EMT12-Mac-GM” --regsuppress=ss
Not sure how to remove the Adobe ID prompt so that the clients don't get prompted.
Make sure you are running the following after the regsuppress.
/usr/sbin/adobe_prtk --tool=VolumeSerialize
If you get two successful return codes (0) then you should never get the adobe ID login prompt.
Hi Freddie,
I have this about set except - where do you find/get the "adobe_prtk" command? I have Adobe Application Manager Enterprise Edition, but I can't seem to find this piece to add to my "cache" package/policy. Everything else is set.
The main page is here.
http://www.adobe.com/devnet/creativesuite/enterprisedeployment.html
The link you need is the Adobe Provisioning Toolkit Enterprise Edition for CS 5 (I think this is the right one off the top of my head. If not try CS 6)
http://download.macromedia.com/pub/developer/creativesuite/APTEE/Mac/adobe_prtk_22012.dmg
And finally tech note info here:
Good luck! Let me know how it goes!
Thanks!
I'm trying to pack Photoshop Elements 11 but already the silent-install Fails:
/Library/HoldingRoom/Elements11/Install.app/Contents/MacOS/Install --mode=silent --deploymentFile=/Library/HoldingRoom/Elements11/deploy/AdobePhotoshopElements11en_US.install.xml
It says unable to initialise objects. Exiting Installer with Code: -3
What did I miss?
@kswiedikon My method was with Elements 12, so the syntax may be different for the silent install and I am not having much luck finding anything that relates specifically to PSE 11 Silent Install Errors on Adobes site.
It does look like if there were any previous instances of Adobe Photoshop on the system that it needs to be removed first: http://forums.adobe.com/message/4886903
Also, there my be a log in ~/Library/Logs/Adobe or /Library/Logs/Adobe that can give you some additional help.
Freddie,
Thanks for the links!!! Got it going with your script!!!
In our case we have a "company" folder in the root Library folder, with icons, desktop images, and a "resources" folder to dump installers in like we've had to do with Photoshop Elements (also have to with Extensis Suitcase). I moved the "Adobe_prtk" command in with the Elements installer folder and ran it from there. Then deleted the whole installer folder when it was all done.
Thanks again for you help!!!!
Glad to help @ronb!
Well maybe I missed something. I thought I'd tested this out on the lab bench. But now, a few weeks later I install it for the first time and it's asking for the Apple ID log in. Doesn't this script suppress that as well? I don't recall seeing it in testing.
@ronb You're correct. The regsuppress with a successful activation should supress the adobe ID sign in prompt. I would run the command again and look at the output to see if there was a successful exit code or if it reports any errors.
I haven't heard of any issues from this group since deploying, but that doesn't mean they aren't signing in each time they try to use it. :-)
Ok. Just got off the phone with Adobe support and here's what I found out -
- Manually run (from yours or a lab system) this command first: /Library/pennwell/resources/Elements12/adobe_prtk --tool=VolumeSerialize --generate --serial=XXXX-XXXX-XXXX-XXXX-XXXX-XXXX --leid="V7{}PhotoshopElements-EMT12-Mac-GM" --regsuppress=ss {where the path in front is of course where you have the "adobe_prtk" file, and the X's need to be replaced with your serial number}
- This will create a file in the same path as your "adobe_prtk" command file called "prov.xml"
- Create your Composer package with the "adobe_prtk" and "prov.xml" files in the path you want them in. I actually installed these files into the same location as my installer - /Library/pennwell/resources/Elements12/.
- Your script should then look like this (with appropriate paths) -
#!/bin/bash
# Install Adobe Photoshop Elements Silently
/Library/pennwell/resources/Elements12/Install.app/Contents/MacOS/Install --mode=silent --deploymentFile=/Library/pennwell/resources/Elements12/deploy/AdobePhotoshopElements12en_US.install.xml
# You have to run this again to actually get the activation to work, why I don't know.
/Library/pennwell/resources/Elements12/adobe_prtk --tool=VolumeSerialize --provfile=prov.xml
# Delete installer folder
rm -R /Library/pennwell/resources/Elements12/
Note that the two change in Freddie's script earlier are:
. the removal of the serializing line because the added "prov.xml" file has done that already
. adding "--provfile=prov.xml" at the end of the last adobe_prtk command line
. our "custom" script also deletes the entire installer folder when complete
Kudo's to Adobe support for calling me back within 3 hours of turning on this solution that worked!
@ronb I stumbled upon here... I am looking for a way to register my copy of PSE12 with out having to remain signed in to my Adobe account. Will this information help me to acheive that?
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.