OSDeploy.psd1
|
# # Module manifest for module 'OSDeploy' # # Generated by: David Segura # Generated on: 2026-04-28 # @{ # --- Identity --- RootModule = 'OSDeploy.psm1' ModuleVersion = '26.5.25' CompatiblePSEditions = @('Core','Desktop') GUID = '3c355ed0-40b0-4d13-a1f3-fb1bd1b42d74' # --- Authoring --- Author = 'David Segura' CompanyName = 'Recast Software' Copyright = '(c) 2026 Recast Software. All rights reserved.' Description = 'Root module for OSDeploy.' # --- Requirements --- PowerShellVersion = '5.1' # --- Exports --- FunctionsToExport = @( # Module 'Get-OSDeployModulePath' # Returns the module root directory path 'Get-OSDeployModuleVersion' # Returns the installed module version # Hydration 'Invoke-OSDeployHydration' # Hydrates OSDeploy functions to create an OSDCloud BootMedia # Software 'Install-OSDeploySoftware' # Installs deployment prerequisites (ADK, MDT, WinGet packages) # Core 'Update-OSDeployCore' # Updates all OSDeployCore assets: Windows Enterprise ESD files and WinPE driver packages # Core ESD 'Update-OSDeployCoreESD' # Downloads Windows Enterprise ESD files from the latest OSDeploy OS catalog # Core OS 'Import-OSDeployCoreOS' # Mounts a Windows ISO and extracts WinPE, WinRE, and drivers into the OSDeployCore repository 'Update-OSDeployCoreOS' # Downloads the latest Enterprise ESD and imports WinPE, WinRE, and drivers into the OSDeployCore repository # Core Drivers 'Get-OSDeployCoreDrivers' # Lists driver packages currently in the local WinPE driver library 'Update-OSDeployCoreDrivers' # Downloads and expands WinPE network and storage drivers into the library # Boot 'Build-OSDeployBoot' # Builds a WinPE boot image from an imported Windows source 'Update-OSDeployBootISO' # Rebuilds an existing boot image with updated drivers and tools # Hyper-V 'New-OSDeployHyperVM' # Creates a Hyper-V VM pre-configured for OS deployment testing # USB 'New-OSDeployBootUSB' # Creates a bootable WinPE USB drive from an imported source 'Update-OSDeployBootUSB' # Refreshes an existing WinPE USB drive with the latest boot media # MDT 'Install-OSDeployMDT' # One-time MDT Deployment Share initialization 'Invoke-OSDeployMDT' # MDT LiteTouchPE exit script — auto-customizes WinPE on every Update Deployment Share ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() # --- Discovery --- PrivateData = @{ PSData = @{ Tags = @('OSDeploy', 'OSDCloud', 'OSD', 'Recast', 'RecastSoftware') Prerelease = 'preview' } } } |