Next, the same command but temporarily disabling the live progress bar: ```powershell $progressPreference = 'SilentlyContinue' Expand-Archive -Path $path -DestinationPath $destPath $progressPreference = 'Continue' ``` This took around 25s -- much faster! This is where the bulk of time is wasted.
2 likes 1 replies
?