Hi, In this short post, we’ll see how we can prevent a PowerShell cmdlet from printing anything to the std output stream. There are two ways you can do this. Piping the output of the cmdlet to Out-Null e.g. Set-AzureRmContext -SubscriptionId “SubId” | Out-Null Assigning the output of the cmdlet to $null e.g. $null = […]