diff --git a/src/steps/os/windows.rs b/src/steps/os/windows.rs index dada49d7..5157f1b0 100644 --- a/src/steps/os/windows.rs +++ b/src/steps/os/windows.rs @@ -84,7 +84,10 @@ impl Powershell { print_separator("Powershell Modules Update"); let success = || -> Result<(), Error> { - run_type.execute(&powershell).arg("Update-Module").check_run()?; + run_type + .execute(&powershell) + .args(&["Update-Module", "-v"]) + .check_run()?; Ok(()) }() .is_ok();