Suppress Loading Module Pop-up on dashboard

Product: PowerShell Universal
Version: 3.7.7

Out of curiosity, is there any way of suppressing the module loading pop up? Technically the module fully loads up, but the pop up never shows that it’s fully loaded and just stays on the screen. Cant really interact with it either. I’ve tried to | Out-Null the import-module, but doesn’t seem to help. Any thoughts?

image

1 Like

Have you try this:

$ProgressPreference = 'SilentlyContinue'    # Subsequent calls do not display UI.
Invoke-WebRequest ...
$ProgressPreference = 'Continue'            # Subsequent calls do display UI.
Write-Progress ...

or this: $global:ProgressPreference='SilentlyContinue

Oh nice! That worked like a charm, thanks :slightly_smiling_face: