We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Steps to reproduce:
Result: msiexec dialog window with usage information
Expected result: installed msi package
Analyze: Function policies/recipes/steps.go/stepInstallMsi contains code with default msiexec options
args := step.Flags if len(args) == 0 { args = []string{"/i", "/qn", "/norestart"} } args = append(args, path)
where path contain full path to *.msi file
By msiexec documentation parameter /i must contain value - package or product code. Then code may look like this:
args := step.Flags if len(args) == 0 { args = []string{"/qn", "/norestart", "/i"} } args = append(args, path)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce:
Result: msiexec dialog window with usage information
Expected result: installed msi package
Analyze:
Function policies/recipes/steps.go/stepInstallMsi contains code with default msiexec options
where path contain full path to *.msi file
By msiexec documentation parameter /i must contain value - package or product code. Then code may look like this:
The text was updated successfully, but these errors were encountered: