编辑
2023-03-28
编程相关
0
请注意,本文编写于 606 天前,最后修改于 605 天前,其中某些信息可能已经过时。

目录

单文件压缩
压缩文件夹
压缩多个文件
在bat脚本中使用

相关信息

好处就是不用安装其余任何东西,而且可以配合批处理做很多事

单文件压缩

Compress-Archive -Path "C:\example\file.txt" -DestinationPath "C:\example\compressed.zip

压缩文件夹

Compress-Archive -Path "C:\example\folder" -DestinationPath "C:\example\compressed.zip

压缩多个文件

Compress-Archive -Path "C:\example\file1.txt", "C:\example\file2.txt" -DestinationPath "C:\example\compressed.zip"

在bat脚本中使用

powershell -command "指令"

本文作者:宁骑

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!