Get-WindowsAdkPaths
Last updated
Was this helpful?
Retrieves the command paths of the Windows Assessment and Deployment Kit (ADK).
Module
OSD
Platform
WinPE (amd64 / arm64)
Retrieves the command paths of the Windows Assessment and Deployment Kit (ADK).
Get-WindowsAdkPaths [[-Architecture] <String>] [[-WindowsAdkRoot] <Object>]
[-ProgressAction <ActionPreference>] [<CommonParameters>]-Architecture
String
False
Windows ADK architecture to get. Valid values are 'amd64', 'x86', and 'arm64'.
-WindowsAdkRoot
Object
False
Path to the Windows ADK root directory. Typically 'C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit' [ValidateScript({ if (!($_ | Test-Path)) { throw 'Path does not exist' } if (!($_ | Test-Path -PathType Container)) { throw 'Path must be a directory' } if (!(Test-Path "$\Deployment Tools")) { throw 'Path does not contain a Deployment Tools directory' } if (!(Test-Path "$\Windows Preinstallation Environment")) { throw 'Path does not contain a Windows Preinstallation Environment directory' } return $true })]
No examples provided in source documentation.
Last updated
Was this helpful?
Was this helpful?

