0

我创建了一个 ps1 脚本来提取一个 3Gb 的 zip 文件夹。每当我从 PowerShell ISE 运行它时它就可以工作,但是当我将脚本添加到 Windows Server 2019 任务计划程序时,它只是说正在运行,它什么也不做。

我试过了

set-alias sz "$env:ProgramFiles\7-Zip\7z.exe"
Set-location C:\
sz x -oC:/ test.zip

我也试过

setx path "%path%;C:\Program Files\7-Zip"
Set-location C:\
7z x test.zip -oc:\ -r

我希望提取 3gbs 文件夹。

4

1 回答 1

0

我能够通过这种方式解决它:

Add-Type -Assembly "System.IO.Compression.Filesystem"
[System.IO.Compression.ZipFile]::ExtractToDirectory('C:\test.zip','C:\')

以及我创建任务计划程序的方式:

schtasks /create /tn "Extract" /sc onstart /delay 0000:30 /rl highest /ru system /tr "powershell.exe -file C:\scripts\setup\test.ps1"

提取一个 3GB 的文件夹需要 4 分钟。我在这里找到了解决方案: https ://ridicurious.com/2019/07/29/3-ways-to-unzip-compressed-files-using-powershell/

于 2019-11-12T08:13:39.270 回答