-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathInstall-HYDWindowsADK10.ps1
More file actions
26 lines (17 loc) · 972 Bytes
/
Install-HYDWindowsADK10.ps1
File metadata and controls
26 lines (17 loc) · 972 Bytes
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
<#
************************************************************************************************************************
Created: 2015-03-01
Version: 1.1
Disclaimer:
This script is provided "AS IS" with no warranties, confers no rights and
is not supported by the author or DeploymentArtist.
Author - Johan Arwidmark
Twitter: @jarwidmark
Blog : http://deploymentresearch.com
************************************************************************************************************************
#>
$ADKSetupFile = "C:\Setup\Windows ADK 10 v1607\adksetup.exe"
# Validation
if (!(Test-Path -path $ADKSetupFile)) {Write-Warning "Could not find Windows 10 ADK v1607 Setup files, aborting...";Break}
# Install Windows ADK 10
& $ADKSetupFile /Features OptionId.DeploymentTools OptionId.WindowsPreinstallationEnvironment OptionId.ImagingAndConfigurationDesigner OptionId.ICDConfigurationDesigner OptionId.UserStateMigrationTool /norestart /quiet /ceip off