Zip/Unzip
Windows
# Powershell
Compress-Archive in.txt out.zip
Expand-Archive out.zip
# Tar
tar.exe -a -c -f out.zip in.txt
tar.exe -x -f out.zip
# VBS
Last updated
# Powershell
Compress-Archive in.txt out.zip
Expand-Archive out.zip
# Tar
tar.exe -a -c -f out.zip in.txt
tar.exe -x -f out.zip
# VBS
Last updated