Advertisement
Guest User

Untitled

a guest
May 26th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Try
  2. {
  3. Get-MsolSubscription -ErrorAction Stop | Out-Null
  4. }
  5. Catch [Microsoft.Online.Administration.Automation.MicrosoftOnlineException]
  6. {
  7. $Err = $_
  8. Write-host -fore red "$($Err.Exception.Message)`nException: $($Err.Exception.GetType().FullName)"
  9. }
  10. Catch
  11. {
  12. $Err = $_
  13. write-host -fore red $Err.Exception.Message
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement