Hier is een PowerShell-functie die korte URL’s oplost voordat het bestand
function Get-FileFromUri {
param(
[parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true)]
[string]
[Alias('Uri')]
$Url,
[parameter(Mandatory=$false, Position=1)]
[string]
[Alias('Folder')]
$FolderPath
)
process {
try {
# resolve short URLs
$req = [System.Net.HttpWebRequest]::Create($Url)
$req.Method = "HEAD"
$response = $req.GetResponse()
$fUri = $response.ResponseUri
$filename = [System.IO.Path]::GetFileName($fUri.LocalPath);
$response.Close()
# download file
$destination = (Get-Item -Path ".\" -Verbose).FullName
if ($FolderPath) { $destination = $FolderPath }
if ($destination.EndsWith('
wordt gedownload Gebruik het op deze manier om het bestand te downloaden naar de huidige map:
Get-FileFromUri http://example.com/url/of/example/file
“`
of om het bestand te downloaden naar een gespecificeerde map:
Get-FileFromUri http://example.com/url/of/example/file C:\example-folder
```)) {
$destination += $filename
} else {
$destination += '
wordt gedownload Gebruik het op deze manier om het bestand te downloaden naar de huidige map:
&001
of om het bestand te downloaden naar een gespecificeerde map:
&001 + $filename
}
$webclient = New-Object System.Net.webclient
$webclient.downloadfile($fUri.AbsoluteUri, $destination)
write-host -ForegroundColor DarkGreen "downloaded '$($fUri.AbsoluteUri)' to '$($destination)'"
} catch {
write-host -ForegroundColor DarkRed $_.Exception.Message
}
}
}
wordt gedownload Gebruik het op deze manier om het bestand te downloaden naar de huidige map:
&001
of om het bestand te downloaden naar een gespecificeerde map:
&001