mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 06:54:58 +00:00
Create base64decode.ps1
This commit is contained in:
parent
9e97f72cda
commit
d74eb7b7b7
3
app/assets/ps1/base64decode.ps1
Normal file
3
app/assets/ps1/base64decode.ps1
Normal file
|
@ -0,0 +1,3 @@
|
|||
[string]$sEncodedString=$args[0]
|
||||
$sDecodedString=[System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($sEncodedString))
|
||||
write-host "Encoded String:" $sDecodedString
|
Loading…
Reference in New Issue
Block a user