-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdate-SCCMContent.ps1
More file actions
460 lines (446 loc) · 16.6 KB
/
Update-SCCMContent.ps1
File metadata and controls
460 lines (446 loc) · 16.6 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
# Author: Sam Roberts
<#
.SYNOPSIS
Updates Configuration Manager content based on a list of PackageIDs.
.DESCRIPTION
Using a text file containing a list of PackageIDs this script will gradually update content
while attempting to maintain a specified number of packages in the distribution queue.
Progress will be logged to a file name content_update_yyyymmdd_hhmmss.log in the user's
local AppData temp folder.
.EXAMPLE
.\Update-SCCMContent.ps1 -SiteCode L01 -InputFile .\packageids.txt -InProgressThreshold 15 -TargetThreshold 100 -MaxConcurrent 25 -Delay 15
.PARAMETER SiteCode
The Configuration Manager site code. (example: L01)
.PARAMETER InputFile
Path to a text file containing a list of PackageIDs to update.
.PARAMETER InProgressThreshold
The number of packages with content distribution in progress. This will be used to help
determine when more updates will occur. This only applies to content that is targeting
a number of distribution points greater than or equal to the value of the TargetThreshold
parameter.
.PARAMETER TargetThreshold
The InProgressThreshold value will only apply to content that is targeting at a number
of distribution points greater than or equal to this value.
.PARAMETER MaxConcurrent
The number of content updates to run concurrently. If not specified the default is 5.
.PARAMETER Delay
Number of minutes to delay between update cycles. If not specified the default is 15.
#>
[CmdletBinding()]
param(
[Parameter(Mandatory=$true,
Position=0)]
[string]
$SiteCode,
[Parameter(Mandatory=$true,
Position=1)]
[string]
$InputFile,
[Parameter(Mandatory=$true,
Position=2)]
[int]
$InProgressThreshold,
[Parameter(Mandatory=$true,
Position=3)]
[int]
$TargetThreshold,
[Parameter(Mandatory=$false,
Position=4)]
[int]
$MaxConcurrent=5,
[Parameter(Mandatory=$false,
Position=5)]
[int]
$Delay=15
)
function Import-SCCMPsModule {
try {
Import-Module "$(Split-Path $env:SMS_ADMIN_UI_PATH)\ConfigurationManager"
} catch {
Write-Host "Error trying to import ConfigurationManager module." -ForegroundColor Red
Write-Host "Script will exit." -ForegroundColor Red
pause
Exit
}
}
function Test-SCCMModule {
$count = (Get-Module -Name "ConfigurationManager").Count
if ($count -eq 0) {
Import-SCCMPsModule
}
}
function Test-SCCMSiteConnection {
if ((Get-Location).Path -ne $($SiteCode + "\")) {
try {
if ($SiteCode -like "*:") {
Set-Location $SiteCode
} else {
Set-Location $($SiteCode + ":")
}
} catch {
Write-Host "Unable to connect to Site" -ForegroundColor Red
Exit
}
}
}
function Get-SCCMDeploymentTypeName {
[CmdletBinding()]
param(
[Parameter(Mandatory=$true,
Position=0)]
[string]
$ApplicationName
)
begin {
Test-SCCMModule
Test-SCCMSiteConnection
$out = "Getting deployment type name(s) for $ApplicationName..."
Write-Log -Message $out
}
process {
$deploymentTypeName = (Get-CMDeploymentType -ApplicationName $ApplicationName -ErrorAction Stop).LocalizedDisplayName
}
end {
$out = "Found deployment type name(s)."
Write-Log -Message $out
return $deploymentTypeName
}
}
function Get-SCCMContentType {
[CmdletBinding()]
param(
[Parameter(Mandatory=$false,
ValueFromPipeline=$true)]
[string]
$Value,
[Parameter(Mandatory=$true,
ParameterSetName = "Name")]
[switch]
$Name,
[Parameter(Mandatory=$false,
ParameterSetName = "Id")]
[switch]
$Id
)
begin {
Test-SCCMModule
Test-SCCMSiteConnection
$properties = @()
$count = 0
$out = "Beginning to process content info..."
Write-Log -Message $out
$out = "Querying for list of applications..."
Write-Log -Message $out
$apps = Get-CMApplication
$out = "Querying for list of packages..."
Write-Log -Message $out
$packages = Get-CMPackage
$out = "Querying for list of drivers packages..."
Write-Log -Message $out
$drivers = Get-CMDriverPackage
$out = "Querying for list of software update deployment packages..."
Write-Log -Message $out
$updates = Get-CMSoftwareUpdateDeploymentPackage
$out = "Querying for list of OS images..."
Write-Log -Message $out
$osImages = Get-CMOperatingSystemImage
$out = "Querying for list of boot images..."
Write-Log -Message $out
$bootImages = Get-CMBootImage
}
process {
$count++
$out = "Processing $Value..."
Write-Log -Message $out
$found = $false
$appTest = $null
$packageTest = $null
$driverTest = $null
$updateTest = $null
$imageTest = $null
$bootTest = $null
if ($Name) {
if ($found -eq $false) {$appTest = $apps | Where-Object {$_.LocalizedDisplayName -eq $Value}}
if ($appTest -ne $null) {
$found = $true
$property = @{
Type = "Application"
Id = $appTest.PackageId
Name = $Value
Index = $count
}
}
if ($found -eq $false) {$packageTest = $packages | Where-Object {$_.Name -eq $Value}}
if ($packageTest -ne $null) {
$found = $true
$property = @{
Type = "Package"
Id = $packageTest.PackageId
Name = $Value
Index = $count
}
}
if ($found -eq $false) {$driverTest = $drivers | Where-Object {$_.Name -eq $Value}}
if ($driverTest -ne $null) {
$found = $true
$property = @{
Type = "Driver"
Id = $driverTest.PackageId
Name = $Value
Index = $count
}
}
if ($found -eq $false) {$updateTest = $updates | Where-Object {$_.Name -eq $Value}}
if ($updateTest -ne $null) {
$found = $true
$property = @{
Type = "SoftwareUpdate"
Id = $updateTest.PackageId
Name = $Value
Index = $count
}
}
if ($found -eq $false) {$imageTest = $images | Where-Object {$_.Name -eq $Value}}
if ($iamgeTest -ne $null) {
$found = $true
$property = @{
Type = "OSImage"
Id = $imageTest.PackageId
Name = $Value
Index = $count
}
}
if ($found -eq $false) {$bootTest = $bootImages | Where-Object {$_.Name -eq $Value}}
if ($bootTest -ne $null) {
$found = $true
$property = @{
Type = "BootImage"
Id = $bootTest.PackageId
Name = $Value
Index = $count
}
}
}
if ($Id) {
if ($found -eq $false) {$appTest = $apps | Where-Object {$_.PackageID -eq $Value}}
if ($appTest -ne $null) {
$found = $true
$property = @{
Type = "Application"
Id = $Value
Name = $appTest.LocalizedDisplayName
Index = $count
}
}
if ($found -eq $false) {$packageTest = $packages | Where-Object {$_.PackageID -eq $Value}}
if ($packageTest -ne $null) {
$found = $true
$property = @{
Type = "Package"
Id = $Value
Name = $packageTest.Name
Index = $count
}
}
if ($found -eq $false) {$driverTest = $drivers | Where-Object {$_.PackageID -eq $Value}}
if ($driverTest -ne $null) {
$found = $true
$property = @{
Type = "Driver"
Id = $Value
Name = $driverTest.Name
Index = $count
}
}
if ($found -eq $false) {$updateTest = $updates | Where-Object {$_.PackageID -eq $Value}}
if ($updateTest -ne $null) {
$found = $true
$property = @{
Type = "SoftwareUpdate"
Id = $Value
Name = $updateTest.Name
Index = $count
}
}
if ($found -eq $false) {$imageTest = $images | Where-Object {$_.PackageID -eq $Value}}
if ($imageTest -ne $null) {
$found = $true
$property = @{
Type = "OSImage"
Id = $Value
Name = $imageTest.Name
Index = $count
}
}
if ($found -eq $false) {$bootTest = $bootImages | Where-Object {$_.PackageID -eq $Value}}
if ($bootTest -ne $null) {
$found = $true
$property = @{
Type = "BootImage"
Id = $Value
Name = $bootTest.Name
Index = $count
}
}
}
$content = New-Object -Property $property -TypeName psobject
$properties += $content
}
end {
$out = "Completed processing $count items."
Write-Log -Message $out
return $properties
}
}
function Update-SCCMContent {
[CmdletBinding()]
param(
[Parameter(Mandatory=$true,
Position=0)]
$ContentInfo
)
begin {
Test-SCCMModule
Test-SCCMSiteConnection
$count = 1
$out = "Starting to update content..."
Write-Log -Message $out
}
process {
do {
$available = Test-SCCMDistributionQueueAvailable
if ($available -gt 0) {
$out = "Updating $available packages..."
Write-Log -Message $out
for ($x = $count; $x -lt ($count + $available); $x++) {
$content = $ContentInfo | Where-Object {$_.Index -eq $count}
switch ($content.Type) {
"Application" {
$deploymentTypeNames = Get-SCCMDeploymentTypeName -ApplicationName $content.Name
foreach ($deploymentTypeName in $deploymentTypeNames) {
$out = "Updating $($content.Name) : $($content.Id) : $deploymentTypeName..."
Write-Log -Message $out
try {
Update-CMDistributionPoint -ApplicationName $content.Name -DeploymentTypeName $deploymentTypeName
} catch {
$out = "Error updating content."
Write-Log -Message $out
}
$x++
}
$count++
}
"Driver" {
$out = "Updating $($content.Name) : $($content.Id)..."
Write-Log -Message $out
try {
Update-CMDistributionPoint -DriverPackageId $content.Id
} catch {
$out = "Error updating content."
Write-Log -Message $out
}
$x++
$count++
}
"Package" {
$out = "Updating $($content.Name) : $($content.Id)..."
Write-Log -Message $out
try {
Update-CMDistributionPoint -PackageId $content.Id
} catch {
$out = "Error updating content."
Write-Log -Message $out
}
$x++
$count++
}
"OSImage" {
$out = "Updating $($content.Name) : $($content.Id)..."
Write-Log -Message $out
try {
Update-CMDistributionPoint -OperatingSystemImageId $content.Id
} catch {
$out = "Error updating content."
Write-Log -Message $out
}
$x++
$count++
}
"SoftwareUpdate" {
$out = "Updating $($content.Name) : $($content.Id)..."
Write-Log -Message $out
try {
Update-CMDistributionPoint -SoftwareUpdateDeploymentPackageId $content.Id
} catch {
$out = "Error updating content."
Write-Log -Message $out
}
$x++
$count++
}
"BootImage" {
$out = "Updating $($content.Name) : $($content.Id)..."
Write-Log -Message $out
try {
Update-CMDistributionPoint -BootImageId $content.Id
} catch {
$out = "Error updating content."
Write-Log -Message $out
}
$x++
$count++
}
default {}
}
}
}
else
{
$out = "Maximum content updates reached."
Write-Log -Message $out
}
if ($count -lt $ContentInfo.Count) {
$out = "Waiting for $Delay minutes..."
Write-Log -Message $out
sleep -Seconds ($Delay * 60)
}
} while ($count -lt $ContentInfo.Count)
}
end {
$out = "Done updating content."
Write-Log -Message $out
}
}
function Test-SCCMDistributionQueueAvailable {
[CmdletBinding()]
param()
begin{
Test-SCCMModule
Test-SCCMSiteConnection
$inProgress = 0
}
process {
$inProgress = (Get-CMDistributionStatus | Where-Object {(($_.Targeted -gt $TargetThreshold) -and ($_.NumberInProgress -gt $InProgressThreshold)) -or (($_.Targeted -le $TargetThreshold) -and ($_.NumberInProgress -gt 0))}).Count
$total = $MaxConcurrent - $inProgress
if ($total -lt 0) {
$total = 0
}
}
end {
$out = "$inProgress of $MaxConcurrent concurrent content updates in progress."
Write-Log -Message $out
return $total
}
}
function Write-Log {
param([string]$Message)
$file = "$($env:LOCALAPPDATA)\Temp\content_update_$($Global:DateTime).log"
Out-File -FilePath $file -Append -InputObject $((Get-Date -Format HH:mm:ss.fff) + " " + $Message)
Write-Host $Message
}
$Global:DateTime = Get-Date -Format "yyyyMMdd_HHmmss"
$startLocation = (Get-Location).Path
$ids = Get-Content -Path $InputFile
$contentInfo = $ids | Get-SCCMContentType -Id
Update-SCCMContent -ContentInfo $contentInfo
Set-Location $startLocation