mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-06 07:18:47 +02:00
Remove obsolete upload-to-discord.ps1
This commit is contained in:
parent
6d65fda172
commit
d416115737
@ -1,44 +0,0 @@
|
|||||||
*upload-to-discord.ps1*
|
|
||||||
================
|
|
||||||
|
|
||||||
upload-to-discord.ps1
|
|
||||||
|
|
||||||
|
|
||||||
Parameters
|
|
||||||
----------
|
|
||||||
```powershell
|
|
||||||
|
|
||||||
|
|
||||||
[<CommonParameters>]
|
|
||||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
|
||||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
|
||||||
```
|
|
||||||
|
|
||||||
Script Content
|
|
||||||
--------------
|
|
||||||
```powershell
|
|
||||||
function Upload-Discord {
|
|
||||||
|
|
||||||
[CmdletBinding()]
|
|
||||||
param (
|
|
||||||
[parameter(Position=0,Mandatory=$False)]
|
|
||||||
[string]$file,
|
|
||||||
[parameter(Position=1,Mandatory=$False)]
|
|
||||||
[string]$text
|
|
||||||
)
|
|
||||||
|
|
||||||
$hookurl = 'YOUR-DISCORD-WEBHOOK'
|
|
||||||
|
|
||||||
$Body = @{
|
|
||||||
'username' = $env:username
|
|
||||||
'content' = $text
|
|
||||||
}
|
|
||||||
|
|
||||||
if (-not ([string]::IsNullOrEmpty($text))){
|
|
||||||
Invoke-RestMethod -ContentType 'Application/Json' -Uri $hookurl -Method Post -Body ($Body | ConvertTo-Json)};
|
|
||||||
|
|
||||||
if (-not ([string]::IsNullOrEmpty($file))){curl.exe -F "file1=@$file" $hookurl}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
*(generated by convert-ps2md.ps1 using the comment-based help of upload-to-discord.ps1 as of 12/07/2023 20:24:24)*
|
|
@ -1,22 +0,0 @@
|
|||||||
function Upload-Discord {
|
|
||||||
|
|
||||||
[CmdletBinding()]
|
|
||||||
param (
|
|
||||||
[parameter(Position=0,Mandatory=$False)]
|
|
||||||
[string]$file,
|
|
||||||
[parameter(Position=1,Mandatory=$False)]
|
|
||||||
[string]$text
|
|
||||||
)
|
|
||||||
|
|
||||||
$hookurl = 'YOUR-DISCORD-WEBHOOK'
|
|
||||||
|
|
||||||
$Body = @{
|
|
||||||
'username' = $env:username
|
|
||||||
'content' = $text
|
|
||||||
}
|
|
||||||
|
|
||||||
if (-not ([string]::IsNullOrEmpty($text))){
|
|
||||||
Invoke-RestMethod -ContentType 'Application/Json' -Uri $hookurl -Method Post -Body ($Body | ConvertTo-Json)};
|
|
||||||
|
|
||||||
if (-not ([string]::IsNullOrEmpty($file))){curl.exe -F "file1=@$file" $hookurl}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user