gpt4 book ai didi

powershell - 无法使用Powershell脚本在Windows 8上下载zip文件

转载 作者:行者123 更新时间:2023-12-02 23:38:33 25 4
gpt4 key购买 nike

我正在尝试使用PowerShell脚本下载sigcheck zip文件,但不会下载。我看到在C:\驱动器中创建了1个zip文件,这是无效的。

我正在运行以下内容:

$url = "https://docs.microsoft.com/en-us/sysinternals/downloads/sigcheck"
$output = "C:\sigcheck.zip"
Invoke-WebRequest -Uri $url -OutFile $output

最佳答案

您指定的URL不是实际文件,而是带有指向该文件链接的页面。

您需要使用以下URL:

$url = 'https://download.sysinternals.com/files/Sigcheck.zip'
$output = "C:\sigcheck.zip"
Invoke-WebRequest -Uri $url -OutFile $output

关于powershell - 无法使用Powershell脚本在Windows 8上下载zip文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48729714/

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