Last active
June 14, 2020 09:17
-
-
Save TristanvanOnselen/90ba99c10d24ef828b798c697e0b9b21 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##Intune-Decode-Base64.ps1## | |
$Base64Code = read-host 'fill in the .txt file containing the base64 code to decode' | |
$Code = Get-Content $Base64Code [System.Text.Encoding]::ASCII.GetString([System.Convert]::FromBase64String($Code))| ` | |
out-file -Encoding "ascii" output.ps1 | |
notepad.exe .\output.ps1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment