导航:首页 > 免费软件 > 软件静默参数怎样设置

软件静默参数怎样设置

发布时间:2022-04-16 13:05:04

① 软件如何静默安装

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天空的首页推广助手的静默参数怎么设置

从哪里弄来的程序啊

阅读全文

与软件静默参数怎样设置相关的资料

热点内容
电脑上怎么下载班智达的软件 浏览:1105
无痕迹消除图片软件 浏览:675
免费小票软件 浏览:909
华为在哪里设置软件停止运行 浏览:918
用电脑键盘调节声音大小 浏览:1219
自动刷软件赚钱 浏览:1221
古装连续剧免费版 浏览:1373
工免费漫画 浏览:1113
手机软件专门储存文件 浏览:1470
uos如何用命令安装软件 浏览:1263
有线耳机插电脑麦克风 浏览:616
侏罗纪世界3在线观看完整免费 浏览:957
单个软件怎么设置名称 浏览:681
凤凰网电脑版下载视频怎么下载视频怎么下载 浏览:1344
明白之后如何免费获得无人机 浏览:793
如何解禁软件菜单 浏览:799
副路由器连接电脑视频 浏览:1316
内置wifi电视如何装软件 浏览:1053
手机换零免费雪碧 浏览:1549
国行苹果如何下载美版软件 浏览:1160