① 軟體如何靜默安裝
NSIS
或者
Inno
Setup
製作的安裝包。它們都有靜默安裝參數。當然,也不排除某些軟體是二次封裝,然後使用對應封裝軟體的靜默參數。一般還是
Inno
Setup
和
NSIS
居多。國內個人用戶沒有人使用像
Install
Shield
的龐然大物來製作安裝程序。
② 靜默安裝選擇參數。
常用的軟體封包形式主要有以下幾個形式
Inno Setup
InstallShield
NSIS
Microsoft Windows Installer
WISE
QUOTE:
一.Inno Setup
使用Inno技術製成的程序安裝包可以使用/SILENT 和 /VERYSILENT參數進行靜默安裝
我不知道這兩個參數有什麼分別,因為它們實現的功能看上去是一樣的
setup.exe /VERYSILENT
你會看到一個對話框,詢問你是否打算繼續安裝:
我們可以通過使用一個參數跳過這個對話框:
setup.exe /VERYSILENT /SP-
有些利用Inno 技術做作的安裝包會在程序安裝完畢後自動運行所安裝的程序,例如ISOBuster
不過我們可以使用一個叫做Taskkill的系統自帶工具殺死相關的進程。
以下是一個可以用於批處理文件安裝由Inno打包的軟體的命令的示例:
ECHO.
ECHO 正在安裝ISOBuster 1.4
ECHO 請稍候...
start /wait %systemdrive%\install\Applications\ISOBuster\IsoBuster14.exe /VERYSILENT /SP-
ECHO.
ECHO Killing ISOBuster.exe process
taskkill.exe /F /IM isobuster.exe
ECHO.
我怎麼知道哪個安裝程序是用Inno 技術打包的?
這種軟體安裝時第一個界面一般如下圖所示
在窗口標題欄左側的圖標上點擊滑鼠左鍵
然後再探出菜單上點擊「About Setup」也可以看見安裝類型
更多使用Inno技術打包的軟體可用的參數可以在下面看到:
E文好的朋友可以仔細研究研究
With the Inno Setup Extentions in use the following command line switches become available:
SP-
Disables the This will install... Do you wish to continue? prompt at the beginning of Setup. Of course, this will have no
effect if the DisableStartupPrompt [Setup] section directive was set to yes.
/SILENT, /VERYSILENT
Instructs Setup to be silent or very silent. When Setup is silent the wizard and the background window are not displayed but
the installation progress window is. When a setup is very silent this installation progress window is not displayed.
Everything else is normal so for example error messages ring installation are displayed and the startup prompt is (if you
haven''t disabled it with DisableStartupPrompt or the ''/SP-'' command line option explained above)
If a restart is necessary and the ''/NORESTART'' command isn''t used (see below) and Setup is silent, it will display a
Reboot now? messagebox. If it''s very silent it will reboot without asking.
/NORESTART
Instructs Setup not to reboot even if it''s necessary.
/LOADINF="filename"
Instructs Setup to load the settings from the specified file after having checked the command line. This file can be prepared
using the ''/SAVEINF='' command as explained below.
/SAVEINF="filename"
Instructs Setup to save installation settings to the specified file.
/DIR="x:\dirname"
Overrides the default directory name displayed on the Select Destination Directory wizard page. A fully qualified pathname
must be specified. If the [Setup] section directive DisableDirPage was set to yes, this command line parameter is ignored.
/GROUP="folder name"
Overrides the default folder name displayed on the Select Start Menu Folder wizard page. If the [Setup] section directive
DisableProgramGroupPage was set to yes, this command line parameter is ignored.
/NOICONS
Instructs Setup to initially disable the Don''t create any icons check box on the Select Start Menu Folder wizard page.
/COMPONENTS="comma separated list of component names"
Overrides the default components settings. Using this command line parameter causes Setup to automatically select a custom
③ 沒有靜默參數的軟體如何靜默安裝
沒有靜默參數的軟體如何靜默安裝?
以QQ為例:
第一,進入命令框找到軟體目錄。
第二,QQ的靜默軟體參數為/S,WinSCP-5.15.7.exe是用inno Setup寫的所以用 /verysilent。
第三,在安裝過程中你的滑鼠會不斷地閃爍,但是你卻不用做任何操作。
注意事項:不同軟體格式的包靜默的參數不一樣,WISE Installer 和NullSoft Installation System 打包的軟體靜默參數為 /s
Inno Setup 打包的軟體靜默參數為 /silent
微軟的MSI 打包的軟體,靜默參數為 /qn或/qb都可以
④ 後怎麼自動靜默安裝軟體,比如QQ或殺毒軟體
1,這種情況肯定是電腦有病毒了呀
2,正常情況下,此類軟體是不會自動安裝的
3,遇到這個問題,先看最近安裝了什麼軟體,進行卸載了
4,或者就是電腦出現了病毒,需要用電腦管家及時殺毒。
⑤ 靜默安裝軟體
有些軟體及系統補丁,是有提供靜默安裝的參數的。
這樣我們可以寫一個批處理來自動安裝各軟體。
舉個例子,安裝WinRAR 和 IE 的flashplayer 的插件。新建記事本文檔install.txt。輸入如下內容:
echo off
echo Installing WinRAR 3.92...
start /wait wrar39b2sc.exe /s
echo Installing Flash player ActiveX...
start /wait install_flash_player_10_active_x.exe /s
然後把文件名改為install.cmd。這樣單機這個文件就會自動安裝軟體,而無需用戶干預。
/s就是這些軟體靜默安裝的參數,有些是/silent 或者是/q 等待。
微軟的軟體可以查看technet獲得相關參數,或者在命令行下對其軟體用/?命令查看幫助。復雜的使用部屬軟體,如Office 2003 Resource kit、Enterprise Deployment Pack for Windows Media Player。
在給幾個常用更新的軟體靜默安裝參數吧:
.Net Framework:
start /wait dotnetfx.exe /q:a /c:"install.exe /q"
Visual C++ redistributable:
vcredist_x86.exe /qb
DirectX 9.0c,需先用WinRAR解壓。比如解壓到dx文件夾
start /wait dx\dxsetup.exe /silent
Windows Installer
start /wait WindowsXP-KB942288-v3-x86.exe /passive /norestart
以上文件名及路徑僅供參考,按自己實際情況些,但最重要的是參數是對的。
---
按我的計劃,過幾天我有空會在我的空間里寫詳細的教程——製作無人值守安裝Window XP SP3(Unattended Windows),並且自動安裝補丁、常用軟體等。敬請關注!
⑥ 暴風激活靜默參數
能激活win7至win10的只有暴風激活工具 靜默參數是auto或者前面加個空格
⑦ 軟體靜默安裝參數怎麼使用,不要直接復制網上的,我想要用自己的話表達出來的
很簡單啊,我之前也不會用,現在我就來告訴大家如何使用軟體的靜默參數吧。
首先,我們下載一個軟體,比如:QQ,QQ瀏覽器,下載完成後,你可以放在你比較容易找到的目錄下,我這里就放在了桌面上的一個文件夾中,我這里用的是QQ軟體,然後,打開記事本,輸入軟體的下載名稱,一字不漏地寫好,或者把軟體再修改成你自己需要的名稱,我這里就寫成了QQ,然後在記事本中編輯內容「QQ.exe /S點擊左上角的」文件「點擊」另存為「把這個文件放在軟體的同一個目錄下,然後把後綴名寫好,我這里是」命令安裝.bat保存。雙擊bat文件就可以自動安裝了。因為QQ是軟體的名稱/S是靜默參數exe是軟體的後綴名,所以我們只要知道軟體的靜默參數就可以實現全自動安裝了。
⑧ it天空的首頁推廣助手的靜默參數怎麼設置
從哪裡弄來的程序啊