Verbose massages from AD

Product: PowerShell Universal
Version: 4.4.0/5.4

I think i saw somewhere a setting to actually disable it , but now i can not find it.
Anyway im dealing a lot with active directory in my apps. im trying to cache most of the objects from AD that i will use, but sometimes i need a real data to be fetched from AD.
And when its is reading data a small verbose message appearing on the left bottom corner of my screen.
Not a big deal, but its kind of distracting.
Any way to disable it ? Not errors verbose messages only those particular one ?

This is due to the progress preference. You can disable it at the top of your app.

$ProgressPreference = 'SilentlyContinue' 

Because the AD cmdlets are loading in a new runspace each time, it will write progress when it does so.

thx i will try, but i guess this is it :slight_smile: