Projects/OSDCloudGUI.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
#================================================
# Window Functions
# Minimize Command and PowerShell Windows
#================================================
$Script:showWindowAsync = Add-Type -MemberDefinition @"
[DllImport("user32.dll")]
public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);
"@
 -Name "Win32ShowWindowAsync" -Namespace Win32Functions -PassThru
function Hide-CmdWindow() {
    $CMDProcess = Get-Process -Name cmd -ErrorAction Ignore
    foreach ($Item in $CMDProcess) {
        $null = $showWindowAsync::ShowWindowAsync((Get-Process -Id $Item.id).MainWindowHandle, 2)
    }
}
function Hide-PowershellWindow() {
    $null = $showWindowAsync::ShowWindowAsync((Get-Process -Id $pid).MainWindowHandle, 2)
}
function Show-PowershellWindow() {
    $null = $showWindowAsync::ShowWindowAsync((Get-Process -Id $pid).MainWindowHandle, 10)
}
Hide-CmdWindow
Hide-PowershellWindow
#================================================
# Get MyScriptDir
#================================================
$Global:MyScriptDir = [System.IO.Path]::GetDirectoryName($myInvocation.MyCommand.Definition)
#================================================
# Load Assemblies
#================================================
[System.Reflection.Assembly]::LoadWithPartialName("presentationframework") | Out-Null
[System.Reflection.Assembly]::LoadFrom("$Global:MyScriptDir\assembly\System.Windows.Interactivity.dll") | Out-Null
#================================================
# Set PowerShell Window Title
#================================================
#$host.ui.RawUI.WindowTitle = "OSDCloudGUI"
#================================================
# Test-InWinPE
#================================================
function Test-InWinPE {
    return Test-Path -Path Registry::HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlset\Control\MiniNT
}
#================================================
# LoadForm
#================================================
function LoadForm {
    [CmdletBinding()]
    param(
        [Parameter(Mandatory = $false, Position = 1)]
        [string]$XamlPath
    )

    # Import the XAML code
    [xml]$Global:XamlCode = Get-Content -Path $XamlPath

    Try {
        Add-Type -AssemblyName PresentationCore,PresentationFramework,WindowsBase,system.windows.forms
    } 
    Catch {
        Throw "Failed to load Windows Presentation Framework assemblies."
    }

    #Create the XAML reader using a new XML node reader
    $Global:XamlWindow = [Windows.Markup.XamlReader]::Load((New-Object System.Xml.XmlNodeReader $Global:XamlCode))

    #Create hooks to each named object in the XAML
    $Global:XamlCode.SelectNodes("//*[@Name]") | ForEach-Object {
        Set-Variable -Name ($_.Name) -Value $Global:XamlWindow.FindName($_.Name) -Scope Global
    }
}
#================================================
# LoadForm
#================================================
LoadForm -XamlPath (Join-Path $Global:MyScriptDir 'OSDCloudGUI.xaml')
#================================================
# Initialize
#================================================
$OSDCloudParams = (Get-Command Start-OSDCloud).Parameters

$OSDCloudParams["OSBuild"].Attributes.ValidValues | ForEach-Object {
    $OSBuildControl.Items.Add($_) | Out-Null
}

$OSDCloudParams["OSEdition"].Attributes.ValidValues | ForEach-Object {
    $OSEditionControl.Items.Add($_) | Out-Null
}

$OSDCloudParams["OSLicense"].Attributes.ValidValues | ForEach-Object {
    $OSLicenseControl.Items.Add($_) | Out-Null
}

$OSDCloudParams["OSLanguage"].Attributes.ValidValues | ForEach-Object {
    $OSLanguageControl.Items.Add($_) | Out-Null
}

