Jump to content

I need to silently install some apps.


Recommended Posts


Posted

All of these can be easily found by using the search feature.

Like this since I have some extra time:

WinXP Manager 5.1.9.exe /s

ACDSee = Start installation and when the first window appear, go to Temp folder and pick up from there the file

ACDSee 10 Photo Manager.msi (is located in a folder C:\Documents and Settings\Your Name\Local Settings\Temp\...). then use the /qn switch

YPOPs! 0.9.5.1.exe /VERYSILENT

Shockwave = go here http://www.adobe.com/shockwave/download/alternates/ download and save the version you need then use the /s switch...

More to follow.

Posted

Kaspersky you extract the .msi file from inside the .exe with winrar or 7zip and then use the /qn switch

It all was very easy to find please use the search feature as it will usually give you a proper answer.

Posted

for YPOPs! use /VERYSILENT but during install when finish yes/no to run or start progrms ask me

for ACDSee 9 Photo Manager 9.0.55 use

[general]

builddate=2007/03/10

description=ACDSee 9 Photo Manager

language=English

title=ACDSee 9 Photo Manager

version=9.0.55

website=http://www.acdsee.com/

[EditFile]

SVCPACK.INF,SetupHotfixesToRun,AddProgram

[AddProgram]

"PATH_TO_ACDSEE_SETUP\setup.exe /s /v"/qn ALLOW_PRIVATE_FOLDERS=0

DISABLE_SOFTWARE_UPDATE=1 YAHOO_TOOLBAR_INSTALL=0 ALLUSERS=1

USERNAME=\"Hessam\" COMPANYNAME=\"Sports\" INSTALLDIR=\"C:\Program

Files\ACD Systems\" PIDKEY=\"xxxxxx-xxxxxx-xxxxxxx-xxxxxxx\""

how to edit not worked during install show all window and seriall number not worked

Posted

for WinXP Manager 5.1.9 /s not worked when install goto C:\Documents and Settings\Your Name\Local Settings\Temp\...).

and copy file{(204867)WinXP Manager} use method /quiet worked.

veryvery thankyou

Posted (edited)
for YPOPs! use /VERYSILENT but during install when finish yes/no to run or start progrms ask me

for ACDSee 9 Photo Manager 9.0.55 use

[general]

builddate=2007/03/10

description=ACDSee 9 Photo Manager

language=English

title=ACDSee 9 Photo Manager

version=9.0.55

website=http://www.acdsee.com/

[EditFile]

SVCPACK.INF,SetupHotfixesToRun,AddProgram

[AddProgram]

"PATH_TO_ACDSEE_SETUP\setup.exe /s /v"/qn ALLOW_PRIVATE_FOLDERS=0

DISABLE_SOFTWARE_UPDATE=1 YAHOO_TOOLBAR_INSTALL=0 ALLUSERS=1

USERNAME=\"Hessam\" COMPANYNAME=\"Sports\" INSTALLDIR=\"C:\Program

Files\ACD Systems\" PIDKEY=\"xxxxxx-xxxxxx-xxxxxxx-xxxxxxx\""

how to edit not worked during install show all window and seriall number not worked

This is for ACDSee Photo Manager 10.0.238

Run your installer with switch /a

Then in the new folder create by admin installation (with .msi file), copy the compiled exe of the next autoit script

(edit with your serial number and check that the name of executable file is the same):

Opt("TrayIconDebug", 1)
Opt("SendKeyDelay", 200)
; Executable file name
$EXECUTABLE = "ACDSee 10 Photo Manager.msi"
; Installation folder
$INSTALLLOCATION = @ProgramFilesDir & "\ACD Systems\"
; Serial number
$SN = "XXXXXX-XXXXX-XXXXXX-XXXXXXX"

If FileExists($INSTALLLOCATION & "\ACDSee\10.0\ACDSee10.exe") Then
MsgBox(0x40010, @ScriptName, "Please uninstall previous version of ACDSee Photo Manager before using this script", 4)
Exit
EndIf

; Run the installer
ShellExecuteWait($EXECUTABLE, "PIDKEY=" & $SN & " LICENSE_MODEL=Full YAHOO_TOOLBAR_INSTALL=0 ALLOW_PRIVATE_FOLDERS=0 DISABLE_SOFTWARE_UPDATE=1 ALLUSERS=1 /qb! /norestart")

; Close ACDSee Device Detector process
ProcessWait("DevDetect.exe")
$PID = ProcessExists("DevDetect.exe")
If $PID Then ProcessClose($PID)

; Prevent ACDSee Device Detector to run at Windows startup
RegDelete("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run", "Device Detector")

Build the silent installer and place it in svcpack folder.

Edited by radix
Posted

VERY THANKYOU radix WORKED YPOPs! &ACDSee Photo Manager 10.0.238 THANKS

AND

VERY THANKYOU Kelsenellenelvian FOR WinXP Manager &Kaspersky....

  • 1 month later...
Posted (edited)
All of these can be easily found by using the search feature.

Like this since I have some extra time:

WinXP Manager 5.1.9.exe /s

ACDSee = Start installation and when the first window appear, go to Temp folder and pick up from there the file

ACDSee 10 Photo Manager.msi (is located in a folder C:\Documents and Settings\Your Name\Local Settings\Temp\...). then use the /qn switch

YPOPs! 0.9.5.1.exe /VERYSILENT

Shockwave = go here http://www.adobe.com/shockwave/download/alternates/ download and save the version you need then use the /s switch...

More to follow.

Edited by hessam

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