-
Notifications
You must be signed in to change notification settings - Fork 7
/
Update-ConfigMgrContentSourceGUI_1.0.2.ps1
1390 lines (1364 loc) · 87 KB
/
Update-ConfigMgrContentSourceGUI_1.0.2.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
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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[CmdletBinding(SupportsShouldProcess=$true)]
param(
[parameter(Mandatory=$true, HelpMessage="Specify the Primary Site server")]
[ValidateNotNullOrEmpty()]
[string]$SiteServer
)
Begin {
# Determine Site Code
try {
$SiteCodeObjects = Get-WmiObject -Namespace "root\SMS" -Class SMS_ProviderLocation -ComputerName $SiteServer -ErrorAction Stop
foreach ($SiteCodeObject in $SiteCodeObjects) {
if ($SiteCodeObject.ProviderForLocalSite -eq $true) {
$SiteCode = $SiteCodeObject.SiteCode
}
}
}
catch [System.UnauthorizedAccessException] {
Write-Warning -Message "Access denied" ; break
}
catch [System.Exception] {
Write-Warning -Message "Unable to determine Site Code" ; break
}
# Assemblies
try {
Add-Type -AssemblyName "System.Drawing" -ErrorAction Stop
Add-Type -AssemblyName "System.Windows.Forms" -ErrorAction Stop
}
catch [System.UnauthorizedAccessException] {
Write-Warning -Message "Access denied when attempting to load required assemblies" ; break
}
catch [System.Exception] {
Write-Warning -Message "Unable to load required assemblies. Error message: $($_.Exception.Message) Line: $($_.InvocationInfo.ScriptLineNumber)" ; break
}
}
Process {
# Functions
function Load-Form {
$Form.Controls.AddRange(@(
$ButtonStart,
$ButtonValidate,
$TextBoxMatch,
$TextBoxReplace,
$ComboBoxTypes,
$CheckBoxSelectAll,
$CheckBoxCopyContent,
$OutputBox,
$DGVResults,
$GBLog,
$GBResults,
$GBMatch,
$GBReplace,
$GBOptions,
$GBActions,
$StatusBar
))
$Form.Add_Shown({$Form.Activate()})
$Form.Add_Shown({Load-Connect})
$Form.ShowDialog() | Out-Null
$TextBoxMatch.Focus() | Out-Null
}
function Load-Connect {
Write-OutputBox -OutputBoxMessage "Connected to Site server '$($SiteServer)' with Site Code '$($SiteCode)'" -Type INFO
}
function Invoke-CleanControls {
param(
[parameter(Mandatory=$true)]
[ValidateSet("All","Log")]
$Option
)
if ($Option -eq "All") {
$DGVResults.Rows.Clear()
$OutputBox.ResetText()
}
if ($Option -eq "Log") {
$OutputBox.ResetText()
}
}
function Write-OutputBox {
param(
[parameter(Mandatory=$true)]
[string]$OutputBoxMessage,
[parameter(Mandatory=$true)]
[ValidateSet("WARNING","ERROR","INFO")]
[string]$Type
)
Begin {
$DateTime = (Get-Date).ToLongTimeString()
}
Process {
if ($OutputBox.Text.Length -eq 0) {
$OutputBox.Text = "$($DateTime) - $($Type): $($OutputBoxMessage)"
[System.Windows.Forms.Application]::DoEvents()
$OutputBox.SelectionStart = $OutputBox.Text.Length
$OutputBox.ScrollToCaret()
}
else {
$OutputBox.AppendText("`n$($DateTime) - $($Type): $($OutputBoxMessage)")
[System.Windows.Forms.Application]::DoEvents()
$OutputBox.SelectionStart = $OutputBox.Text.Length
$OutputBox.ScrollToCaret()
}
}
}
function Update-StatusBar {
param(
[parameter(Mandatory=$true)]
[ValidateSet("Ready","Updating","Validating","Enumerating")]
[string]$Activity,
[parameter(Mandatory=$true)]
[string]$Text
)
$StatusBarPanelActivity.Text = $Activity
$StatusBarPanelProcessing.Text = $Text
[System.Windows.Forms.Application]::DoEvents()
}
function Update-ApplicationContentSource {
param(
[parameter(Mandatory=$true)]
[ValidateSet("Validate","Update")]
[string]$Action,
[parameter(Mandatory=$false)]
[switch]$CopyFiles
)
Begin {
try {
Add-Type -Path (Join-Path -Path (Get-Item $env:SMS_ADMIN_UI_PATH).Parent.FullName -ChildPath "Microsoft.ConfigurationManagement.ApplicationManagement.dll") -ErrorAction Stop
Add-Type -Path (Join-Path -Path (Get-Item $env:SMS_ADMIN_UI_PATH).Parent.FullName -ChildPath "Microsoft.ConfigurationManagement.ApplicationManagement.Extender.dll") -ErrorAction Stop
Add-Type -Path (Join-Path -Path (Get-Item $env:SMS_ADMIN_UI_PATH).Parent.FullName -ChildPath "Microsoft.ConfigurationManagement.ApplicationManagement.MsiInstaller.dll") -ErrorAction Stop
}
catch [System.UnauthorizedAccessException] {
Write-OutputBox -OutputBoxMessage "Access denied when attempting to load ApplicationManagement dll's" -Type ERROR ; break
}
catch [System.Exception] {
Write-OutputBox -OutputBoxMessage "Unable to load required ApplicationManagement dll's. Make sure that you're running this tool on system where the ConfigMgr console is installed and that you're running the tool elevated" -Type ERROR ; break
}
}
Process {
if ($Action -eq "Validate") {
$AppCount = 0
Update-StatusBar -Activity Enumerating -Text " "
$Applications = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_ApplicationLatest" -ComputerName $SiteServer
$ApplicationCount = ($Applications | Measure-Object).Count
foreach ($Application in $Applications) {
$AppCount++
$ApplicationName = $Application.LocalizedDisplayName
Update-StatusBar -Activity Validating -Text "Validating application $($AppCount) / $($ApplicationCount)"
if ($Application.HasContent -eq $true) {
# Get Application object including Lazy properties
$Application.Get()
# Deserialize SDMPakageXML property from string
$ApplicationXML = [Microsoft.ConfigurationManagement.ApplicationManagement.Serialization.SccmSerializer]::DeserializeFromString($Application.SDMPackageXML, $true)
foreach ($DeploymentType in $ApplicationXML.DeploymentTypes) {
$DeploymentTypeName = $DeploymentType.Title
$ExistingContentLocation = $DeploymentType.Installer.Contents[0].Location
if ($ExistingContentLocation -match [regex]::Escape($TextBoxMatch.Text)) {
$UpdatedContentLocation = $DeploymentType.Installer.Contents[0].Location -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
$DGVResults.Rows.Add($true, $ApplicationName, $DeploymentTypeName, $ExistingContentLocation, $UpdatedContentLocation)
Write-OutputBox -OutputBoxMessage "Validated deployment type '$($DeploymentTypeName)' for application '$($ApplicationName)'" -Type INFO
}
else {
Write-OutputBox -OutputBoxMessage "Validation of deployment type '$($DeploymentTypeName)' for application '$($ApplicationName)' did not match the search pattern" -Type INFO
}
}
# Update Form application
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "Validation of application '$($ApplicationName)' detected that there was no associated content" -Type INFO
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed content source validation" -Type INFO
if ($DGVResults.RowCount -ge 1) {
$ButtonStart.Enabled = $true
}
}
if ($Action -eq "Update") {
# Determine selected row count
$AppCount = 0
$AppRowCount = 0
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
if ($DGVResults.Rows[$RowIndex].Cells[0].Value -eq $true) {
$AppRowCount++
}
}
# Enumerate through selected rows in DataGridView
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
$CellAppName = $DGVResults.Rows[$RowIndex].Cells[1].Value
$CellAppSelected = $DGVResults.Rows[$RowIndex].Cells[0].Value
if ($CellAppSelected -eq $true) {
$AppCount++
$Application = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_ApplicationLatest" -ComputerName $SiteServer | Where-Object {$_.LocalizedDisplayName -eq $($CellAppName)}
if ($Application -ne $null) {
$ApplicationName = $Application.LocalizedDisplayName
Update-StatusBar -Activity Updating -Text "Updating application $($AppCount) / $($AppRowCount)"
# Get Application object including Lazy properties
$Application.Get()
# Deserialize SDMPakageXML property from string
$ApplicationXML = [Microsoft.ConfigurationManagement.ApplicationManagement.Serialization.SccmSerializer]::DeserializeFromString($Application.SDMPackageXML, $true)
foreach ($DeploymentType in $ApplicationXML.DeploymentTypes) {
$DeploymentTypeName = $DeploymentType.Title
$ExistingContentLocation = $DeploymentType.Installer.Contents[0].Location
if ($ExistingContentLocation -match [regex]::Escape($TextBoxMatch.Text)) {
$UpdatedContentLocation = $DeploymentType.Installer.Contents[0].Location -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
# Copy files
if ($CopyFiles -eq $true) {
if ($DeploymentType.Installer.Technology -eq "AppV") {
$AmendUpdatedContentLocation = Split-Path -Path $UpdatedContentLocation -Parent
if (-not(Test-Path -Path $AmendUpdatedContentLocation)) {
New-Item -Path $AmendUpdatedContentLocation -ItemType Directory | Out-Null
}
if (Test-Path -Path $ExistingContentLocation) {
$ExistingContentLocationItems = Get-ChildItem -Path $ExistingContentLocation
Write-OutputBox -OutputBoxMessage "Copying content source files from $($ExistingContentLocation) to $($AmendUpdatedContentLocation)" -Type INFO
foreach ($ExistingContentLocationItem in $ExistingContentLocationItems) {
Copy-Item -Path $ExistingContentLocationItem.FullName -Destination $AmendUpdatedContentLocation -Force -Recurse
}
}
else {
Write-OutputBox -OutputBoxMessage "Unable to access $($ExistingContentLocation)" -Type WARNING
}
}
else {
if (-not(Test-Path -Path $UpdatedContentLocation)) {
New-Item -Path $UpdatedContentLocation -ItemType Directory | Out-Null
}
if (Test-Path -Path $ExistingContentLocation) {
$ExistingContentLocationItems = Get-ChildItem -Path $ExistingContentLocation
Write-OutputBox -OutputBoxMessage "Copying content source files from $($ExistingContentLocation) to $($UpdatedContentLocation)" -Type INFO
foreach ($ExistingContentLocationItem in $ExistingContentLocationItems) {
Copy-Item -Path $ExistingContentLocationItem.FullName -Destination $UpdatedContentLocation -Force -Recurse
}
}
else {
Write-OutputBox -OutputBoxMessage "Unable to access $($ExistingContentLocation)" -Type WARNING
}
}
}
# Update content source
$ContentImporter = [Microsoft.ConfigurationManagement.ApplicationManagement.ContentImporter]::CreateContentFromFolder($UpdatedContentLocation)
$DeploymentType.Installer.Contents[0].ID = $ContentImporter.ID
$DeploymentType.Installer.Contents[0] = $ContentImporter
# Serialize $ApplicationXML object back to a string and store it in $UpdatedXML
$UpdatedXML = [Microsoft.ConfigurationManagement.ApplicationManagement.Serialization.SccmSerializer]::SerializeToString($ApplicationXML, $true)
$Application.SDMPackageXML = $UpdatedXML
$Application.Put() | Out-Null
Write-OutputBox -OutputBoxMessage "Updated deployment type '$($DeploymentTypeName)' for application '$($ApplicationName)'" -Type INFO
[System.Windows.Forms.Application]::DoEvents()
}
}
}
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed updating content sources" -Type INFO
$ButtonStart.Enabled = $false
}
}
}
function Update-PackageContentSource {
param(
[parameter(Mandatory=$true)]
[ValidateSet("Validate","Update")]
[string]$Action,
[parameter(Mandatory=$false)]
[switch]$CopyFiles
)
Process {
if ($Action -eq "Validate") {
$PackageCount = 0
Update-StatusBar -Activity Enumerating -Text " "
$Packages = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_Package" -ComputerName $SiteServer
$PackagesCount = ($Packages | Measure-Object).Count
foreach ($Package in $Packages) {
$PackageCount++
$PackageName = $Package.Name
$PackageID = $Package.PackageID
Update-StatusBar -Activity Validating -Text "Validating package $($PackageCount) / $($PackagesCount)"
if ($Package.PkgSourcePath -ne $null) {
if ($Package.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingPackageSourcePath = $Package.PkgSourcePath
$UpdatedPackageSourcePath = $Package.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
$DGVResults.Rows.Add($true, $PackageName, $ExistingPackageSourcePath, $UpdatedPackageSourcePath, $PackageID)
$DGVResults.ClearSelection()
Write-OutputBox -OutputBoxMessage "Successfully validated package '$($PackageName)'" -Type INFO
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for package '$($PackageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of package '$($PackageName)' detected that there was no associated content" -Type INFO
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed content source validation" -Type INFO
$ButtonStart.Enabled = $true
}
if ($Action -eq "Update") {
# Determine selected row count
$PackageCount = 0
$PackageRowCount = 0
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
if ($DGVResults.Rows[$RowIndex].Cells[0].Value -eq $true) {
$PackageRowCount++
}
}
# Enumerate through selected rows in DataGridView
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
$CellPackageName = $DGVResults.Rows[$RowIndex].Cells[1].Value
$CellPackageSelected = $DGVResults.Rows[$RowIndex].Cells[0].Value
$CellPackageID = $DGVResults.Rows[$RowIndex].Cells[4].Value
if ($CellPackageSelected -eq $true) {
$PackageCount++
$Package = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_Package" -ComputerName $SiteServer -Filter "PackageID like '$($CellPackageID)'"
if ($Package -ne $null) {
$PackageName = $Package.Name
Update-StatusBar -Activity Validating -Text "Updating package $($PackageCount) / $($PackageRowCount)"
[System.Windows.Forms.Application]::DoEvents()
if ($Package.PkgSourcePath -ne $null) {
if ($Package.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingPackageSourcePath = $Package.PkgSourcePath
$UpdatedPackageSourcePath = $Package.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
# Copy files
if ($CopyFiles -eq $true) {
if (-not(Test-Path -Path $UpdatedPackageSourcePath)) {
New-Item -Path $UpdatedPackageSourcePath -ItemType Directory | Out-Null
}
if ((Get-ChildItem -Path $UpdatedPackageSourcePath | Measure-Object).Count -eq 0) {
if (Test-Path -Path $ExistingPackageSourcePath) {
$ExistingPackageSourcePathItems = Get-ChildItem -Path $ExistingPackageSourcePath
Write-OutputBox -OutputBoxMessage "Copying content source files from $($ExistingPackageSourcePath) to $($UpdatedPackageSourcePath)" -Type INFO
foreach ($ExistingPackageSourcePathItem in $ExistingPackageSourcePathItems) {
Copy-Item -Path $ExistingPackageSourcePathItem.FullName -Destination $UpdatedPackageSourcePath -Force -Recurse
}
}
else {
Write-OutputBox -OutputBoxMessage "Unable to access $($ExistingPackageSourcePath)" -Type WARNING
}
}
}
# Update content source
$Package.PkgSourcePath = $UpdatedPackageSourcePath
$Package.Put() | Out-Null
$ValidatePackage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_Package" -ComputerName $SiteServer -Filter "PackageID like '$($CellPackageID)'"
if ($ValidatePackage.PkgSourcePath -eq $UpdatedPackageSourcePath) {
Write-OutputBox -OutputBoxMessage "Updated package '$($PackageName)'" -Type INFO
}
else {
Write-OutputBox -OutputBoxMessage "An error occurred while updating package '$($PackageName)'" -Type ERROR
}
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for package '$($PackageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of package '$($PackageName)' detected that there was no associated content" -Type INFO
}
}
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed updating content sources" -Type INFO
$ButtonStart.Enabled = $false
}
}
}
function Update-DeploymentPackageContentSource {
param(
[parameter(Mandatory=$true)]
[ValidateSet("Validate","Update")]
[string]$Action,
[parameter(Mandatory=$false)]
[switch]$CopyFiles
)
Process {
if ($Action -eq "Validate") {
$DeploymentPackageCount = 0
Update-StatusBar -Activity Enumerating -Text " "
$DeploymentPackages = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_SoftwareUpdatesPackage" -ComputerName $SiteServer
$DeploymentPackagesCount = ($DeploymentPackages | Measure-Object).Count
foreach ($DeploymentPackage in $DeploymentPackages) {
$DeploymentPackageCount++
$DeploymentPackageName = $DeploymentPackage.Name
$DeploymentPackageID = $DeploymentPackage.PackageID
Update-StatusBar -Activity Validating -Text "Validating deployment package $($DeploymentPackageCount) / $($DeploymentPackagesCount)"
if ($DeploymentPackage.PkgSourcePath -ne $null) {
if ($DeploymentPackage.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingDeploymentPackageSourcePath = $DeploymentPackage.PkgSourcePath
$UpdatedDeploymentPackageSourcePath = $DeploymentPackage.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
$DGVResults.Rows.Add($true, $DeploymentPackageName, $ExistingDeploymentPackageSourcePath, $UpdatedDeploymentPackageSourcePath, $DeploymentPackageID)
Write-OutputBox -OutputBoxMessage "Successfully validated deployment package '$($DeploymentPackageName)'" -Type INFO
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for deployment package '$($DeploymentPackageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of deployment package '$($DeploymentPackageName)' detected that there was no associated content" -Type INFO
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed content source validation" -Type INFO
$ButtonStart.Enabled = $true
}
if ($Action -eq "Update") {
# Determine selected row count
$DeploymentPackageCount = 0
$DeploymentPackageRowCount = 0
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
if ($DGVResults.Rows[$RowIndex].Cells[0].Value -eq $true) {
$DeploymentPackageRowCount++
}
}
# Enumerate through selected rows in DataGridView
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
$CellDeploymentPackageName = $DGVResults.Rows[$RowIndex].Cells[1].Value
$CellDeploymentPackageSelected = $DGVResults.Rows[$RowIndex].Cells[0].Value
$CellDeploymentPackageID = $DGVResults.Rows[$RowIndex].Cells[4].Value
if ($CellDeploymentPackageSelected -eq $true) {
$DeploymentPackageCount++
$DeploymentPackage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_SoftwareUpdatesPackage" -ComputerName $SiteServer -Filter "PackageID like '$($CellDeploymentPackageID)'"
if ($DeploymentPackage -ne $null) {
$DeploymentPackageName = $DeploymentPackage.Name
Update-StatusBar -Activity Validating -Text "Updating package $($DeploymentPackageCount) / $($DeploymentPackageRowCount)"
[System.Windows.Forms.Application]::DoEvents()
if ($DeploymentPackage.PkgSourcePath -ne $null) {
if ($DeploymentPackage.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingDeploymentPackageSourcePath = $DeploymentPackage.PkgSourcePath
$UpdatedDeploymentPackageSourcePath = $DeploymentPackage.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
# Copy files
if ($CopyFiles -eq $true) {
if (-not(Test-Path -Path $UpdatedDeploymentPackageSourcePath)) {
New-Item -Path $UpdatedDeploymentPackageSourcePath -ItemType Directory | Out-Null
}
if ((Get-ChildItem -Path $UpdatedDeploymentPackageSourcePath | Measure-Object).Count -eq 0) {
if (Test-Path -Path $ExistingDeploymentPackageSourcePath) {
$ExistingDeploymentPackageSourcePathItems = Get-ChildItem -Path $ExistingDeploymentPackageSourcePath
Write-OutputBox -OutputBoxMessage "Copying content source files from $($ExistingDeploymentPackageSourcePath) to $($UpdatedDeploymentPackageSourcePath)" -Type INFO
foreach ($ExistingDeploymentPackageSourcePathItem in $ExistingDeploymentPackageSourcePathItems) {
Copy-Item -Path $ExistingDeploymentPackageSourcePathItem.FullName -Destination $UpdatedDeploymentPackageSourcePath -Force -Recurse
}
}
else {
Write-OutputBox -OutputBoxMessage "Unable to access $($ExistingDeploymentPackageSourcePath)" -Type WARNING
}
}
}
# Update content source
$DeploymentPackage.PkgSourcePath = $UpdatedDeploymentPackageSourcePath
$DeploymentPackage.Put() | Out-Null
$ValidateDeploymentPackage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_SoftwareUpdatesPackage" -ComputerName $SiteServer -Filter "PackageID like '$($CellDeploymentPackageID)'"
if ($ValidateDeploymentPackage.PkgSourcePath -eq $UpdatedDeploymentPackageSourcePath) {
Write-OutputBox -OutputBoxMessage "Updated deployment package '$($DeploymentPackageName)'" -Type INFO
}
else {
Write-OutputBox -OutputBoxMessage "An error occurred while updating deployment package '$($DeploymentPackageName)'" -Type ERROR
}
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for package '$($DeploymentPackageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of package '$($DeploymentPackageName)' detected that there was no associated content" -Type INFO
}
}
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed updating content sources" -Type INFO
$ButtonStart.Enabled = $false
}
}
}
function Update-DriverContentSource {
param(
[parameter(Mandatory=$true)]
[ValidateSet("Validate","Update")]
[string]$Action,
[parameter(Mandatory=$false)]
[switch]$CopyFiles
)
Process {
if ($Action -eq "Validate") {
$DriverCount = 0
Update-StatusBar -Activity Enumerating -Text " "
$Drivers = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_Driver" -ComputerName $SiteServer
$DriversCount = ($Drivers | Measure-Object).Count
foreach ($Driver in $Drivers) {
$DriverCount++
$DriverName = $Driver.LocalizedDisplayName
$DriverCIID = $Driver.CI_ID
Update-StatusBar -Activity Validating -Text "Validating driver $($DriverCount) / $($DriversCount)"
if ($Driver.ContentSourcePath -ne $null) {
if ($Driver.ContentSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingDriverSourcePath = $Driver.ContentSourcePath
$UpdatedDriverSourcePath = $Driver.ContentSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
$DGVResults.Rows.Add($true, $DriverName, $ExistingDriverSourcePath, $UpdatedDriverSourcePath, $DriverCIID)
Write-OutputBox -OutputBoxMessage "Successfully validated driver '$($DriverName)'" -Type INFO
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for driver '$($DriverName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of driver '$($DriverName)' detected that there was no associated content" -Type INFO
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed content source validation" -Type INFO
if ($DGVResults.RowCount -ge 1) { #
$ButtonStart.Enabled = $true
} #
}
if ($Action -eq "Update") {
# Determine selected row count
$DriverCount = 0
$DriverRowCount = 0
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
if ($DGVResults.Rows[$RowIndex].Cells[0].Value -eq $true) {
$DriverRowCount++
}
}
# Enumerate through selected rows in DataGridView
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
$CellDriverName = $DGVResults.Rows[$RowIndex].Cells[1].Value
$CellDriverSelected = $DGVResults.Rows[$RowIndex].Cells[0].Value
$CellDriverCIID = $DGVResults.Rows[$RowIndex].Cells[4].Value
if ($CellDriverSelected -eq $true) {
$DriverCount++
$Driver = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_Driver" -ComputerName $SiteServer -Filter "CI_ID like '$($CellDriverCIID)'"
if ($Driver -ne $null) {
$DriverName = $Driver.LocalizedDisplayName
Update-StatusBar -Activity Updating -Text "Updating driver $($DriverCount) / $($DriverRowCount)"
[System.Windows.Forms.Application]::DoEvents()
if ($Driver.ContentSourcePath -ne $null) {
if ($Driver.ContentSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingDriverSourcePath = $Driver.ContentSourcePath
$UpdatedDriverSourcePath = $Driver.ContentSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
# Copy files
if ($CopyFiles -eq $true) {
if (-not(Test-Path -LiteralPath $UpdatedDriverSourcePath)) {
New-Item -Path $UpdatedDriverSourcePath -ItemType Directory | Out-Null
}
if ((Get-ChildItem -LiteralPath $UpdatedDriverSourcePath | Measure-Object).Count -eq 0) {
if (Test-Path -LiteralPath $ExistingDriverSourcePath) {
$ExistingDriverSourcePathItems = Get-ChildItem -LiteralPath $ExistingDriverSourcePath
Write-OutputBox -OutputBoxMessage "Copying content source files from $($ExistingDriverSourcePath) to $($UpdatedDriverSourcePath)" -Type INFO
foreach ($ExistingDriverSourcePathItem in $ExistingDriverSourcePathItems) {
Copy-Item -LiteralPath $ExistingDriverSourcePathItem.FullName -Destination $UpdatedDriverSourcePath -Force -Recurse
}
}
else {
Write-OutputBox -OutputBoxMessage "Unable to access $($ExistingDriverSourcePath)" -Type WARNING
}
}
else {
Write-OutputBox -OutputBoxMessage "Updated content source location already contains a number of files, skipping copy operation" -Type WARNING
}
}
# Update content source
$Driver.ContentSourcePath = $UpdatedDriverSourcePath
$Driver.Put() | Out-Null
$ValidateDriver = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_Driver" -ComputerName $SiteServer -Filter "CI_ID like '$($CellDriverCIID)'"
if ($ValidateDriver.ContentSourcePath -eq $UpdatedDriverSourcePath) {
Write-OutputBox -OutputBoxMessage "Updated driver '$($DriverName)'" -Type INFO
}
else {
Write-OutputBox -OutputBoxMessage "An error occurred while updating driver '$($DriverName)'" -Type ERROR
}
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for driver '$($DriverName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of driver '$($DriverName)' detected that there was no associated content" -Type INFO
}
}
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed updating content sources" -Type INFO
$ButtonStart.Enabled = $false
}
}
}
function Update-DriverPackageContentSource {
param(
[parameter(Mandatory=$true)]
[ValidateSet("Validate","Update")]
[string]$Action,
[parameter(Mandatory=$false)]
[switch]$CopyFiles
)
Process {
if ($Action -eq "Validate") {
$DriverPackageCount = 0
Update-StatusBar -Activity Enumerating -Text " "
$DriverPackages = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_DriverPackage" -ComputerName $SiteServer
$DriverPackagesCount = ($DriverPackages | Measure-Object).Count
foreach ($DriverPackage in $DriverPackages) {
$DriverPackageCount++
$DriverPackageName = $DriverPackage.Name
$DriverPackageID = $DriverPackage.PackageID
Update-StatusBar -Activity Validating -Text "Validating driver package $($DriverPackageCount) / $($DriverPackagesCount)"
if ($DriverPackage.PkgSourcePath -ne $null) {
if ($DriverPackage.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingDriverPackageSourcePath = $DriverPackage.PkgSourcePath
$UpdatedDriverPackageSourcePath = $DriverPackage.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
$DGVResults.Rows.Add($true, $DriverPackageName, $ExistingDriverPackageSourcePath, $UpdatedDriverPackageSourcePath, $DriverPackageID)
Write-OutputBox -OutputBoxMessage "Successfully validated driver package '$($DriverPackageName)'" -Type INFO
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for driver package '$($DriverPackageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of driver package '$($DriverPackageName)' detected that there was no associated content" -Type INFO
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed content source validation" -Type INFO
$ButtonStart.Enabled = $true
}
if ($Action -eq "Update") {
# Determine selected row count
$DriverPackageCount = 0
$DriverPackageRowCount = 0
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
if ($DGVResults.Rows[$RowIndex].Cells[0].Value -eq $true) {
$DriverPackageRowCount++
}
}
# Enumerate through selected rows in DataGridView
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
$CellDriverPackageName = $DGVResults.Rows[$RowIndex].Cells[1].Value
$CellDriverPackageSelected = $DGVResults.Rows[$RowIndex].Cells[0].Value
$CellDriverPackageID = $DGVResults.Rows[$RowIndex].Cells[4].Value
if ($CellDriverPackageSelected -eq $true) {
$DriverPackageCount++
$DriverPackage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_DriverPackage" -ComputerName $SiteServer -Filter "PackageID like '$($CellDriverPackageID)'"
if ($DriverPackage -ne $null) {
$DriverPackageName = $DriverPackage.Name
Update-StatusBar -Activity Validating -Text "Updating driver package $($DriverPackageCount) / $($DriverPackageRowCount)"
[System.Windows.Forms.Application]::DoEvents()
if ($DriverPackage.PkgSourcePath -ne $null) {
if ($DriverPackage.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingDriverPackageSourcePath = $DriverPackage.PkgSourcePath
$UpdatedDriverPackageSourcePath = $DriverPackage.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
# Copy files
if ($CopyFiles -eq $true) {
if (-not(Test-Path -Path $UpdatedDriverPackageSourcePath)) {
New-Item -Path $UpdatedDriverPackageSourcePath -ItemType Directory | Out-Null
}
if ((Get-ChildItem -Path $UpdatedDriverPackageSourcePath | Measure-Object).Count -eq 0) {
if (Test-Path -Path $ExistingDriverPackageSourcePath) {
$ExistingDriverPackageSourcePathItems = Get-ChildItem -Path $ExistingDriverPackageSourcePath
Write-OutputBox -OutputBoxMessage "Copying content source files from $($ExistingDriverPackageSourcePath) to $($UpdatedDriverPackageSourcePath)" -Type INFO
foreach ($ExistingDriverPackageSourcePathItem in $ExistingDriverPackageSourcePathItems) {
Copy-Item -Path $ExistingDriverPackageSourcePathItem.FullName -Destination $UpdatedDriverPackageSourcePath -Force -Recurse
}
}
else {
Write-OutputBox -OutputBoxMessage "Unable to access $($ExistingDriverPackageSourcePath)" -Type WARNING
}
}
}
# Update content source
$DriverPackage.PkgSourcePath = $UpdatedDriverPackageSourcePath
$DriverPackage.Put() | Out-Null
$ValidateDriverPackage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_DriverPackage" -ComputerName $SiteServer -Filter "PackageID like '$($CellDriverPackageID)'"
if ($ValidateDriverPackage.PkgSourcePath -eq $UpdatedDriverPackageSourcePath) {
Write-OutputBox -OutputBoxMessage "Updated driver package '$($DriverPackageName)'" -Type INFO
}
else {
Write-OutputBox -OutputBoxMessage "An error occurred while updating driver package '$($DriverPackageName)'" -Type ERROR
}
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for driver package '$($DriverPackageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of driver package '$($DriverPackageName)' detected that there was no associated content" -Type INFO
}
}
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed updating content sources" -Type INFO
$ButtonStart.Enabled = $false
}
}
}
function Update-OperatingSystemImageContentSource {
param(
[parameter(Mandatory=$true)]
[ValidateSet("Validate","Update")]
[string]$Action,
[parameter(Mandatory=$false)]
[switch]$CopyFiles
)
Process {
if ($Action -eq "Validate") {
$OperatingSystemImageCount = 0
Update-StatusBar -Activity Enumerating -Text " "
$OperatingSystemImages = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_ImagePackage" -ComputerName $SiteServer
$OperatingSystemImagesCount = ($OperatingSystemImages | Measure-Object).Count
foreach ($OperatingSystemImage in $OperatingSystemImages) {
$OperatingSystemImageCount++
$OperatingSystemImageName = $OperatingSystemImage.Name
$OperatingSystemImageID = $OperatingSystemImage.PackageID
Update-StatusBar -Activity Validating -Text "Validating operating system image $($OperatingSystemImageCount) / $($OperatingSystemImagesCount)"
if ($OperatingSystemImage.PkgSourcePath -ne $null) {
if ($OperatingSystemImage.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingOperatingSystemImageSourcePath = $OperatingSystemImage.PkgSourcePath
$UpdatedOperatingSystemImageSourcePath = $OperatingSystemImage.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
$DGVResults.Rows.Add($true, $OperatingSystemImageName, $ExistingOperatingSystemImageSourcePath, $UpdatedOperatingSystemImageSourcePath, $OperatingSystemImageID)
Write-OutputBox -OutputBoxMessage "Successfully validated operating system image '$($OperatingSystemImageName)'" -Type INFO
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for operating system image '$($OperatingSystemImageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of operating system image '$($OperatingSystemImageName)' detected that there was no associated content" -Type INFO
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed content source validation" -Type INFO
$ButtonStart.Enabled = $true
}
if ($Action -eq "Update") {
# Determine selected row count
$OperatingSystemImageCount = 0
$OperatingSystemImageRowCount = 0
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
if ($DGVResults.Rows[$RowIndex].Cells[0].Value -eq $true) {
$OperatingSystemImageRowCount++
}
}
# Enumerate through selected rows in DataGridView
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
$CellOperatingSystemImageName = $DGVResults.Rows[$RowIndex].Cells[1].Value
$CellOperatingSystemImageSelected = $DGVResults.Rows[$RowIndex].Cells[0].Value
$CellOperatingSystemImageID = $DGVResults.Rows[$RowIndex].Cells[4].Value
if ($CellOperatingSystemImageSelected -eq $true) {
$OperatingSystemImageCount++
$OperatingSystemImage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_ImagePackage" -ComputerName $SiteServer -Filter "PackageID like '$($CellOperatingSystemImageID)'"
if ($OperatingSystemImage -ne $null) {
$OperatingSystemImageName = $OperatingSystemImage.Name
Update-StatusBar -Activity Validating -Text "Updating operating system image $($OperatingSystemImageCount) / $($OperatingSystemImageRowCount)"
[System.Windows.Forms.Application]::DoEvents()
if ($OperatingSystemImage.PkgSourcePath -ne $null) {
if ($OperatingSystemImage.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingOperatingSystemImageSourcePath = $OperatingSystemImage.PkgSourcePath
$UpdatedOperatingSystemImageSourcePath = $OperatingSystemImage.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
# Amend updated content source path for successful file copy operations
$AmendUpdatedOperatingSystemImageSourcePath = Split-Path -Path $UpdatedOperatingSystemImageSourcePath -Parent
# Copy files
if ($CopyFiles -eq $true) {
if (-not(Test-Path -Path $AmendUpdatedOperatingSystemImageSourcePath)) {
New-Item -Path $AmendUpdatedOperatingSystemImageSourcePath -ItemType Directory | Out-Null
}
if (Test-Path -Path $ExistingOperatingSystemImageSourcePath) {
$ExistingOperatingSystemImageSourcePathItems = Get-ChildItem -Path $ExistingOperatingSystemImageSourcePath
Write-OutputBox -OutputBoxMessage "Copying wim file $($ExistingOperatingSystemImageSourcePath) to $($AmendUpdatedOperatingSystemImageSourcePath)" -Type INFO
foreach ($ExistingOperatingSystemImageSourcePathItem in $ExistingOperatingSystemImageSourcePathItems) {
Copy-Item -Path $ExistingOperatingSystemImageSourcePathItem.FullName -Destination $AmendUpdatedOperatingSystemImageSourcePath -Force -Recurse
}
}
else {
Write-OutputBox -OutputBoxMessage "Unable to access $($ExistingOperatingSystemImageSourcePath)" -Type WARNING
}
}
# Update content source
if (Test-Path -Path $UpdatedOperatingSystemImageSourcePath) {
$OperatingSystemImage.Get()
$OperatingSystemImage.PkgSourcePath = $UpdatedOperatingSystemImageSourcePath
$OperatingSystemImage.Put() | Out-Null
$ValidateOperatingSystemImage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_ImagePackage" -ComputerName $SiteServer -Filter "PackageID like '$($CellOperatingSystemImageID)'"
if ($ValidateOperatingSystemImage.PkgSourcePath -eq $UpdatedOperatingSystemImageSourcePath) {
Write-OutputBox -OutputBoxMessage "Updated operating system image '$($OperatingSystemImageName)'" -Type INFO
}
else {
Write-OutputBox -OutputBoxMessage "An error occurred while updating operating system image '$($OperatingSystemImageName)'" -Type ERROR
}
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "Unable to locate $($OperatingSystemImageName) wim file on updated content source path. Manually copy the content files or check the Copy content files to new location check box " -Type WARNING
}
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for operating system image '$($OperatingSystemImageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of operating system image '$($OperatingSystemImageName)' detected that there was no associated content" -Type INFO
}
}
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed updating content sources" -Type INFO
$ButtonStart.Enabled = $false
}
}
}
function Update-OperatingSystemPackageContentSource {
param(
[parameter(Mandatory=$true)]
[ValidateSet("Validate","Update")]
[string]$Action,
[parameter(Mandatory=$false)]
[switch]$CopyFiles
)
Process {
if ($Action -eq "Validate") {
$OperatingSystemPackageCount = 0
Update-StatusBar -Activity Enumerating -Text " "
$OperatingSystemPackages = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_OperatingSystemInstallPackage" -ComputerName $SiteServer
$OperatingSystemPackagesCount = ($OperatingSystemPackages | Measure-Object).Count
foreach ($OperatingSystemPackage in $OperatingSystemPackages) {
$OperatingSystemPackageCount++
$OperatingSystemPackageName = $OperatingSystemPackage.Name
$OperatingSystemPackageID = $OperatingSystemPackage.PackageID
Update-StatusBar -Activity Validating -Text "Validating operating system package $($OperatingSystemPackageCount) / $($OperatingSystemPackagesCount)"
if ($OperatingSystemPackage.PkgSourcePath -ne $null) {
if ($OperatingSystemPackage.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingOperatingSystemPackageSourcePath = $OperatingSystemPackage.PkgSourcePath
$UpdatedOperatingSystemPackageSourcePath = $OperatingSystemPackage.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
$DGVResults.Rows.Add($true, $OperatingSystemPackageName, $ExistingOperatingSystemPackageSourcePath, $UpdatedOperatingSystemPackageSourcePath, $OperatingSystemPackageID)
Write-OutputBox -OutputBoxMessage "Successfully validated operating system package '$($OperatingSystemPackageName)'" -Type INFO
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for operating system package '$($OperatingSystemPackageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of operating system package '$($OperatingSystemPackageName)' detected that there was no associated content" -Type INFO
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed content source validation" -Type INFO
$ButtonStart.Enabled = $true
}
if ($Action -eq "Update") {
# Determine selected row count
$OperatingSystemPackageCount = 0
$OperatingSystemPackageRowCount = 0
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
if ($DGVResults.Rows[$RowIndex].Cells[0].Value -eq $true) {
$OperatingSystemPackageRowCount++
}
}
# Enumerate through selected rows in DataGridView
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
$CellOperatingSystemPackageName = $DGVResults.Rows[$RowIndex].Cells[1].Value
$CellOperatingSystemPackageSelected = $DGVResults.Rows[$RowIndex].Cells[0].Value
$CellOperatingSystemPackageID = $DGVResults.Rows[$RowIndex].Cells[4].Value
if ($CellOperatingSystemPackageSelected -eq $true) {
$OperatingSystemPackageCount++
$OperatingSystemPackage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_OperatingSystemInstallPackage" -ComputerName $SiteServer -Filter "PackageID like '$($CellOperatingSystemPackageID)'"
if ($OperatingSystemPackage -ne $null) {
$OperatingSystemPackageName = $OperatingSystemPackage.Name
Update-StatusBar -Activity Validating -Text "Updating operating system package $($OperatingSystemPackageCount) / $($OperatingSystemPackageRowCount)"
[System.Windows.Forms.Application]::DoEvents()
if ($OperatingSystemPackage.PkgSourcePath -ne $null) {
if ($OperatingSystemPackage.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingOperatingSystemPackageSourcePath = $OperatingSystemPackage.PkgSourcePath
$UpdatedOperatingSystemPackageSourcePath = $OperatingSystemPackage.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
# Copy files
if ($CopyFiles -eq $true) {
if (-not(Test-Path -Path $UpdatedOperatingSystemPackageSourcePath)) {
New-Item -Path $UpdatedOperatingSystemPackageSourcePath -ItemType Directory | Out-Null
}
if ((Get-ChildItem -Path $UpdatedOperatingSystemPackageSourcePath | Measure-Object).Count -eq 0) {
if (Test-Path -Path $ExistingOperatingSystemPackageSourcePath) {
$ExistingOperatingSystemPackageSourcePathItems = Get-ChildItem -Path $ExistingOperatingSystemPackageSourcePath
Write-OutputBox -OutputBoxMessage "Copying content source files from $($ExistingOperatingSystemPackageSourcePath) to $($UpdatedOperatingSystemPackageSourcePath)" -Type INFO
foreach ($ExistingOperatingSystemPackageSourcePathItem in $ExistingOperatingSystemPackageSourcePathItems) {
Copy-Item -Path $ExistingOperatingSystemPackageSourcePathItem.FullName -Destination $UpdatedOperatingSystemPackageSourcePath -Force -Recurse
}
}
else {
Write-OutputBox -OutputBoxMessage "Unable to access $($ExistingOperatingSystemPackageSourcePath)" -Type WARNING
}
}
}
# Update content source
$OperatingSystemPackage.Get()
$OperatingSystemPackage.PkgSourcePath = $UpdatedOperatingSystemPackageSourcePath
$OperatingSystemPackage.Put() | Out-Null
$ValidateOperatingSystemPackage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_OperatingSystemInstallPackage" -ComputerName $SiteServer -Filter "PackageID like '$($CellOperatingSystemPackageID)'"
if ($ValidateOperatingSystemPackage.PkgSourcePath -eq $UpdatedOperatingSystemPackageSourcePath) {
Write-OutputBox -OutputBoxMessage "Updated operating system package '$($OperatingSystemPackageName)'" -Type INFO
}
else {
Write-OutputBox -OutputBoxMessage "An error occurred while updating operating system package '$($OperatingSystemPackageName)'" -Type ERROR
}
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for operating system package '$($OperatingSystemPackageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of operating system package '$($OperatingSystemPackageName)' detected that there was no associated content" -Type INFO
}
}
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed updating content sources" -Type INFO
$ButtonStart.Enabled = $false
}
}
}
function Update-BootImageContentSource {
param(
[parameter(Mandatory=$true)]
[ValidateSet("Validate","Update")]
[string]$Action,
[parameter(Mandatory=$false)]
[switch]$CopyFiles
)
Process {
if ($Action -eq "Validate") {
$BootImageCount = 0
Update-StatusBar -Activity Enumerating -Text " "
$BootImages = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_BootImagePackage" -ComputerName $SiteServer
$BootImagesCount = ($BootImages | Measure-Object).Count
foreach ($BootImage in $BootImages) {
$BootImageCount++
$BootImageName = $BootImage.Name
$BootImageID = $BootImage.PackageID
Update-StatusBar -Activity Validating -Text "Validating operating system image $($BootImageCount) / $($BootImagesCount)"
if ($BootImage.PkgSourcePath -ne $null) {
if ($BootImage.PkgSourcePath -match [regex]::Escape($TextBoxMatch.Text)) {
$ExistingBootImageSourcePath = $BootImage.PkgSourcePath
$UpdatedBootImageSourcePath = $BootImage.PkgSourcePath -replace [regex]::Escape($TextBoxMatch.Text), $TextBoxReplace.Text
$DGVResults.Rows.Add($true, $BootImageName, $ExistingBootImageSourcePath, $UpdatedBootImageSourcePath, $BootImageID)
Write-OutputBox -OutputBoxMessage "Successfully validated boot image '$($BootImageName)'" -Type INFO
[System.Windows.Forms.Application]::DoEvents()
}
else {
Write-OutputBox -OutputBoxMessage "No matching content source for boot image '$($BootImageName)' was found" -Type INFO
}
}
else {
Write-OutputBox -OutputBoxMessage "Validation of boot image '$($BootImageName)' detected that there was no associated content" -Type INFO
}
}
Update-StatusBar -Activity Ready -Text " "
Write-OutputBox -OutputBoxMessage "Completed content source validation" -Type INFO
$ButtonStart.Enabled = $true
}
if ($Action -eq "Update") {
# Determine selected row count
$BootImageCount = 0
$BootImageRowCount = 0
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
if ($DGVResults.Rows[$RowIndex].Cells[0].Value -eq $true) {
$BootImageRowCount++
}
}
# Enumerate through selected rows in DataGridView
for ($RowIndex = 0; $RowIndex -lt $DGVResults.RowCount; $RowIndex++) {
$CellBootImageName = $DGVResults.Rows[$RowIndex].Cells[1].Value
$CellBootImageSelected = $DGVResults.Rows[$RowIndex].Cells[0].Value
$CellBootImageID = $DGVResults.Rows[$RowIndex].Cells[4].Value
if ($CellBootImageSelected -eq $true) {
$BootImageCount++
$BootImage = Get-WmiObject -Namespace "root\SMS\site_$($SiteCode)" -Class "SMS_BootImagePackage" -ComputerName $SiteServer -Filter "PackageID like '$($CellBootImageID)'"