cheesehead Posted September 15, 2003 Posted September 15, 2003 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.
Aaron Posted September 15, 2003 Posted September 15, 2003 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"
Budster Posted September 15, 2003 Posted September 15, 2003 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)
cheesehead Posted September 15, 2003 Author Posted September 15, 2003 Even correcting my mistakes it does not work, I run it then it quits
Yazoo Posted September 16, 2003 Posted September 16, 2003 works fine for me, loaded smoothly and quietly without using sleep.exe.
cheesehead Posted September 17, 2003 Author Posted September 17, 2003 Silly me I also had a bum setup.iss file All is well and it works.Thanks
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now