Horje
slack  powershell command Code Example
slack powershell command
$uriSlack = "https://hooks.slack.com/services/{guids}"
$body = ConvertTo-Json @{
    pretext = "Hello world"
    text = "This is the text below with a blue thingy next to it"
    color = "#142954"
}

try {
    Invoke-RestMethod -uri $uriSlack -Method Post -body $body -ContentType 'application/json' | Out-Null
} catch {
    Write-Error (Get-Date) ": Update to Slack went wrong..."
}




Shell

Related
snap install epub Code Example snap install epub Code Example
ubuntu kubernetes monitoring tools free Code Example ubuntu kubernetes monitoring tools free Code Example
less start from end Code Example less start from end Code Example
fslroi Code Example fslroi Code Example
gitflow atlassian Code Example gitflow atlassian Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9