$CSManufacturerControl.Text = Get-MyComputerManufacturer -Brief
$CSProductControl.Text = Get-MyComputerProduct
$CSModelControl.Text = Get-MyComputerModel -Brief
#================================================
# SetDefaultValues
#================================================
function SetDefaultValues {
    $OSBuildControl.SelectedIndex = 1      #21H1
    $OSLanguageControl.SelectedIndex = 7   #en-us
    $OSEditionControl.SelectedIndex = 5    #Enterprise
    $OSLicenseControl.SelectedIndex = 1    #Volume
    $CustomImageControl.SelectedIndex = 0  #Nothing
    $AutopilotJsonControl.SelectedIndex = 1    #OOBE
    $ImageIndexControl.Text = 6             #Enterprise

    $OSBuildControl.IsEnabled = $true
    $OSEditionControl.IsEnabled = $true
    $OSLanguageControl.IsEnabled = $true
    $OSLicenseControl.IsEnabled = $false
    $ImageIndexControl.IsEnabled = $false
    $CSModelControl.IsEnabled = $false
    $AutopilotJsonControl.IsEnabled = $true

    $GetWindowsImageControl.Items.Clear()
    $GetWindowsImageControl.Visibility = "Collapsed"
    
    $OperatingSystemLabel.Content = "Cloud Windows 10 x64"
    $OperatingSystemLabel.Width = "210"
    $OSBuildControl.Visibility = "Visible"
    $OSEditionControl.Visibility = "Visible"
    $OSLanguageControl.Visibility = "Visible"
    $OSLicenseControl.Visibility = "Visible"
}
SetDefaultValues
#================================================
# CustomImage
#================================================
$CustomImageControl.IsEnabled = $false

$CustomImageIso = @()
[array]$CustomImageIso = Find-OSDCloudFile -Name '*.iso' -Path '\OSDCloud\OS\'

foreach ($Item in $CustomImageIso) {
    if ((Get-DiskImage -ImagePath $Item.FullName).Attached) {
        #ISO is already mounted
    }
    else {
        Write-Host "Attaching ISO $($Item.FullName)" -ForegroundColor Cyan
        Mount-DiskImage -ImagePath $Item.FullName
    }
}

$CustomImageChildItem = @()
[array]$CustomImageChildItem = Find-OSDCloudFile -Name '*.wim' -Path '\OSDCloud\OS\'
[array]$CustomImageChildItem += Find-OSDCloudFile -Name 'install.wim' -Path '\Sources\'
$CustomImageChildItem = $CustomImageChildItem | Sort-Object -Property Length -Unique | Sort-Object FullName | Where-Object {$_.Length -gt 3GB}
        
if ($CustomImageChildItem) {
    $CustomImageControl.Items.Add('') | Out-Null
    $CustomImageControl.IsEnabled = $true
    $CustomImageChildItem | ForEach-Object {
        $CustomImageControl.Items.Add($_) | Out-Null
    }
    $CustomImageControl.SelectedIndex = 0
}
else {
    $CustomImageLabel.Visibility = "Collapsed"  
    $CustomImageControl.Visibility = "Collapsed"  
}
#================================================
# AutopilotJsonControl
#================================================
$AutopilotJsonControl.IsEnabled = $false
$AutopilotJsonChildItem = @()
[array]$AutopilotJsonChildItem = Find-OSDCloudFile -Name "*.json" -Path '\OSDCloud\Autopilot\Profiles\' | Sort-Object FullName
[array]$AutopilotJsonChildItem += Find-OSDCloudFile -Name "*.json" -Path '\OSDCloud\Config\AutopilotJSON\' | Sort-Object FullName
$AutopilotJsonChildItem = $AutopilotJsonChildItem | Where-Object {$_.FullName -notlike "C*"}
if ($AutopilotJsonChildItem) {
    $AutopilotJsonControl.Items.Add('') | Out-Null
    $AutopilotJsonControl.IsEnabled = $true
    $AutopilotJsonChildItem | ForEach-Object {
        $AutopilotJsonControl.Items.Add($_) | Out-Null
    }
    $AutopilotJsonControl.SelectedIndex = 1
}
else {
    $AutopilotJsonLabel.Visibility = "Collapsed" 
    $AutopilotJsonControl.Visibility = "Collapsed"  
}
#================================================
# OOBEDeployControl
#================================================
$OOBEDeployControl.IsEnabled = $false
$OOBEDeployJsonChildItem = Find-OSDCloudFile -Name "*.json" -Path '\OSDCloud\Config\OOBEDeploy\' | Sort-Object FullName
$OOBEDeployJsonChildItem = $OOBEDeployJsonChildItem | Where-Object {$_.FullName -notlike "C*"}
if ($OOBEDeployJsonChildItem) {
    $OOBEDeployControl.Items.Add('') | Out-Null
    $OOBEDeployControl.IsEnabled = $true
    $OOBEDeployJsonChildItem | ForEach-Object {
        $OOBEDeployControl.Items.Add($_) | Out-Null
    }
    $OOBEDeployControl.SelectedIndex = 1
}
else {
    $OOBEDeployLabel.Visibility = "Collapsed"  
    $OOBEDeployControl.Visibility = "Collapsed"  
}
#================================================
# AutopilotOOBEControl
#================================================
$AutopilotOOBEControl.IsEnabled = $false
$AutopilotOOBEJsonChildItem = Find-OSDCloudFile -Name "*.json" -Path '\OSDCloud\Config\AutopilotOOBE\' | Sort-Object FullName
$AutopilotOOBEJsonChildItem = $AutopilotOOBEJsonChildItem | Where-Object {$_.FullName -notlike "C*"}
if ($AutopilotOOBEJsonChildItem) {
    $AutopilotOOBEControl.Items.Add('') | Out-Null
    $AutopilotOOBEControl.IsEnabled = $true
    $AutopilotOOBEJsonChildItem | ForEach-Object {
        $AutopilotOOBEControl.Items.Add($_) | Out-Null
    }
    $AutopilotOOBEControl.SelectedIndex = 1
}
else {
    $AutopilotOOBELabel.Visibility = "Collapsed"  
    $AutopilotOOBEControl.Visibility = "Collapsed"  
}
#================================================
# OSEditionControl
#================================================
$OSEditionControl.add_SelectionChanged({
    #Home
    if ($OSEditionControl.SelectedIndex -eq 0) {
        $ImageIndexControl.Text = 4
        $ImageIndexLabel.IsEnabled = $false
        $ImageIndexControl.IsEnabled = $false   #Disable
        $OSLicenseControl.SelectedIndex = 0    #Retail
        $OSLicenseControl.IsEnabled = $false   #Disable
    }
    #Home N
    if ($OSEditionControl.SelectedIndex -eq 1) {
        $ImageIndexControl.Text = 5
        $ImageIndexControl.IsEnabled = $false   #Disable
        $OSLicenseControl.SelectedIndex = 0    #Retail
        $OSLicenseControl.IsEnabled = $false   #Disable
    }
    #Home Single Language
    if ($OSEditionControl.SelectedIndex -eq 2) {
        $ImageIndexControl.Text = 6
        $ImageIndexControl.IsEnabled = $false   #Disable
        $OSLicenseControl.SelectedIndex = 0    #Retail
        $OSLicenseControl.IsEnabled = $false   #Disable
    }
    #Education
    if ($OSEditionControl.SelectedIndex -eq 3) {
        $OSLicenseControl.IsEnabled = $true
        if ($OSLicenseControl.SelectedIndex -eq 0) {
            $ImageIndexControl.Text = 7
        }
        else {
            $ImageIndexControl.Text = 4
        }
    }
    #Education N
    if ($OSEditionControl.SelectedIndex -eq 4) {
        $OSLicenseControl.IsEnabled = $true
        if ($OSLicenseControl.SelectedIndex -eq 0) {
            $ImageIndexControl.Text = 8
        }
        else {
            $ImageIndexControl.Text = 5
        }
    }
    #Enterprise
    if ($OSEditionControl.SelectedIndex -eq 5) {
        $OSLicenseControl.SelectedIndex = 1
        $OSLicenseControl.IsEnabled = $false
        $ImageIndexControl.Text = 6
    }
    #Enterprise N
    if ($OSEditionControl.SelectedIndex -eq 6) {
        $OSLicenseControl.SelectedIndex = 1
        $OSLicenseControl.IsEnabled = $false
        $ImageIndexControl.Text = 7
    }
    #Pro
    if ($OSEditionControl.SelectedIndex -eq 7) {
        $OSLicenseControl.IsEnabled = $true
        if ($OSLicenseControl.SelectedIndex -eq 0) {
            $ImageIndexControl.Text = 9
        }
        else {
            $ImageIndexControl.Text = 8
        }
    }
    #Pro N
    if ($OSEditionControl.SelectedIndex -eq 8) {
        $OSLicenseControl.IsEnabled = $true
        if ($OSLicenseControl.SelectedIndex -eq 0) {
            $ImageIndexControl.Text = 10
        }
        else {
            $ImageIndexControl.Text = 9
        }
    }
})
#================================================
# OSLicenseControl
#================================================
$OSLicenseControl.add_SelectionChanged({
    if ($OSLicenseControl.SelectedIndex -eq 0) {
        if ($OSEditionControl.SelectedIndex -eq 3) {$ImageIndexControl.Text = 7}
        if ($OSEditionControl.SelectedIndex -eq 4) {$ImageIndexControl.Text = 8}
        if ($OSEditionControl.SelectedIndex -eq 7) {$ImageIndexControl.Text = 9}
        if ($OSEditionControl.SelectedIndex -eq 8) {$ImageIndexControl.Text = 10}
    }
    if ($OSLicenseControl.SelectedIndex -eq 1) {
        if ($OSEditionControl.SelectedIndex -eq 3) {$ImageIndexControl.Text = 4}
        if ($OSEditionControl.SelectedIndex -eq 4) {$ImageIndexControl.Text = 5}
        if ($OSEditionControl.SelectedIndex -eq 7) {$ImageIndexControl.Text = 8}
        if ($OSEditionControl.SelectedIndex -eq 8) {$ImageIndexControl.Text = 9}
    }
})
#================================================
# CustomImageControl
#================================================
$CustomImageControl.add_SelectionChanged({
    if ($CustomImageControl.SelectedIndex -eq 0) {
        SetDefaultValues
    }
    else {
        $OperatingSystemLabel.Content = "Image Name"
        $OperatingSystemLabel.Width = "150"
        $OSBuildControl.Visibility = "Collapsed"
        $OSEditionControl.Visibility = "Collapsed"
        $OSLanguageControl.Visibility = "Collapsed"
        $OSLicenseControl.Visibility = "Collapsed"
        $ImageIndexControl.IsEnabled = $true
        $ImageIndexControl.Text = 1

        $GetWindowsImageControl.Visibility = "Visible"
        $GetWindowsImageControl.Items.Clear()
        $GetWindowsImageControl.IsEnabled = $true
        $GetWindowsImageOptions = Get-WindowsImage -ImagePath $CustomImageControl.SelectedValue
        $GetWindowsImageOptions | ForEach-Object {
            $GetWindowsImageControl.Items.Add($_.ImageName) | Out-Null
        }
        $GetWindowsImageControl.SelectedIndex = 0
    }
})
$GetWindowsImageControl.add_SelectionChanged({
    $ImageIndexControl.Text = $GetWindowsImageControl.SelectedIndex + 1
    if ($ImageIndexControl.Text -eq 0) {$ImageIndexControl.Text = 1}
})
#================================================
# StartButtonControl
#================================================
$StartButtonControl.add_Click({
    $Global:XamlWindow.Close()
    Show-PowershellWindow
    #================================================
    # Variables
    #================================================
    $OSImageIndex = $ImageIndexControl.Text
    $OSBuild = $OSBuildControl.SelectedItem
    $OSEdition = $OSEditionControl.SelectedItem
    $OSLanguage = $OSLanguageControl.SelectedItem
    $OSLicense = $OSLicenseControl.SelectedItem
    #================================================
    # AutopilotJson
    #================================================
    $AutopilotJsonName = $AutopilotJsonControl.SelectedValue
    if ($AutopilotJsonName) {
        $AutopilotJsonItem = $AutopilotJsonChildItem | Where-Object {$_.FullName -eq "$AutopilotJsonName"}
    }
    else {
        $SkipAutopilot = $true
        $AutopilotJsonName = $null
        $AutopilotJsonItem = $null
    }
    if ($AutopilotJsonItem) {
        $AutopilotJsonObject = Get-Content -Raw $AutopilotJsonItem.FullName | ConvertFrom-Json
        $SkipAutopilot = $false
    }
    else {
        $SkipAutopilot = $true
        $AutopilotJsonObject = $null
    }
    #================================================
    # OOBEDeployJson
    #================================================
    $OOBEDeployJsonName = $OOBEDeployControl.SelectedValue
    if ($OOBEDeployJsonName) {
        $OOBEDeployJsonItem = $OOBEDeployJsonChildItem | Where-Object {$_.FullName -eq "$OOBEDeployJsonName"}
    }
    else {
        $SkipOOBEDeploy = $true
        $OOBEDeployJsonName = $null
        $OOBEDeployJsonItem = $null
    }
    if ($OOBEDeployJsonItem) {
        $OOBEDeployJsonObject = Get-Content -Raw $OOBEDeployJsonItem.FullName | ConvertFrom-Json
        $SkipOOBEDeploy = $false
    }
    else {
        $SkipOOBEDeploy = $true
        $OOBEDeployJsonObject = $null
    }
    #================================================
    # AutopilotOOBEJson
    #================================================
    $AutopilotOOBEJsonName = $AutopilotOOBEControl.SelectedValue
    if ($AutopilotOOBEJsonName) {
        $AutopilotOOBEJsonItem = $AutopilotOOBEJsonChildItem | Where-Object {$_.FullName -eq "$AutopilotOOBEJsonName"}
    }
    else {
        $SkipAutopilotOOBE = $true
        $AutopilotOOBEJsonName = $null
        $AutopilotOOBEJsonItem = $null
    }
    if ($AutopilotOOBEJsonItem) {
        $AutopilotOOBEJsonObject = Get-Content -Raw $AutopilotOOBEJsonItem.FullName | ConvertFrom-Json
        $SkipAutopilotOOBE = $false
    }
    else {
        $SkipAutopilotOOBE = $true
        $AutopilotOOBEJsonObject = $null
    }
    #================================================
    # ImageFile
    #================================================
    $ImageFileFullName = $CustomImageControl.SelectedValue
    if ($ImageFileFullName) {
        $ImageFileItem = $CustomImageChildItem | Where-Object {$_.FullName -eq "$ImageFileFullName"}
        $ImageFileName = Split-Path -Path $ImageFileItem.FullName -Leaf
        $OSBuild = $null
        $OSEdition = $null
        $OSLanguage = $null
        $OSLicense = $null
    }
    else {
        $ImageFileItem = $null
        $ImageFileFullName = $null
        $ImageFileName = $null
    }
    #================================================
    # Global Variables
    #================================================
    $Global:StartOSDCloudGUI = $null
    $Global:StartOSDCloudGUI = [ordered]@{
        AutopilotJsonChildItem      = $AutopilotJsonChildItem
        AutopilotJsonItem           = $AutopilotJsonItem
        AutopilotJsonName           = $AutopilotJsonName
        AutopilotJsonObject         = $AutopilotJsonObject
        AutopilotOOBEJsonChildItem  = $AutopilotOOBEJsonChildItem
        AutopilotOOBEJsonItem       = $AutopilotOOBEJsonItem
        AutopilotOOBEJsonName       = $AutopilotOOBEJsonName
        AutopilotOOBEJsonObject     = $AutopilotOOBEJsonObject
        ImageFileFullName           = $ImageFileFullName
        ImageFileItem               = $ImageFileItem
        ImageFileName               = $ImageFileName
        Manufacturer                = $CSManufacturerControl.Text
        OOBEDeployJsonChildItem     = $OOBEDeployJsonChildItem
        OOBEDeployJsonItem          = $OOBEDeployJsonItem
        OOBEDeployJsonName          = $OOBEDeployJsonName
        OOBEDeployJsonObject        = $OOBEDeployJsonObject
        OSBuild                     = $OSBuild
        OSEdition                   = $OSEdition
        OSImageIndex                = $OSImageIndex
        OSLanguage                  = $OSLanguage
        OSLicense                   = $OSLicense
        Product                     = $CSProductControl.Text
        Restart                     = $RestartCheckbox.IsChecked
        SkipAutopilot               = $SkipAutopilot
        SkipAutopilotOOBE           = $SkipAutopilotOOBE
        SkipODT                     = $true
        SkipOOBEDeploy              = $SkipOOBEDeploy
        ZTI                         = $ZTICheckbox.IsChecked
    }
    #$Global:StartOSDCloudGUI | Out-Host
    if ($ScreenshotCheckbox.IsChecked) {
        $Params = @{
            Screenshot = $true
        }
        Start-OSDCloud @Params
    }
    else {
        Start-OSDCloud 
    }
})
#================================================
# Customizations
#================================================
[string]$ModuleVersion = Get-Module -Name OSD | Sort-Object -Property Version | Select-Object -ExpandProperty Version -Last 1
$Global:XamlWindow.Title = "$ModuleVersion OSDCloudGUI"
#================================================
# Branding
#================================================
if ($Global:OSDCloudGuiBranding) {
    $BrandingTitleControl.Content = $Global:OSDCloudGuiBranding.Title
    $BrandingTitleControl.Foreground = $Global:OSDCloudGuiBranding.Color
}
#================================================
# Launch
#================================================
#$Global:XamlWindow | Out-Host
$Global:XamlWindow.ShowDialog() | Out-Null
#================================================