
Originally Posted by
jonnykewell1
Hi guys, Need a little help with this. I have rolled out the installation of the software as a trial package. Created a serialization folder with the EXE and XML inside. Made a script to copy these to a folder in program files and to then on startup run another script to run a command that adobe give you to run the exe file. Can I bugger get it to run! any help or scripts would be great, thanks!
For myself, I used the AAMEE to create a Photoshop TRIAL package as well as the serialization. Installed the Photoshop TRIAL on my master image. Just trying to test out the serialization, I would sysprep the machine and reboot but found it hanging at "Windows is finalizing your settings" stage (just prior to loading the user's desktop).
Based off of a user named StickyNote in another forum, I did the following:
TEST #1
[1] Placed the AdobeSerialization.exe and prov.xml into C:\Image\ps folder
[2] Within the same C:\Image\ps folder, I created a CS6_PS_Serialize.cmd with the following
Code:
@echo off
start /d C:\Image\ps\AdobeSerialization.exe --tool=VolumeSerialize
[3] Created a SetupComplete.cmd with the following
Code:
@C:\Image\ps\CS6_PS_Serialize.cmd
RESULT : Hanging at "Windows is finalizing your settings...."
____________________________________________
I found the following at some other site,
TEST #2
Code:
@echo off
start /d "path_to_file" AdobeSerialization.exe --tool=VolumeSerialize
del AdobeSerialization.cmd
[1] In my CS6_PS_Serialize.cmd,
Code:
@echo off
start /d C:\Image\ps\AdobeSerialization.exe --tool=VolumeSerialize
[2] I then altered the SetupComplete.cmd
Code:
start c:\Image\ps\CS6_PS_Serialize.cmd
RESULT: Command window open at C:\Windows\System32 complaining about "Windows cannot find '--tool=VolumeSerialize'. Make sure you typed the name correctly, and then try again."
Help......what am I missing or doing wrong?