powershell 使用密码解压缩(使用本机Windows zip)

5lhxktic  于 2022-11-29  发布在  Shell
关注(0)|答案(2)|浏览(239)

我在这个网站上看到过一篇很棒的文章,是关于使用PowerShell脚本来使用批处理文件解压缩文件的:
How can you zip or unzip from the script using ONLY Windows' built-in capabilities?
但是我找不到任何地方关于如何使用PowerShell与***密码保护**zip文件只使用Windows本地zip - * 没有7-zip 或类似的,因为我不能安装在我的工作机器上的东西。
因为我在谷歌上找不到它,我有点担心这是不可能的。

qco9c6ql

qco9c6ql1#

在Windows 7及更高版本中,这是不可能的;密码功能被删除。我听说(但从未证实),这是由欧盟反微软行动煽动,声称这是反竞争(对WinZip等)。

yruzcnhs

yruzcnhs2#

PowerShell 5具有Expand-Archive功能,您可以在其中给予密码进行解压缩。
Expand-Archive <zipfile> -Password (Read-Host -AsSecureString -Prompt Password)

相关问题