-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCreateASDKDeploymentIso.ps1
More file actions
575 lines (486 loc) · 23.3 KB
/
CreateASDKDeploymentIso.ps1
File metadata and controls
575 lines (486 loc) · 23.3 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
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
<#
.SYNOPSIS
Creating a WinPE ISO image to be used for the automated deployment of ASDK
.DESCRIPTION
Creates an ISO image to be used for deploying ASDK
.PARAMETER TargetDirectory
$TargetDirectory where the image must be created
Note
About 500Mb free space required (is not checked)
.PARAMETER ASDKPassword
The password to be used for the deployment
.PARAMETER NetworkVHDLocation (optional)
The network location where the scripts can find the cloudbuilder.vhdx
.PARAMETER ShareUsername (optional)
The username for a network share (if specified)
.PARAMETER SharePassword (optional)
The password for the username to access the share
.PARAMETER CustomGitBranch
If not using the master branch, can allocate another branch
master, development, etc
.PARAMETER CustomGitLocation
To use your own GitHub Repository (Name/Repo)
.EXAMPLE
CreateASDKDeploymentIso.ps1 -TargetDirectory d:\winpe_asdk
.FUNCTIONALITY
PowerShell Language
#>
[cmdletbinding()]
param (
[string]$TargetDirectory,
[parameter(Mandatory = $true)]
[string]$ASDKPassword,
[parameter(Mandatory = $false)]
[string]$ShareUsername,
[parameter(Mandatory = $false)]
[string]$SharePassword,
[parameter(Mandatory = $false)]
[string]$NetworkVHDLocation,
[parameter(Mandatory = $false)]
[string]$CustomGitLocation,
[parameter(Mandatory = $false)]
[string]$CustomGitBranch
)
#$TargetDirectory='d:\winpe_amd81'
$version="201806131"
# Define Regex for Password Complexity - needs to be at least 12 characters, with at least 1 upper case, 1 lower case, 1 number and 1 special character
$regex = @"
(?=^.{12,123}$)((?=.*\d)(?=.*[A-Z])(?=.*[a-z])|(?=.*\d)(?=.*[^A-Za-z0-9])(?=.*[a-z])|(?=.*[^A-Za-z0-9])(?=.*[A-Z])(?=.*[a-z])|(?=.*\d)(?=.*[A-Z])(?=.*[^A-Za-z0-9]))^.*
"@
$TargetBatchFile=($env:TEMP + '\PreparewinPE.bat')
$ClosingISOBatchFile=($env:TEMP + '\PrepareISO.bat')
If (($NetworkVHDLocation) -and ((!($SharePassword) -or (!($ShareUsername))))) {
Write-host "Please provide all parameters"
exit
}
If (!($CustomGitBranch)){$CustomGitBranch='master'}
If (!($CustomGitLocation)){$CustomGitLocation='RZomerman/ASDK'}
function Write-LogMessage {
[cmdletbinding()]
param
(
[string]$SystemName = "PRE-ASDK",
[parameter(Mandatory = $false)]
[string]$Message = '',
[parameter(Mandatory = $false)]
[boolean]$NoNewLine
)
BEGIN {}
PROCESS {
Write-Verbose "Writing log message"
# Function for displaying formatted log messages. Also displays time in minutes since the script was started
write-host (Get-Date).ToShortTimeString() -ForegroundColor Cyan -NoNewline;
write-host ' - [' -ForegroundColor White -NoNewline;
write-host $systemName -ForegroundColor Yellow -NoNewline;
If ($NoNewLine) {
write-Host "]::$($message)" -ForegroundColor White -NoNewline;
}Else{
write-Host "]::$($message)" -ForegroundColor White;
}
}
END {}
}
Function Get-FileContents {
Param(
[string]$file
)
Process
{
$read = New-Object System.IO.StreamReader($file)
$serverarray = @()
while (($line = $read.ReadLine()) -ne $null)
{
$serverarray += $line
}
$read.Dispose()
return $serverarray
}
}
Function IsDISMStillRunning {
#This function validates if the DISM process is still running... and halts the script until it is
While (Get-Process | where-object {$_.ProcessName -Contains "Dism"}) {
write-host "." -NoNewline
start-sleep -s 2
}
}
function DownloadWithRetry{
[CmdletBinding()]
param (
[Parameter(Mandatory=$true)]
[string]
$url,
[Parameter(Mandatory=$false)]
[string]
$downloadLocation,
[Parameter(Mandatory=$false)]
[int]
$retries
)
while($true)
{
try
{
Invoke-WebRequest $url -OutFile $downloadLocation
break
}
catch
{
$exceptionMessage = $_.Exception.Message
Write-Host "Error downloading '$url': $exceptionMessage"
if ($retries -gt 0) {
$retries--
Write-Host ("Waiting 10 seconds before retrying. Retries left: " + $retries)
Start-Sleep -Seconds 10
}
else
{
$exception = $_.Exception
Write-Host "Failed to download '$url': $exceptionMessage"
break
}
}
}
}
Write-Host " *******************************" -foregroundColor Yellow
write-host " Welcome to the ASDK BUILDER " -foregroundColor Yellow
Write-Host " *******************************" -foregroundColor Yellow
Write-LogMessage -Message "Validating if a newer version is available."
$localversion=$version
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$Connection = test-connection -computername raw.githubusercontent.com -count 1 -quiet
If (!$Connection) {
Write-LogMessage -Message "No Internet connection available. Using local script"
return $false
}elseIf ($Connection) {
$Uri = 'https://raw.githubusercontent.com/RZomerman/ASDK/master/CreateASDKDeploymentIso.ps1'
$OutFile = ($env:TEMP + '\' + 'CreateASDKDeploymentIso.ps1')
DownloadWithRetry -url $uri -downloadLocation $outfile -retries 3
$DownloadedFile=Get-FileContents $outfile
Foreach ($line in $DownloadedFile) {
If ($line -like '$version=*') {
$version=$line.replace('$version=','')
$version=$version.replace('"',"")
break
}
}
Write-LogMessage -Message "Downloaded file" $version
Write-LogMessage -Message "Local file" $Localversion
If ($version -gt $Localversion) {
Copy-item ($env:TEMP + '\' + 'CreateASDKDeploymentIso.ps1') 'CreateASDKDeploymentIso.ps1' -force
Write-LogMessage -Message "A newer version of this script was downloaded -"
Write-LogMessage -Message " ***Please restart this script***"
exit
}
Elseif ($version -eq $Localversion){
Write-LogMessage -Message "Using local script"
}
Else{
Write-LogMessage -Message "Using local script"
}
}
Write-LogMessage -Message "Validating if running under Admin Privileges"
$currentPrincipal = New-Object Security.Principal.WindowsPrincipal([Security.Principal.WindowsIdentity]::GetCurrent())
If (!($currentPrincipal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator))){
Write-LogMessage -Message "User is not administrator - forced quit"
exit
}
#If a password was entered, validating the complexity (ASDK will halt install if not)
If ($ASDKPassword){
if ($ASDKPassword -cmatch $regex -eq $true) {
Write-LogMessage -Message "Password complexity Validated"
# Convert plain text password to a secure string
}
elseif ($ASDKPassword -cmatch $regex -eq $false) {
Write-LogMessage -Message "The password doesn't meet complexity requirements,"
Write-LogMessage -Message "it needs to be at least 12 characters in length."
Write-LogMessage -Message "Your password should also have at least 3 of the following 4 options"
Write-LogMessage -Message "1 upper case, 1 lower case, 1 number, 1 special character."
# Obtain new password and store as a secure string
$secureVMpwd = Read-Host -AsSecureString "Enter a secure ASDK password"
$secureVMpwd2 = Read-Host -AsSecureString "Confirm secure ASDK password"
# Convert to plain text to test regex complexity
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($secureVMpwd)
$ASDKPassword = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)
$BSTR2 = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($secureVMpwd2)
$ASDKPasswordValidate = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR2)
If ($ASDKPassword -ne $ASDKPasswordValidate) {
Write-LogMessage -Message "Passwords do not match"
exit
}
if ($ASDKPassword -cmatch $regex -eq $true) {
Write-LogMessage -Message "Password complexity Validated"
}
else {
Write-LogMessage -Message "No valid password was entered again. Exiting process..." -ErrorAction Stop
exit
}
}
}
$CopyDir=$TargetDirectory
#Validating if Windows ADK is installed
If (!(test-path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\DandISetEnv.bat")) {
Write-LogMessage -Message "Windows Assessment and Deployment Kit (Windows ADK) was not found"
#https://go.microsoft.com/fwlink/?linkid=873065
$Uri = 'https://go.microsoft.com/fwlink/?linkid=873065'
$OutFile = ($env:TEMP + '\' + 'adksetup.exe')
If (!(Test-Path $OutFile)){
DownloadWithRetry -url $uri -downloadLocation $outfile -retries 3
}
#If download was successfull: install ADK features we need
Write-LogMessage -Message "Installing Windows ADK features - this might take up to 30 minutes"
Write-LogMessage -Message "Windows ADK will download additional components for installation"
Write-LogMessage -Message "Windows ADK Installation will only be required once"
Write-LogMessage -Message "Windows ADK Installation will take-up ~5.88Gb of space on your System drive"
#creating a log directory for the installation
If (!(test-path ($env:TEMP + "\ADKLogs"))){
New-Item ($env:TEMP + "\ADKLogs") -Type directory | Out-Null
}
$adklogfile = ("ADKLog-" + (Get-Date).tostring("dd-MM-yyyy-hh-mm-ss") + ".log")
$logFilePath=($env:TEMP + "\ADKLogs\" + $adklogfile)
$logDirectory=('"'+ $logFilePath+ '"')
$InstallArguments = ("/log $logDirectory /quiet /norestart /features OptionId.DeploymentTools OptionId.WindowsPreinstallationEnvironment")
Start-Process -FilePath ($env:TEMP + '\' + 'adksetup.exe') -ArgumentList $InstallArguments
Write-LogMessage -Message "Installing" -NoNewline $true
#Waiting for the process to initialize prior to grabbing the logfile
start-sleep 10
#Monitoring the logfile to check for Exit code
While (1 -eq 1) {
$LogFileContents=Get-Content $logFilePath -Tail 2
$InstallStatus = $LogfileContents | %{$_ -match "Exit code: "}
If ($InstallStatus -contains $true) {
#Exit code found
$Installcompleted = $LogfileContents | %{$_ -match "Exit code: 0x0"}
If ($Installcompleted -contains $true) {
#Exit code is 0x0
Write-host "" | Out-Null
Write-LogMessage -Message "Installation completed"
break
} Else {
Write-LogMessage -Message "Installation Failed, please install manually"
Write-Host -ForegroundColor Red "Windows ADK required"
exit
}
}
#sleep for 2 seconds, then check again
Write-host "." -NoNewline
Start-Sleep -s 10
}
#to avoid the . to be in front of the Write-LogMessage
Write-host "" | Out-Null
}else{
#windows ADK was found
Write-LogMessage -Message "Windows ADK found"
}
#Validating input directory
If ($TargetDirectory.Contains(" ")) {
Write-LogMessage -Message "Input contains spaces, trimming"
$TargetDirectory=$TargetDirectory.Replace(" ","")
Write-LogMessage -Message "Directory to be used: $TargetDirectory"
}
#Setting Github user location
$GitHubLocation=('https://raw.githubusercontent.com/' + $CustomGitLocation + '/' + $CustomGitBranch + '/')
#Need to copy all the required files from github to temp
Write-LogMessage -Message "Downloading scripts from GitHub"
Write-LogMessage -Message " - reposi: $CustomGitLocation"
Write-LogMessage -Message " - branch: $CustomGitBranch"
$Uri = ($GitHubLocation + 'Start.ps1')
#write-host $uri
$OutFile = ($env:TEMP + '\' + 'Start.ps1')
DownloadWithRetry -url $uri -downloadLocation $outfile -retries 3
$Uri = ($GitHubLocation + 'PrepareAzureStackPOC.psm1')
#write-host $uri
$OutFile = ($env:TEMP + '\' + 'PrepareAzureStackPOC.psm1')
DownloadWithRetry -url $uri -downloadLocation $outfile -retries 3
$Uri = ($GitHubLocation + 'PrepareAzureStackPOC.ps1')
#write-host $uri
$OutFile = ($env:TEMP + '\' + 'PrepareAzureStackPOC.ps1')
DownloadWithRetry -url $uri -downloadLocation $outfile -retries 3
$Uri = ($GitHubLocation + 'winpe.jpg')
#write-host $uri
$OutFile = ($env:TEMP + '\' + 'winpe.jpg')
DownloadWithRetry -url $uri -downloadLocation $outfile -retries 3
#Customize the ps1 if optional attributes are found
$BaseCommand=' . x:\PrepareAzureStackPOC.ps1'
If ($ShareUsername) {
$NewCommand=($NewCommand + " -ShareUserName " + $ShareUsername)
}
If ($SharePassword) {
$NewCommand=($NewCommand + " -SharePassword " + $SharePassword)
}
If ($NetworkVHDLocation){
$NewCommand=($NewCommand + " -NetworkVHDLocation " + $NetworkVHDLocation)
}
If ($ASDKPassword){
$NewCommand=($NewCommand + " -ASDKPassword " + $ASDKPassword)
}
If ($CustomGitLocation){
$NewCommand=($NewCommand + " -CustomGitLocation " + $CustomGitLocation)
$NewStartCommand=($NewStartCommand + " -CustomGitLocation " + $CustomGitLocation)
}
If ($CustomGitBranch){
$NewCommand=($NewCommand + " -CustomGitBranch " + $CustomGitBranch)
$NewStartCommand=($NewStartCommand + " -CustomGitBranch " + $CustomGitBranch)
}
Write-Verbose ($BaseCommand + $NewCommand)
Add-Content ($env:TEMP + '\' + 'Start.ps1') ($BaseCommand + $NewCommand)
#Creating a copy of the Deployment Toolkit cmd start script so we can add the copype.cmd to it when starting
copy-item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\DandISetEnv.bat" $TargetBatchFile
$batchfile = Get-Content $TargetBatchFile
$batchfile += "`r`nREM Creating WinPE repository"
$batchfile += "`r`ncopype.cmd amd64 $TargetDirectory"
Set-Content -Value $batchfile -Path $TargetBatchFile -Force
#Starting the Deployment Toolkit CMD from the created batchfile - this will automatically start the copype.cmd script
Write-LogMessage -Message "creating WinPE on $TargetDirectory"
If (!(test-path $TargetDirectory)) {
Write-LogMessage -Message "Creating base WinPE image"
Start-Process 'C:\WINDOWS\system32\cmd.exe' -argumentlist "/k $TargetBatchFile" -Verb runAs -WindowStyle Minimized
}else{
Write-LogMessage -Message "Target Directory already exists"
Write-LogMessage -Message "Please make sure to specify a non-existing directory"
Exit
#exit
}
#Need to wait for the copype.cmd to be completed - last file seems to be Media\zh-tw\bootmgt.efi.mui
$MonitorredFile=($TargetDirectory + '\Media\zh-tw\bootmgr.efi.mui')
Write-LogMessage -Message "waiting for copy to complete"
start-sleep -Seconds 3
While (1 -eq 1) {
IF (Test-Path $MonitorredFile) {
#file exists. break loop
break
}
#sleep for 2 seconds, then check again
#write-host "sleeping"
Write-host "." -NoNewline
Start-Sleep -s 2
Write-host "" | Out-Null
}
#Mounting the image and adding the required repositories to it
$1=('/mount-image /imagefile:' + $TargetDirectory + '\media\sources\boot.wim /index:1 /mountdir:' + $TargetDirectory + '\mount')
$2=('/Image:' + $TargetDirectory + '\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WMI.cab"')
$3=('/Image:' + $TargetDirectory + '\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-NetFX.cab"')
$4=('/Image:' + $TargetDirectory + '\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-Scripting.cab"')
$5=('/Image:' + $TargetDirectory + '\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-PowerShell.cab"')
$6=('/Image:' + $TargetDirectory + '\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-DismCmdlets.cab"')
$7=('/Image:' + $TargetDirectory + '\mount /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-StorageWMI.cab"')
#Mounting the image
Write-LogMessage -Message "Mounting the WinPE image" -NoNewline $true
Start-Process 'DISM' -ArgumentList $1 -WindowStyle Minimized
#Need to check if c:\windows\system32\dism.exe is still running
IsDISMStillRunning
write-host ""
Write-LogMessage -Message "Adding WMI package" -NoNewline $true
Start-Process 'DISM' -ArgumentList $2 -WindowStyle Minimized
IsDISMStillRunning
write-host ""
Write-LogMessage -Message "Adding Network package" -NoNewline $true
Start-Process 'DISM'-ArgumentList $3 -WindowStyle Minimized
IsDISMStillRunning
write-host ""
Write-LogMessage -Message "Adding Scriptig package" -NoNewline $true
Start-Process 'DISM'-ArgumentList $4 -WindowStyle Minimized
IsDISMStillRunning
write-host ""
Write-LogMessage -Message "Adding Powershell package" -NoNewline $true
Start-Process 'DISM'-ArgumentList $5 -WindowStyle Minimized
IsDISMStillRunning
write-host ""
Write-LogMessage -Message "Adding DISM package" -NoNewline $true
Start-Process 'DISM' -ArgumentList $6 -WindowStyle Minimized
IsDISMStillRunning
write-host ""
Write-LogMessage -Message "Adding Storage WMI package" -NoNewline $true
Start-Process 'DISM' -ArgumentList $7 -WindowStyle Minimized
IsDISMStillRunning
#Copy the files to the mounted image
If (test-path ($TargetDirectory + "\mount\Windows")) {
write-host ""
Write-LogMessage -Message "Copying files to the mounted image" -NoNewLine $true
If (test-path ($env:TEMP + '\' + 'Start.ps1')) {
$target=($TargetDirectory + '\mount\Start.ps1')
write-host "." -NoNewline
Copy-Item ($env:TEMP + '\' + 'Start.ps1') $target -Force
}
If (test-path ($env:TEMP + '\' + 'PrepareAzureStackPOC.ps1')) {
$target=($TargetDirectory + '\mount\PrepareAzureStackPOC.ps1')
write-host "." -NoNewline
Copy-Item ($env:TEMP + '\' + 'PrepareAzureStackPOC.ps1') $target -Force
}
If (test-path ($env:TEMP + '\' + 'PrepareAzureStackPOC.psm1')) {
$target=($TargetDirectory + '\mount\PrepareAzureStackPOC.psm1')
write-host "." -NoNewline
Copy-Item ($env:TEMP + '\' + 'PrepareAzureStackPOC.psm1') $target -Force
}
#need to take ownership of WinPE and delete it (to change background later on)
write-host "" | Out-Null
Write-LogMessage -Message "Taking ownership of background image"
$BackgroundImage=($TargetDirectory + '\mount\Windows\System32\winpe.jpg')
$acl=Get-Acl $BackgroundImage
$Group = New-Object System.Security.Principal.NTAccount("Builtin", "Administrators")
$ACL.SetOwner($Group)
Set-Acl -Path $BackgroundImage -AclObject $acl
#Delete the old WinPE.jpg and copy the new one
Write-LogMessage -Message "Taking full control of background image for replacement"
$permission = ".\Administrators","FullControl","Allow"
$accessRule = new-object System.Security.AccessControl.FileSystemAccessRule $permission
$acl.SetAccessRule($accessRule)
Set-Acl -Path $BackgroundImage -AclObject $acl
remove-item $BackgroundImage
If (test-path ($env:TEMP + '\' + 'winpe.jpg')) {
Write-LogMessage -Message "Replacing background image"
Copy-Item ($env:TEMP + '\' + 'winpe.jpg') ($BackgroundImage) -Force
}
#Setting the autostart to run powershell start.ps1 script
Write-LogMessage -Message "Setting the autostart scripts"
$StartCommand="powershell -NoExit -c X:\Start.ps1"
$StartCommand=($StartCommand + $NewStartCommand)
$startnet = Get-Content ($TargetDirectory + '\mount\windows\system32\startnet.cmd')
$startnet += "`r`npowershell -c Set-ExecutionPolicy Unrestricted -Force"
$startnet += "`r`ncd\"
$startnet += "`r`n$StartCommand"
#$startnet
Set-Content -Value $startnet -Path ($TargetDirectory + "\mount\windows\system32\startnet.cmd") -Force
}
#Closing the mount and making an ISO out of it.....
$DISM=('/unmount-image /mountdir:' + $TargetDirectory + '\mount /commit')
#write-host ""
Write-LogMessage -Message "Unmounting the image" -NoNewline $true
Start-process 'Dism' -ArgumentList $DISM -WindowStyle Minimized
IsDISMStillRunning
$ISO=('MakeWinPEMedia /ISO ' + $TargetDirectory + ' ' + $TargetDirectory + '\WinPE_ASDK_Stack.iso')
If (test-path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\DandISetEnv.bat") {
copy-item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\DandISetEnv.bat" $ClosingISOBatchFile
$ISOfile = Get-Content $ClosingISOBatchFile
$ISOfile += "`r`nREM Creating ISO"
$ISOfile += "`r`n$ISO"
Set-Content -Value $ISOfile -Path $ClosingISOBatchFile -Force
write-host ""
Write-LogMessage -Message "Creating the ISO image"
$MonitorredFile=($TargetDirectory + '\WinPE_ASDK_Stack.iso')
If (test-path $MonitorredFile) {
Write-LogMessage "ISO is already present.."
} Else {
Start-Process 'C:\WINDOWS\system32\cmd.exe' -argumentlist "/k $ClosingISOBatchFile" -Verb runAs -WindowStyle Minimized
}
}
$MonitorredFile=($TargetDirectory + '\WinPE_ASDK_Stack.iso')
Write-LogMessage -Message "waiting for ISO to be created"
While (1 -eq 1) {
IF (Test-Path $MonitorredFile) {
#file exists. break loop
break
}
#sleep for 2 seconds, then check again
Start-Sleep -s 4
}
If (test-path ($TargetDirectory + '\WinPE_ASDK_Stack.iso')) {
Write-LogMessage -Message "Iso successfully created"
$ISOOutput=($TargetDirectory + '\WinPE_ASDK_Stack.iso')
Write-Host " ***********************************************" -foregroundColor Yellow
write-host " please check $ISOOutput " -foregroundColor Yellow
Write-Host " ***********************************************" -foregroundColor Yellow
write-host ""
}
#Dism /unmount-image /mountdir:D:\winpe_amd71\mount /commit
#MakeWinPEMedia /ISO D:\winpe_amd71 D:\winpe_amd71\WinPE_ASDK_Stack.iso
#MakeWinPEMedia /UFD D:\winpe_amd71 P: