SyntaxFix
Write A Post
Hire A Developer
Questions
If it's errors you want to hide you can do it like this
$ErrorActionPreference = "SilentlyContinue"; #This will hide errors $someObject.SomeFunction(); $ErrorActionPreference = "Continue"; #Turning errors back on