We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/NS
1 parent b051820 commit 7327602Copy full SHA for 7327602
plugins/updater/src/config.rs
@@ -32,6 +32,9 @@ impl WindowsUpdateInstallMode {
32
33
/// Returns the associated nsis arguments.
34
pub fn nsis_args(&self) -> &'static [&'static str] {
35
+ // `/P`: Passive
36
+ // `/S`: Silent
37
+ // `/R`: Restart
38
match self {
39
Self::Passive => &["/P", "/R"],
40
Self::Quiet => &["/S", "/R"],
plugins/updater/src/updater.rs
@@ -556,7 +556,6 @@ impl Update {
556
match updater_type {
557
WindowsUpdaterType::Nsis => {
558
installer_args.extend(install_mode.nsis_args().iter().map(OsStr::new));
559
- installer_args.push(OsStr::new("/NS"));
560
installer_args.push(OsStr::new("/UPDATE"));
561
}
562
WindowsUpdaterType::Msi => {
0 commit comments