Page 1 of 1
Silent Install of Adobe Flash
#1
Posted 23 November 2011 - 09:27 AM
I am trying to do a silent install of Adobe Flash. I have created a simple batch file to go to a particular server and share to runn the install for example "\\servername\flash\install_flash_player_11_active_x_32bit.exe" I cannot get it to run silently I have tried the /s switch, -install Any ideas would help. The batch files does run pauses at the license agreement.
Thanks.
Thanks.
#4
Posted 23 November 2011 - 11:50 AM
Maybe you can try to use the exe file and rename with "short name":
Choose the 32 bit to suit your needs:
http://www.adobe.com...tribution3.html
Works fine for me, like this:
FlashPlayer32bit.exe -install
I hope that can help you.
Choose the 32 bit to suit your needs:
http://www.adobe.com...tribution3.html
Works fine for me, like this:
FlashPlayer32bit.exe -install
I hope that can help you.
#5
Posted 23 November 2011 - 12:05 PM
5eraph I just tried your suggestion again. I placed the "-install" in separate quotes. Worked like a charm.
This post has been edited by Newtoscripts: 23 November 2011 - 12:06 PM
#7
Posted 26 February 2013 - 01:20 PM
using wget to download file install exe
@echo off
taskkill /IM firefox.exe /F > NUL
taskkill /IM chrome.exe /F > NUL
taskkill /IM iexplore.exe /F >NUL
taskkill /IM opera.exe /F >NUL
echo doenload Adobe, dont close this windows
wget http://download.macr...11_active_x.exe
wget http://download.macr...r_11_plugin.exe
echo;
echo install odobe flash player.....
echo start install software Download ...
echo;
echo Install Flash Player ActiveX for Internet Explorer ...
start "Install Flash Player ActiveX" /wait install_flash_player_11_active_x.exe -install
echo Install Flash Player Plugin for other browser
start "Install Flash Player Plugin" /wait install_flash_player_11_plugin.exe -install
echo;
echo finish install
del /S /Q install_flash_player_11_active_x.exe
del /S /Q install_flash_player_11_plugin.exe
@echo off
taskkill /IM firefox.exe /F > NUL
taskkill /IM chrome.exe /F > NUL
taskkill /IM iexplore.exe /F >NUL
taskkill /IM opera.exe /F >NUL
echo doenload Adobe, dont close this windows
wget http://download.macr...11_active_x.exe
wget http://download.macr...r_11_plugin.exe
echo;
echo install odobe flash player.....
echo start install software Download ...
echo;
echo Install Flash Player ActiveX for Internet Explorer ...
start "Install Flash Player ActiveX" /wait install_flash_player_11_active_x.exe -install
echo Install Flash Player Plugin for other browser
start "Install Flash Player Plugin" /wait install_flash_player_11_plugin.exe -install
echo;
echo finish install
del /S /Q install_flash_player_11_active_x.exe
del /S /Q install_flash_player_11_plugin.exe
#8
Posted 27 February 2013 - 02:38 AM
I have a link saved for quite some time. I believe it's almost impossible to click through to that page normally.
http://www.adobe.com...tribution3.html
I really despise web installers that are forced on you without the option to download full package. I suggest the msi version and just going msiexec /quiet /i install_flash_player_11_active_x.msi
http://www.adobe.com...tribution3.html
I really despise web installers that are forced on you without the option to download full package. I suggest the msi version and just going msiexec /quiet /i install_flash_player_11_active_x.msi
#9
Posted 27 February 2013 - 03:47 AM
Msiexec (command-line options)
Download link given post #4
Download link given post #4
This post has been edited by myselfidem: 27 February 2013 - 03:49 AM
#11
Posted 27 February 2013 - 05:36 AM
Using exe files with -install switches works always fine for me!
#12
Posted 14 March 2013 - 10:32 AM
Every option you could want is covered in their Administration Guide:
http://forums.adobe....admin_guide.pdf
Search for "Adobe Flash Extract" to learn how to pull out the MSI packages, etc. from their Administrator's download. Sign up and they'll usually give you a site license to use it in about 5 minutes.
http://forums.adobe....admin_guide.pdf
Search for "Adobe Flash Extract" to learn how to pull out the MSI packages, etc. from their Administrator's download. Sign up and they'll usually give you a site license to use it in about 5 minutes.
Share this topic:
Page 1 of 1



Help
Back to top










