Running Powershell scripts on your computer can at times be limited due to something called Powershell Execution Policies. It's a feature of Windows to prevent execution of malicious scripts and...
Base64 with Powershell Cheat Sheet for use with powershell task automation framework. Encode [System.Convert]:: ToBase64String([System.Text.Encoding]:: UTF8.GetBytes("MY_PLAIN_TEXT")) Decode [System.Text.Encoding]:: UTF8.GetString([System.Convert]:: FromBase64String("MY_ENCODED_TEXT"))
Firewall with Powershell Cheat Sheet for use with powershell task automation framework. Firewall Enable ICMP netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow Enable...
PFX (Personal Information Exchange Format) Certificates serve the purpose of encrypting data. For example, encrypting traffic to your WordPress website. Or encrypting data in transfer between two machines. Therefore, encryption...