使用 Powershell 的批处理脚本从 Web 下载

使用 Powershell 的批处理脚本从 Web 下载

由于我的大部分工作都是远程完成的,所以我有一个批处理脚本,可以将我的所有工具从我的 FTP 服务器下载到客户端的 PC。我只需将文本复制并粘贴到客户端 PC 上的记事本中,然后将其保存为批处理并运行即可。

这很好用,但问题是,我使用的程序经常更新 - 所以我会下载旧版本。经过一番研究,我发现 PowerShell 可以直接从网络下载文件。

使用 Windows 中的脚本通过 HTTP 下载文件

如何从批处理文件执行 PowerShell 命令?

似乎所有的东西都在那里,但我对 PowerShell 一无所知,而且我对批处理完全是业余爱好者。此外,我猜你不能只是在批处理脚本中调用 PowerShell 并开始用 PowerShell 编写。

所以这就是最终目标;编写一个批处理脚本,使用 PowerShell 从不同的网站下载文件(我将提供 URL)。该脚本不会从我的 FTP 服务器下载文件,而是直接从源下载程序。

答案1

此方法使用PowerShell 版本 2 及更高版本兼容并使用 System.Net.WebClient 类。

创建一个数组,然后将所需的 URL 添加到数组中。指定您的下载位置,然后为数组中的每个项目生成 System.Net.WebClient 文件参数所需的文件名,方法是使用 PowerShell -Split 运算符从最后一次出现的正斜杠中提取字符串。

$Urls = @()
$Urls += "https://your/first/download/path/.ext"
$Urls += "https://your/next/download/path/.ext"

$OutPath = "C:\Path\to\download\"

ForEach ( $item in $Urls) {
$file = $OutPath +  ($item).split('/')[-1]
(New-Object System.Net.WebClient).DownloadFile($item, $file)
}

或者按照@McDonald 的评论使用 Invoke-WebRequest 或 Invoke-WebRequest 别名 wget,它们都可以从PowerShell 版本 3但可能会更慢

$Urls = @()
$Urls += "https://your/first/download/path/.ext"
$Urls += "https://your/next/download/path/.ext"

$OutPath = "C:\Path\to\download\"

ForEach ( $item in $Urls) {
$file = $OutPath +  ($item).split('/')[-1]
Invoke-WebRequest -Uri $item -Outfile $file
}

将任一脚本保存为“C:\Path\to\download_script.ps1”

创建并运行内容为 .bat 的文件

PowerShell -File  "C:\Path\to\download_script.ps1"

或者从 PowerShell 运行 .ps1 文件

编辑 为了将您的评论纳入我的回答,您可以将数组更改为多列数组,并将项目标题称为 . 属性

$Urls = @()
$item = "" | Select path,outpath,name
$item.path = "https://your/first/download/path/.ext"
$item.outpath = "C:\Path\to\download\"
$item.name = "Name1.ext"
$Urls = $Urls + $item

$item = "" | Select path,outpath,name
$item.path = "https://your/next/download/path/.ext"
$item.outpath = "C:\Path\to\download\"
$item.name = "Name2.ext"
$Urls = $Urls + $item

ForEach ( $item in $Urls) {
$file = ($item.outpath) + ($item.name)
(New-Object System.Net.WebClient).DownloadFile($item.path, $file)
}

答案2

这是我为您制作的一个例子,用于从一个可以不存在的文件中下载一些批处理代码,当然您可以在此文件中添加您想要的 URL!

所以请尝试一下并告诉我您的结果!

@echo off
Mode 110,3 & color 0A
Title Download file from web using powershell and batch by Hackoo 2017
Set "List_Urls_File=Urls.txt"
If not exist "%List_Urls_File%" Call :Create_Urls_File
Setlocal enabledelayedexpansion
@For /f "delims=" %%a in ('Type "%List_Urls_File%"') do (
    Set "URL=%%a"
    Rem we set the Filename from the variable !url!
    @for %%# in (!url!) do ( set "File=%%~xn#" )
    Rem Check if the file name contains a dot "." 
    Rem If not we increment the counter +1 for file to be download
        ECHO !File! | FIND /I ".">Nul 2>&1
        If "!errorlevel!" NEQ "0" (
            Set /a Count+=1
            cls & echo(
            echo               Downloading file "File-!Count!.bat" from URL : "!URL!"
            Call :BalloonTip 'information' 10 '"Downloading File-!Count!.bat"' "'Please wait... Downloading File-!Count!.bat....'" 'info' 4
            Call :Download "%%a" "File-!Count!.bat"
        ) else (
            cls & echo(
            echo    Downloading file "!File!" from URL : "!URL!"
            Call :BalloonTip 'information' 10 '"Downloading !File!"' "'Please wait... Downloading !File!....'" 'info' 4

            Call :Download "%%a" "!File!"
        )
)
Explorer "%~dp0" & exit
::*********************************************************************************
:Download <url> <File>
Powershell.exe -command "(New-Object System.Net.WebClient).DownloadFile('%1','%2')"
exit /b
::*********************************************************************************
:Create_Urls_File
(
    echo https://pastebin.com/raw/XvyhRzT6
    echo https://pastebin.com/raw/QqnZ0MjQ
    echo https://pastebin.com/raw/tHsKw15V
    echo https://pastebin.com/raw/VCnTbLB6
    echo https://pastebin.com/raw/3zUTrWUz
    echo https://pastebin.com/raw/31auQeFz
    echo https://pastebin.com/raw/xF0uXThH
    echo https://pastebin.com/raw/uzsGQD1h
    echo https://pastebin.com/raw/3TmVYiZJ
    echo https://pastebin.com/raw/Ntc8SZLU
    echo https://pastebin.com/raw/jnpRBhwn
    echo https://www.virustotal.com/static/bin/vtuploader2.2.exe
    echo http://devbuilds.kaspersky-labs.com/devbuilds/KVRT/latest/full/KVRT.exe
)>"%List_Urls_File%"
exit /b
::*********************************************************************************
:BalloonTip $notifyicon $time $title $text $icon $Timeout
PowerShell  ^
  [reflection.assembly]::loadwithpartialname('System.Windows.Forms') ^| Out-Null; ^
 [reflection.assembly]::loadwithpartialname('System.Drawing') ^| Out-Null; ^
 $notify = new-object system.windows.forms.notifyicon; ^
  $notify.icon = [System.Drawing.SystemIcons]::%1; ^
  $notify.visible = $true; ^
  $notify.showballoontip(%2,%3,%4,%5); ^
  Start-Sleep -s %6; ^
  $notify.Dispose()
%End PowerShell%
exit /B
::*************************************************************************

相关内容