Public/Common/Invoke-DownloadMethod.ps1

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
function Invoke-DownloadMethod
{
    [CmdletBinding()]
    param
    (
        # The download URI
        [Parameter(
            Mandatory = $true,
            ValueFromPipeline = $true,
            ValueFromPipelineByPropertyName = $true,
            Position = 0
        )]
        [string]
        $DownloadURI,

        # The place to store the download
        [Parameter(
            Mandatory = $true,
            ValueFromPipeline = $true,
            ValueFromPipelineByPropertyName = $true,
            Position = 1
        )]
        [string]
        $OutFile
    )
    if ($PSVersionTable.PSEdition -eq 'Desktop')
    {
        try
        {
            $BITs = Get-Service -Name BITs | Where-Object { $_.Status -eq "Running" }
        }
        catch
        {
            Write-Verbose "Using Invoke-WebRequest"
            $DownloadMethod = 'WebRequest'
        }
        if ($BITs)
        {
            Write-Verbose "Using BITs"
            $DownloadMethod = 'BITs'
        }
        else
        {
            Write-Verbose "BITs not running, falling back to WebRequest"
            $DownloadMethod = 'WebRequest'
        }
    }
    else
    {
        Write-Verbose "Using Invoke-WebRequest"
        $DownloadMethod = 'WebRequest'
    }
    switch ($DownloadMethod)
    {
        'WebRequest'
        {
            try
            {
                Invoke-WebRequest -Uri $DownloadURI -OutFile $OutFile
            }
            catch
            {
                Write-Error $_.Exception.Message
            }
        }
        'BITs'
        {
            try
            {
                Start-BitsTransfer -Source $DownloadURI -Destination $OutFile
            }
            catch
            {
                Write-Error $_.Exception.Message
            }        
        }
    }
}