Jump to content

More silent install updates!


songokussm

Recommended Posts

This is my list of apps that can be silently isntalled, but the information located in the forums is out dated.

Acrobat 3D-

http://www.adobe.com/support/techdocs/330817.html ----tells you how

http://www.adobe.com/support/downloads/detail.jsp?ftpID=2709 --some software you need

Photoshop CS2-

http://www.adobe.com/support/techdocs/331261.html -works with out cracking your msi files :D

Please note for Photoshop CS2 you need to import some registry keys. I figured it out once, but forgot how. In other words it worked, but i cant find the guide on how to import registry entries. SO if you find that out it will work fine. Good luck!

EDIT:

After a few hours of trying to used reg add i had no luck. can someone please point me in the right direction?

here's the reg info i want to import during the windows install, preferably before it stats installing the app that needs it.

---------------

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{236BB7C4-4419-42FD-0409-1E257A25E34D}]

"EPIC_REGS_TYPE"=dword:00000004

"EPIC_REGS_STATE"=dword:00000002

"EPIC_REGS_LANG"=dword:00000000

"EPIC_REGS_COUNT"=dword:00000000

-------------------------

Its the same reg info needed to suppress the activation for Photoshop.

Azureus 2.5.0.0

/S (case matters)

Edited by songokussm
Link to comment
Share on other sites


Something like this may help you out

@ECHO OFF &SETLOCAL

:: CREATE YOUR SPECIFIC VARIABLES
SET "PATHTOAPP=%SYSTEMDRIVE%\INSTALL\PHOTOSHOP"
SET "UNINSTKEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
SET "KEYCLSID={236BB7C4-4419-42FD-0407-1E257A25E34D}"

:: START THE INSTALL
START "" /WAIT MSIEXEC /I "%PATHTOAPP%\ADOBE PHOTOSHOP CS2.MSI" /QN

:: ADD YOUR REGISTRY KEYS
REG ADD HKLM\SOFTWARE\Adobe\Updater /V Enterprise /T REG_DWORD /D 1 /F >NUL
REG ADD %UNINSTKEY%\%KEYCLSID% /V EPIC_REGS_TYPE /T REG_DWORD /D 4 /F >NUL
REG ADD %UNINSTKEY%\%KEYCLSID% /V EPIC_REGS_STATE /T REG_DWORD /D 2 /F >NUL
REG ADD %UNINSTKEY%\%KEYCLSID% /V EPIC_REGS_LANG /T REG_DWORD /D 0 /F >NUL
REG ADD %UNINSTKEY%\%KEYCLSID% /V EPIC_REGS_COUNT /T REG_DWORD /D 0 /F >NUL
ENDLOCAL &GOTO :EOF

Link to comment
Share on other sites

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