Jump to content

Cant install Adobe Flash Player silent install


Waleed

Recommended Posts

hello every one

the new flash player is .. flashplayer10_1_p2_activex_121709 ... the version before this is so normal and it installed silently , but this version i culdn`t find the correct swiches...

/Silent, /s ... it doesn`t work

thanx 4 help

Link to comment
Share on other sites


I use AutoIt to install this flash player activex:

#cs ----------------------------------------------------------------------------

AutoIt Version: 3.3.6.0
Author: myName

Adobe Flash Player Plug-in ActiveX 10.0.45.2

Script Function:
Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here

#include <Misc.au3>
If _Singleton("Adobe Flash Player Plug-in ActiveX 10.0.45.2",1) = 0 Then
Exit
EndIf

Opt("TrayIconDebug", 1)

; Installer file name
$Installer = "FlashPlayerUpdate.exe"

If @OSArch = "X86" Then
$PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX", "UninstallString")
If FileExists($PreviousInstallation) Then
MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Adobe Flash Player Plug-in ActiveX before using this script", 4)
Exit
EndIf
EndIf

If @OSArch = "X64" Then
$PreviousInstallation = RegRead("HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX", "UninstallString")
If FileExists($PreviousInstallation) Then
MsgBox(0x40010, @ScriptName, "Please uninstall previous version of Adobe Flash Player Plug-in ActiveX before using this script", 4)
Exit
EndIf
EndIf

; Run the installer
Run($Installer)

; Close FlashUtil10e.exe process
ProcessWait("FlashUtil10e.exe")
Sleep(1000)
RunWait(@COMSPEC & " /c taskkill /f /im FlashUtil10e.exe", "", @SW_HIDE)

Edited by radix
Link to comment
Share on other sites

Guest alexsupra

For beta versions use /install switch for instalation.

thank you, it works! just tested on Flash Player 10.1.53.7 RC

Link to comment
Share on other sites

  • 2 weeks later...
hello every one

the new flash player is .. flashplayer10_1_p2_activex_121709 ... the version before this is so normal and it installed silently , but this version i culdn`t find the correct swiches...

/Silent, /s ... it doesn`t work

thanx 4 help

I have just downloaded flashplayer10_1_rc2_activex_041910.exe from filehippo.com, which is the latest as of today 28th april 2010

Install silently with

flashplayer10_1_rc2_activex_041910.exe -install

Uninstall silently with

flashplayer10_1_rc2_activex_041910.exe -uninstall -force

I found this from App Deploy

This will work under windows 7

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