gpt4 book ai didi

windows - 7Zip Powershell 不工作

转载 作者:可可西里 更新时间:2023-11-01 09:28:17 25 4
gpt4 key购买 nike

我无法通过 Powershell 提取 .7z 文件。

我的 PowerShell 函数如下所示:

function unzip($file, $destination)
{
& 'C:\Program Files\7-Zip\7z.exe' x -y $file -o"$destination";
}

我收到这个错误:

7z.exe : 
At restoreQA.ps1:26 char:5
+ & 'C:\Program Files\7-Zip\7z.exe' x -y $file -o"$destination";
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError

Command Line Error:
Too short switch:
-o

似乎存在某种解析错误,但我尝试了各种不同的组合以使其正常工作。

关于为什么这不起作用的任何想法?

最佳答案

您需要将 -o 放在引号中:

& 'C:\Program Files\7-Zip\7z.exe' x -y $file "-o$destination"

关于windows - 7Zip Powershell 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36085518/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com