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.
1 parent e12d364 commit 5fde679Copy full SHA for 5fde679
ci/tasks/install-windows-updates/run.sh
@@ -114,4 +114,7 @@ run_powershell_command_with_logging "Get-Hotfix > ${remote_hotfix_log_path}"
114
115
download_remote_file "${remote_hotfix_log_path}" hotfix-log/hotfixes.log
116
117
-run_powershell_command_with_logging "Dism.exe /online /Cleanup-Image /StartComponentCleanup"
+dism_cmd="Dism.exe /online /Cleanup-Image /StartComponentCleanup"
118
+echo "Running: ${dism_cmd}" >&2
119
+# not using `run_powershell_command_with_logging`, vmware tools may be stopped before pid can be fetched
120
+start_powershell_command "${dism_cmd}"
0 commit comments