September 15, 200322 yr I was wondering if it possible to silently install phoshop 7Ive tried CLS@echo offECHO Installing Adobe PhotoshopECHO Please wait...start /wait $systemdrive%\Install\Graphics\PhotoShop\Setup.exe -s -f1"$systemdrive%\Install\Graphics\PhotoShop\setup.iss"ECHO.EXITTo no success. Thanks for any help.
September 15, 200322 yr 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"
September 15, 200322 yr also, with that, it tends to split into multiple install based processes... what you need to do is addcopy %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)
September 17, 200322 yr Author Silly me I also had a bum setup.iss file All is well and it works.Thanks
Create an account or sign in to comment