Eine Datei mit Powershell auf Nano Server herunterladen?


9

Ich hatte einige erhebliche Schwierigkeiten herauszufinden, wie genau eine Datei mit PowerShell unter Nano Server heruntergeladen werden kann.

Die Herausforderung ist folgende:

  • Es gibt keine Invoke-WebRequest

  • Es gibt keinen System.Net.WebClient

  • Es gibt keinen Start-BitsTransfer

  • Es gibt keinen Bitsadmin

Weiß jemand, wie man diese (scheinbar einfache) Aufgabe erledigt?

Antworten:


4

Hier finden Sie ein Beispiel für das Herunterladen einer Zip-Datei mit PowerShell unter Nano. Möglicherweise müssen Sie sie für Ihre Zwecke etwas ändern.

(von hier: https://docs.asp.net/en/latest/tutorials/nano-server.html#installing-the-asp-net-core-module-ancm )

$SourcePath = "https://dotnetcli.blob.core.windows.net/dotnet/beta/Binaries/Latest/dotnet-win-x64.latest.zip"
$DestinationPath = "C:\dotnet"

$EditionId = (Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion' -Name 'EditionID').EditionId

if (($EditionId -eq "ServerStandardNano") -or
    ($EditionId -eq "ServerDataCenterNano") -or
    ($EditionId -eq "NanoServer") -or
    ($EditionId -eq "ServerTuva")) {

    $TempPath = [System.IO.Path]::GetTempFileName()
    if (($SourcePath -as [System.URI]).AbsoluteURI -ne $null)
    {
        $handler = New-Object System.Net.Http.HttpClientHandler
        $client = New-Object System.Net.Http.HttpClient($handler)
        $client.Timeout = New-Object System.TimeSpan(0, 30, 0)
        $cancelTokenSource = [System.Threading.CancellationTokenSource]::new()
        $responseMsg = $client.GetAsync([System.Uri]::new($SourcePath), $cancelTokenSource.Token)
        $responseMsg.Wait()
        if (!$responseMsg.IsCanceled)
        {
            $response = $responseMsg.Result
            if ($response.IsSuccessStatusCode)
            {
                $downloadedFileStream = [System.IO.FileStream]::new($TempPath, [System.IO.FileMode]::Create, [System.IO.FileAccess]::Write)
                $copyStreamOp = $response.Content.CopyToAsync($downloadedFileStream)
                $copyStreamOp.Wait()
                $downloadedFileStream.Close()
                if ($copyStreamOp.Exception -ne $null)
                {
                    throw $copyStreamOp.Exception
                }
            }
        }
    }
    else
    {
        throw "Cannot copy from $SourcePath"
    }
    [System.IO.Compression.ZipFile]::ExtractToDirectory($TempPath, $DestinationPath)
    Remove-Item $TempPath
}

3
Vielen Dank! Dies ist jedoch ziemlich komplex für das, was es ist.
Noch ein Benutzer

1
A. Noch sind nicht alle Cmdlets verfügbar
Jim B

4

Invoke-WebRequestwurde im Rahmen des kumulativen Updates für Windows Server 2016 vom 26. September 2016 zu nanoserver hinzugefügt .


Ich glaube, diese Powershell-Codebeispiele, auf die Sie sich beziehen, sollen auf dem Client-Computer ausgeführt werden, nicht auf dem Nano-Docker-Host (dort steht "Laden Sie auf dem Remote-System, auf dem Sie arbeiten werden, den Docker-Client herunter: Invoke-WebRequest ...")
qbik

Ich könnte mich irren, aber ich nahm an, dass @ noch ein anderer Benutzer es während eines Builds im Docker-Client verwenden wollte.
Mikebridge

2

Es ist verrückt, dass ein Server-Betriebssystem, das für die Stromversorgung von Cloud-Workloads ausgelegt ist, keine integrierte praktische Methode für eine einfache REST- / Webanforderung hat: O.

Auf jeden Fall können Sie dieses Powershell-Skript wget.ps1 ausprobieren, das eine Modifikation des Skripts von Microsoft ist. Kopieren und Einfügen hier zur Vereinfachung

<#
.SYNOPSIS
    Downloads a file
.DESCRIPTION
    Downloads a file
.PARAMETER Url
    URL to file/resource to download
.PARAMETER Filename
    file to save it as locally
.EXAMPLE
    C:\PS> .\wget.ps1 https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
#>

Param(
  [Parameter(Position=0,mandatory=$true)]
  [string]$Url,
  [string]$Filename = ''
)

# Get filename
if (!$Filename) {
    $Filename = [System.IO.Path]::GetFileName($Url)    
}

Write-Host "Download: $Url to $Filename"

# Make absolute local path
if (![System.IO.Path]::IsPathRooted($Filename)) {
    $FilePath = Join-Path (Get-Item -Path ".\" -Verbose).FullName $Filename
}

if (($Url -as [System.URI]).AbsoluteURI -ne $null)
{
    # Download the bits
    $handler = New-Object System.Net.Http.HttpClientHandler
    $client = New-Object System.Net.Http.HttpClient($handler)
    $client.Timeout = New-Object System.TimeSpan(0, 30, 0)
    $cancelTokenSource = [System.Threading.CancellationTokenSource]::new()
    $responseMsg = $client.GetAsync([System.Uri]::new($Url), $cancelTokenSource.Token)
    $responseMsg.Wait()
    if (!$responseMsg.IsCanceled)
    {
        $response = $responseMsg.Result
        if ($response.IsSuccessStatusCode)
        {
            $downloadedFileStream = [System.IO.FileStream]::new($FilePath, [System.IO.FileMode]::Create, [System.IO.FileAccess]::Write)

            $copyStreamOp = $response.Content.CopyToAsync($downloadedFileStream)
            # TODO: Progress bar? Total size?
            Write-Host "Downloading ..."
            $copyStreamOp.Wait()

            $downloadedFileStream.Close()
            if ($copyStreamOp.Exception -ne $null)
            {
                throw $copyStreamOp.Exception
            }
        }
    }
}
else
{
    throw "Cannot download from $Url"
}
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.