You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(#1479) Implement using remembed arguments for uninstalls
This adds the ability for the remembered argument to be reused for
uninstalls. It can be controlled via the userememberedargs and
ignorerememberedargs arguments, or via the previously added feature.
"Use Remembered Options for Uninstall - use the arguments and options used during install/upgrade for uninstall. Does not override arguments being passed at runtime. Overrides the default feature '{0}' set to '{1}'. Available in 1.1.0+.".format_with(ApplicationParameters.Features.UseRememberedArgumentsForUninstalls,configuration.Features.UseRememberedArgumentsForUninstalls.to_string()),
"Ignore Remembered Options for Uninstall - ignore the arguments and options used during install for Uninstall. Overrides the default feature '{0}' set to '{1}'. Available in 1.1.0+.".format_with(ApplicationParameters.Features.UseRememberedArgumentsForUninstalls,configuration.Features.UseRememberedArgumentsForUninstalls.to_string()),
this.Log().Debug(ChocolateyLoggers.Verbose,"{0} - Adding '{1}' to arguments. Values not shown due to detected sensitive arguments".format_with(packageInfo.Package.Id,optionName.escape_curly_braces()));
1032
1031
}
1032
+
else
1033
+
{
1034
+
this.Log().Debug(ChocolateyLoggers.Verbose,"{0} - Adding '{1}' to arguments with a value of '{2}'".format_with(packageInfo.Package.Id,optionName.escape_curly_braces(),optionValue.escape_curly_braces()));
0 commit comments