Jump to content

Photoshop CS2


Astie

Recommended Posts

  • 3 weeks later...

Hi,

Just to be 100% sure :

It's is not possible to completely install photoshop CS2 silently just with batch ?

Without any kind of serial or registration windows, even int the first launch of the soft, or without the 30days expiration ?

Scuse my poor english :blushing:

Tnx for the reply

Link to comment
Share on other sites

Hi,

Just to be 100% sure :

It's is not possible to completely install photoshop CS2 silently just with batch ?

Without any kind of serial or registration windows, even int the first launch of the soft, or without the 30days expiration ?

Scuse my poor english :blushing:

Tnx for the reply

Hi,

It is very possible to do what you just asked. But currently, it is difficult to do on MULTIPLE machines. It is not advisable to use this for mass deployment without the use of an autoit script that runs a keygen. Don't expect any help past that point, though. Even suggesting that to you might be pushing the envelope.

But if you're just going to use this on your own machine, it's very possible, and mildly easy (just time consuming).

Link to comment
Share on other sites

It's not difficult at all to make an AutoIt script that performs a LEGAL online activation. In fact I did this for a design studio. Nothing fancy about the AutoIt script either. Just your basic ControlClick and ControlSend. In fact there's probably an example in the AutoIt sticky thread in this forum. The only part that's possibly tricky is finding and deleting the custom action that pops up activation during the install. If you delete that custom action, activation can wait until the first time you run Photoshop.

Link to comment
Share on other sites

Hi,

Just to be 100% sure :

It's is not possible to completely install photoshop CS2 silently just with batch ?

Without any kind of serial or registration windows, even int the first launch of the soft, or without the 30days expiration ?

Scuse my poor english :blushing:

Tnx for the reply

Hi,

It is very possible to do what you just asked. But currently, it is difficult to do on MULTIPLE machines. It is not advisable to use this for mass deployment without the use of an autoit script that runs a keygen. Don't expect any help past that point, though. Even suggesting that to you might be pushing the envelope.

But if you're just going to use this on your own machine, it's very possible, and mildly easy (just time consuming).

Yeah, i'm able to make a total silent install on one machine (with the dat file).

i will jste know if its possible on multiple machien, because i don't have aces to internet when i install windows on multiple computer.

But if it's impossible, i will made the classical online registration.

Tnx for your help

Link to comment
Share on other sites

Hi,

My point is to make a  folder inside %systemdrive%\Documents and Settings\All Users\Application Data to paste the folder AdobeSystems\product lisences\B2B86000.dat before I execute CS2 the first time.

If we can do this we can close this topic :)

and I used command MKDIR but this is making folders inside the point were you directed to and makes a folder "Documents" "and" "Settings" etc etc.

can I not copy/paste a folder like "Adobe Systems\Product lisences\B2B86000.dat ,thus this folder with the folder and .dat inside it copying to the directory?

Then we are ready.

regards

ps:must go to work now I am back in 6 hours  :) and also we are going to solve this problem today I hope,I am brainstorming with it.

Okay, I think I've got it... Apparently copy wasn't creating the directory structure properly so I first moved the DAT file to Application Data, then created the subdirs, then moved the DAT file to Product Licenses.

cmdow @ /HID
@echo off

regedit /S alreadyregged.reg

msiexec /i "Adobe Photoshop CS2.msi" /qb UNITYSELECTION="RETAIL" SERIALNUMBERTEMP="XXXXXXXXXXXXXXXXXXXXXXXX"
msiexec /i "bridge\Adobe Bridge 1.0.msi" /qb
msiexec /i "commonfilesinstaller\Adobe Common File Installer.msi" /qb
msiexec /i "help center\Adobe Help Center 1.0.msi" /qb
copy B2B86000.dat "%ALLUSERSPROFILE%\Application Data"
cd "%ALLUSERSPROFILE%\Application Data"
mkdir "Adobe Systems\Product Licenses"
move B2B86000.dat "Adobe Systems\Product Licenses"

exit

Uhm, question, why didn't you put this in the $OEM$\$Docs\All Users\Application Data\Adobe Systems\Product Licenses on your CD :) This will save you about 4 lines of code ;)

Also going to try this way of installing right now.

Link to comment
Share on other sites

Right guys,

I've read through the majority of posts regarding CS2 silent installs and have a couple of issues i need help with.

I'll explain what i am trying to do first:

Unattended XP set-up - using RunOnceEX to install programs

So far everything is isntalling well APART from Photoshop CS2

I've downloaded the modified msi from these pages and constructed the appropriate files to do the following:

Everything is placed in $OEM$\Install\Adobe Photoshop CS2

RunOnceEX calls the reg file and a install.cmd (both of which are in above folder)

At the minute i think i have an issue with my code as I get 4 'installer cannot be found' errors messages during the RunOnceEX process (i think caused by an issue with ' in the code) - however when it did find the installers i got 'invalid windows installer' error message.

So to continue through the RunOnceEX install process i have to be there and close the error messages.

Thing is, once its rebooted after this process i can route to my XP CD run the install.cmd file from there and everything is perfect - totally silent and requring no user input and fully activated...

I will post my code later when i get home.

I dont know if this is the best way to do it but i was struggling with coding it to do this directly with RunOnceEX so just thought it easier to call a premade cmd based around the examples in this thread...

If i could sort this my own unattended XP would be complete! - so any input/help would be greatly appreciated!

Thanks

Link to comment
Share on other sites

Ok guys,

A day late but heres my appropriate code!

RunOnceEX.cmd entry:

REG ADD %KEY%\097 /VE /D "Installing Adobe Photoshop CS2" /f

REG ADD %KEY%\097 /V 1 /D "\"%systemdrive%\Install\Adobe Photoshop CS2\cs2install.cmd"\" /f

Cs2install.cmd:
cmdow @ /HID

@echo off

regedit /S reg.reg

msiexec /i "Adobe Photoshop CS2.msi" /qb UNITYSELECTION="RETAIL" SERIALNUMBERTEMP="***removed***"

msiexec /i "bridge\Adobe Bridge 1.0.msi" /qb

msiexec /i "commonfilesinstaller\Adobe Common File Installer.msi" /qb

msiexec /i "help center\Adobe Help Center 1.0.msi" /qb

copy B2B86000.dat "%ALLUSERSPROFILE%\Application Data"

cd "%ALLUSERSPROFILE%\Application Data"

mkdir "Adobe Systems\Product Licenses"

move B2B86000.dat "Adobe Systems\Product Licenses"

exit

Thanks

Link to comment
Share on other sites

i will install it using my own mst file without the customaction.

i have one question for the activation. i work with a few computers that run photoshop (each is licensed properly). will it work for all of them if i copy all .dat files (in each computer) in my unattended to the license folder? so this way i can use the same setup for all the computers here and all will be activated with their proper license?

thanks.

i think making a mst file during setup routine will help you get rid of file associations and other options. just a suggestion.

Link to comment
Share on other sites

  • 4 weeks later...
Hi,

My point is to make a folder inside %systemdrive%\Documents and Settings\All Users\Application Data to paste the folder AdobeSystems\product lisences\B2B86000.dat before I execute CS2 the first time.

If we can do this we can close this topic :)

and I used command MKDIR but this is making folders inside the point were you directed to and makes a folder "Documents" "and" "Settings" etc etc.

can I not copy/paste a folder like "Adobe Systems\Product lisences\B2B86000.dat ,thus this folder with the folder and .dat inside it copying to the directory?

Then we are ready.

regards

ps:must go to work now I am back in 6 hours :) and also we are going to solve this problem today I hope,I am brainstorming with it.

Okay, I think I've got it... Apparently copy wasn't creating the directory structure properly so I first moved the DAT file to Application Data, then created the subdirs, then moved the DAT file to Product Licenses.

cmdow @ /HID
@echo off

regedit /S alreadyregged.reg

msiexec /i "Adobe Photoshop CS2.msi" /qb UNITYSELECTION="RETAIL" SERIALNUMBERTEMP="XXXXXXXXXXXXXXXXXXXXXXXX"
msiexec /i "bridge\Adobe Bridge 1.0.msi" /qb
msiexec /i "commonfilesinstaller\Adobe Common File Installer.msi" /qb
msiexec /i "help center\Adobe Help Center 1.0.msi" /qb
copy B2B86000.dat "%ALLUSERSPROFILE%\Application Data"
cd "%ALLUSERSPROFILE%\Application Data"
mkdir "Adobe Systems\Product Licenses"
move B2B86000.dat "Adobe Systems\Product Licenses"

exit

Anyone know why I get the following error during the runonceex portion of setup:

"this installation package could not be opened.verify that the package exists and that you can access it"

Link to comment
Share on other sites

I do all CS2 products the same...

1. Run setup, capture Activation with Adminstudio (it's 1 reg entry & 1 file).

2. Add two items to msi file with editor.

3. Do an admin install to 'network image' location. (remove .msi filename spaces!)

4. Make a 7zip sfx setup. :whistle:

Photoshop's setup 'bundles' all the msi installers together into one 'package'.

To do a silent install, just, 1. do an admin install for each msi installer to the same location... 2. add Abcpy.ini with your serial... 3. add a batch to run each .msi, launch it silently with hidec.exe (in config,txt, a 7zip sfx element)

You'll notice the only diff. is each portion of Photoshop may be removed individually in add-remove, kinda nice, really.

Final installer 185mb. after 7zip sfx is done.

I'll attatch samples from my build folder.

one thought...

Wininstall LE 2003 may also be used to capture activation and edit .msi file. It's much smaller and MUCH cheaper, but that's another topic.

pscs2_bld.zip

Edited by thuun derboy
Link to comment
Share on other sites

  • 1 year later...
  • 1 year later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...