English 中文(简体)
• 如何在无口声的情况下安装抗反转录器并开放浏览器
原标题:how to install adobe reader silent without gui and opening browser

I m making a autoinstall batch program, and I want to install adobe reader silent. The problem is that it won t install silent. I m getting the gui asking me to click next and wait. After it is installed it will open the browser. Is there anything so I can install Adobe Reader silent and without opening the browser.

This is the batch code:

@ECHO OFF
cd /d "%~dp0"
wget http://aihdownload.adobe.com/bin/install_reader11_nl_mssd_aih.exe -O Reader.exe
Reader.exe /S /norestart ALLUSERS=1 EULA_ACCEPT=YES

I ve also tried this:

@ECHO OFF
wget http://aihdownload.adobe.com/bin/install_reader11_nl_mssd_aih.exe -O Reader.exe
start /wait Reader.exe /s

I couldn t find a fix for the browser. Hope this code helps a bit. I could use msi files but I can t find where to download it. Here is the ftp from adobe for the exe file:

Ftp: ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.09/en_US/
Exe: ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.09/en_US/AdbeRdr11009_en_US.exe

最佳回答

在大多数情况下,msichangees /quiet /passive /norestart"将做trick

To help you take it further here is Adobe Reader XI 11.0.07 full, Switchless install - completely silent!! - no desktop icon - checked on win 7 (x64x86)

The silent installer can be used in any Windows version that is compatible with the originals setup.

由双赢网创建。

可以自动从这里下载确定大多数安装器开关的纳米工具:< rel=“nofollow”职称=“Universal-Silent-Switch-Finder” Universal-Silent-Switch-Finder

如果你希望这一工具在“希望”上加起来,就能够访问。 查阅论坛附加部分。

Hope my post makes your batch endeavors easier :) L8r

问题回答

帮助。 我发现这是我需要的守则。 感谢莫菲

wget ftp://ftp.adobe.com/pub/adobe/reader/win/11.x/11.0.00/en_US/AdbeRdr11000_en_US.msi -O Reader.msi
msiexec.exe /I Reader.msi /QN 

只要我能够回答的话,我就会说几句。

最好的解决办法是建立最高质量的档案,以便:

Disable product updates Disable Help Disable Product Improvement Program Disable Viewing of PDF with Ads for Adobe PDF Disable all Adobe online services based workflows and entry points

下载后,从批量中操作以下指挥:

@echo silent install Adobe Reader 11.0.10

start /wait msiexec /i "%~dp0AcroRead.msi" TRANSFORMS="AcroRead.mst" /Update "%~dp0AdbeRdrUpd11010.msp" /qn

创建最低档案并不容易。 http://www.get-itsolutions.com/silent-install-adobe-reader-11-0-10-and-disupdate/“rel=“nofollow noreferer”>。

1. 使用权 壳牌和Adobe Reader .exe:

Start-Process "C:TEMPAcroRdrDC2300820421_en_US.exe" -ArgumentList "/sPB /rs /msi"




相关问题
How do I extract web wiki pages, which are password protected?

I wish to get a few web pages and the sub-links on those which are password protected. I have the user name and the password and can access them from the normal browser UI. But As I wish to save these ...

Limit WGET ing by timer, how to do this?

Sorry for my english (i m rus) I save MJPEG stream from IP-camera with wget wget -O 2010-01-12_01.mjpeg http://172.16.1.220:8070/video.mjpg I need limit saving by hour (every hour is a another file ...

Why does WGET return 2 error messages before succeeding?

I am using a script to pull down some XML data on a authentication required URL with WGET. In doing so, my script produces the following output for each url accessed (IPs and hostnames changed to ...

How to grab live text from a URL?

Im trying to grab all data(text) coming from a URL which is constantly sending text, I tried using PHP but that would mean having the script running the whole time which it isn’t really made for (I ...

Confirmation of Successful HTTP Download in Python

Is there a easy and reliable way to confirm that a web download completed successfully to download using Python or WGET [for large files]? I want to make sure the file downloaded in its entirety ...

Controlling wget with PHP

I’m writing a command line PHP console script to watch for new URLs and launch (large) downloads for a client’s project I am working on. The client is currently manually downloading them with a ...

store wget link into a database (php)

I m trying to find a solution to download automatically .flv link everyday from a website using wget and to store all the links into a database to stream them in my website. (all in php) How to do ...

热门标签