Forum Discussion
DarusDP
Jul 20, 2021Copper Contributor
Powershell Microsoft Team module v2.3.1 in GUI mode leaves 'Fetching teams' popup window open
I'm using the Powershell Microsoft Team module v2.3.1 in GUI mode. Doing a Get-Teams or Get-TeamUser cmdlet leaves a 'Fetching teams' popup window open. I've found no way in Powershell to close those...
- Jul 21, 2021Hello
You can try setting
$ProgressPreference = 'SilentlyContinue'
before calling your script
Jul 21, 2021
Hello
You can try setting
$ProgressPreference = 'SilentlyContinue'
before calling your script
You can try setting
$ProgressPreference = 'SilentlyContinue'
before calling your script
- DarusDPJul 21, 2021Copper Contributor
Perfect! That worked. Didn't know of that built-in preference variable. Thanks a million.
- Jul 21, 2021Glad to hear that, can you kindly mark my answer as the best solution, please? I appreciate it.