Public/Get-DownOSDUpdate.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<#
.SYNOPSIS
Downloads Current Microsoft Updates
 
.DESCRIPTION
Downloads Current Microsoft Updates
Requires BITS for downloading the updates
Requires Internet access for downloading the updates
 
.LINK
https://osdupdate.osdeploy.com/module/functions/get-downosdupdate
 
.PARAMETER DownloadPath
Directory of the Downloads
 
.PARAMETER InputObject
Paired with Get-OSDUpdate
Get-OSDUpdate | Get-DownOSDUpdate
 
.PARAMETER Catalog
Get-OSDUpdate.Catalog Property
 
.PARAMETER UpdateArch
Architecture of the Update
Get-OSDUpdate.UpdateArch Property
 
.PARAMETER UpdateBuild
Windows Build for the Update
Get-OSDUpdate.UpdateBuild Property
 
.PARAMETER OfficeProfile
Microsoft Office Update Type
 
.PARAMETER GridView
Displays the results in GridView with -PassThru
#>


function Get-DownOSDUpdate {
    [CmdletBinding()]
    PARAM (
        [Parameter(Mandatory = $true)]
        [string]$DownloadPath,

        [Parameter(ValueFromPipeline = $true)]
        [Object[]]$InputObject,

        [ValidateSet(
            'Office 2010 32-Bit',
            'Office 2010 64-Bit',
            'Office 2013 32-Bit',
            'Office 2013 64-Bit',
            'Office 2016 32-Bit',
            'Office 2016 64-Bit',
            'Windows 7',
            'Windows 10',
            'Windows Server 2012 R2',
            'Windows Server 2016',
            'Windows Server 2019',
            'Windows Server 1903 and Later')]
        [Alias('CatalogOffice','CatalogWindows')]
        [string]$Catalog,

        [ValidateSet ('x64','x86')]
        [string]$UpdateArch,

        [ValidateSet ('20H2',2009,2004,1909,1903,1809,1803,1709,1703,1607,1511,1507)]
        [string]$UpdateBuild,

        [ValidateSet ('AdobeSU','LCU','SSU','DotNet','DotNetCU','Optional')]
        [string]$UpdateGroup,

        [switch]$GridView
    )

    BEGIN {
        #===================================================================================================
        # DownloadPath
        #===================================================================================================
        if (!(Test-Path "$DownloadPath")) {New-Item -Path "$DownloadPath" -ItemType Directory -Force | Out-Null}
        #===================================================================================================
    }

    PROCESS {
        #===================================================================================================
        # Get-OSDUpdate
        #===================================================================================================
        $OSDUpdate = @()
        if ($InputObject) {
            $OSDUpdate = $InputObject
        } else {
            $OSDUpdate = Get-OSDUpdate
        }
        #===================================================================================================
        # Filter Catalog
        #===================================================================================================
        if ($Catalog) {
            $OSDUpdate = $OSDUpdate | Where-Object {$_.Catalog -eq $Catalog}
        }
        #===================================================================================================
        # UpdateArch
        #===================================================================================================
        if ($UpdateArch -eq 'x64') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateArch -eq 'x64'}}
        if ($UpdateArch -eq 'x86') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateArch -eq 'x86'}}
        #===================================================================================================
        # UpdateBuild
        #===================================================================================================
        if ($UpdateBuild -eq '1507') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '1507'}}
        if ($UpdateBuild -eq '1511') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '1511'}}
        if ($UpdateBuild -eq '1607') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '1607'}}
        if ($UpdateBuild -eq '1703') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '1703'}}
        if ($UpdateBuild -eq '1709') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '1709'}}
        if ($UpdateBuild -eq '1803') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '1803'}}
        if ($UpdateBuild -eq '1809') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '1809'}}
        if ($UpdateBuild -eq '1903') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '1903'}}
        if ($UpdateBuild -eq '1909') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '1909'}}
        if ($UpdateBuild -eq '2004') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '2004'}}
        if ($UpdateBuild -eq '2009') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '2009'}}
        if ($UpdateBuild -eq '20H2') {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateBuild -eq '2009'}}
        #===================================================================================================
        # UpdateGroup
        #===================================================================================================
        if ($UpdateGroup) {$OSDUpdate = $OSDUpdate | Where-Object {$_.UpdateGroup -eq $UpdateGroup}}
        #===================================================================================================
        # GridView
        #===================================================================================================
        $OSDUpdate = $OSDUpdate | Sort-Object DateCreated -Descending
        if ($GridView.IsPresent) {$OSDUpdate = $OSDUpdate | Out-GridView -PassThru -Title "Select OSDUpdate Downloads"}
        #===================================================================================================
        # Download
        #===================================================================================================
        foreach ($Update in $OSDUpdate) {
            $UpdateFile = $($Update.FileName)
            $MspFile = $UpdateFile -replace '.cab', '.msp'
            $DownloadDirectory = "$DownloadPath\$($Update.Title)"
            if (!(Test-Path "$DownloadDirectory")) {New-Item -Path "$DownloadDirectory" -ItemType Directory -Force | Out-Null}

            if ($Update.Catalog -like "*Office*") {
                Write-Host "$DownloadDirectory\$MspFile" -ForegroundColor Cyan
            
                if (!(Test-Path "$DownloadDirectory\$MspFile")) {
                    Write-Host "Download: $($Update.OriginUri)" -ForegroundColor Gray
                    Start-BitsTransfer -Source $($Update.OriginUri) -Destination "$DownloadDirectory\$UpdateFile"
                }
        
                if ((Test-Path "$DownloadDirectory\$UpdateFile") -and (!(Test-Path "$DownloadDirectory\$MspFile"))) {
                    Write-Host "Expand: $DownloadDirectory\$MspFile" -ForegroundColor Gray
                    expand "$DownloadDirectory\$UpdateFile" -F:* "$DownloadDirectory" | Out-Null
                }
        
                if ((Test-Path "$DownloadDirectory\$UpdateFile") -and (Test-Path "$DownloadDirectory\$MspFile")) {
                    Write-Host "Remove: $DownloadDirectory\$UpdateFile" -ForegroundColor Gray
                    Remove-Item "$DownloadDirectory\$UpdateFile" -Force | Out-Null
                }
            }

            if ($Update.Catalog -like "*Windows*") {
                Write-Host "$($Update.Title)" -ForegroundColor Cyan
                Write-Host "$DownloadDirectory\$UpdateFile" -ForegroundColor Gray

                if (!(Test-Path "$DownloadDirectory\$UpdateFile")) {
                    Write-Host "$($Update.OriginUri)" -ForegroundColor Gray
                    Start-BitsTransfer -Source $($Update.OriginUri) -Destination "$DownloadDirectory\$UpdateFile"
                }
            }
        }
    }

    END {}
}