Jump to content

Recommended Posts

Posted

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.


Posted (edited)

5eraph I just tried your suggestion again. I placed the "-install" in separate quotes. Worked like a charm. :thumbup

Edited by Newtoscripts
  • 1 year later...
  • 2 weeks later...
Posted

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.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_11_active_x.exe

wget http://download.macromedia.com/get/flashplayer/current/licensing/win/install_flash_player_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

  • 3 weeks later...
  • 2 months later...
Posted

/install is right switch to install flash silently. Use it with install_flash_player_ax.exe or/and install_flash_player.exe

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...