Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

base64 decode in powershell

---decode
$input = “aHR0cHM6Ly93d3cueW91dHViZS5jb20vd2F0Y2g/dj1kUXc0dzlXZ1hjUQo=”
$output = [System.Text.Encoding]::Unicode.GetString([System.Convert]::FromBase64String($input))
$output

--encode
$input = ‘text to be encoded’
$By = [System.Text.Encoding]::Unicode.GetBytes($input)
$output =[Convert]::ToBase64String($By)
$output
Comment

PREVIOUS NEXT
Code Example
Shell :: install mysql linux mint 
Shell :: bash list process on port 
Shell :: git -u flag 
Shell :: how to view a list of installed npm packages 
Shell :: git commit amend without changing message 
Shell :: unable to install deno in ubuntu 
Shell :: how to delete deployments in kubernetes 
Shell :: openssl view certificate 
Shell :: homebrew install git 
Shell :: how to install yarn 
Shell :: how to Install nodejs on a chromebook 
Shell :: echo to file permission denied 
Shell :: open visual studio code from terminal mac 
Shell :: install netflix on ubuntu 
Shell :: check ip address mac 
Shell :: brew not found 
Shell :: remove snap package 
Shell :: sh wait 10 seconds 
Shell :: install webmin ubuntu 
Shell :: check just name of running container 
Shell :: cv2 has no attribute videocapture 
Shell :: shell for file in directory 
Shell :: upgrade pytest version 
Shell :: how to clear all the caches in ubuntu 
Shell :: babel core 
Shell :: install pyqt4 ubuntu 
Shell :: sudo kill port windows 
Shell :: fingerprint login disabled ubuntu 20.04 
Shell :: install jupyterlab on ubuntu 
Shell :: pip install upgrade all 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =