Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
6,590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $content = @"
  2. You can enter your message content here.
  3.  
  4. With a here-string, new lines are included as well!
  5.  
  6. Enjoy.
  7. "@
  8.  
  9. $payload = @{
  10.     message = $content
  11. }
  12.  
  13. Invoke-RestMethod -Uri $hookUrl -Method Post -Body ($payload | ConvertTo-Json)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement