POWERSHELL

PowerShell Tips

#windows

PowerShell Tips

Sometimes I gotta work with Windows.

Convert a file to base64 to move it safely across the network.

[convert]::ToBase64String((Get-Content -path "your_file_path" -Encoding byte))