Jump to content

Recommended Posts

Posted

I was wondering if it possible to silently install phoshop 7

Ive tried

CLS

@echo off

ECHO Installing Adobe Photoshop

ECHO Please wait...

start /wait $systemdrive%\Install\Graphics\PhotoShop\Setup.exe -s

-f1"$systemdrive%\Install\Graphics\PhotoShop\setup.iss"

ECHO.

EXIT

To no success. Thanks for any help.


Posted

You really should proof-read the command you're using as I've spotted two mistakes: $systemdrive% and a blank line space which breaks the command used.

Here's the fixed command:

start /wait %systemdrive%\Install\Graphics\PhotoShop\Setup.exe -s -f1"%systemdrive%\Install\Graphics\PhotoShop\setup.iss"

Posted

also, with that, it tends to split into multiple install based processes... what you need to do is add

copy %systemdrive%\install\tools\sleep.exe %systemroot%\

start /wait %systemroot%\sleep.exe 120

make sure you download sleep.exe and place it in a dir of your setup so the cmd will pause and not continue until the 2 minutes are up (which will give enough time to fully install)

Link to sleep (zipped)

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...