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)

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

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