【PowerShell】文件的解压与压缩
摘要:1 New-Item -ItemType File 1.txt -Force #新建文本文件 2 Compress-Archive -Path ‘1.txt‘ -DestinationPath ‘1.zip‘ -Force #压缩为zip 3 Expand-Archive -Path ‘1.zip‘ -DestinationPath ‘新建文件夹‘ -Force #解压到新文件夹内 阅读全文
原文:https://www.cnblogs.com/chenjo/p/15354349.html