### Get-OSDCloudModuleVersion Example Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Get-OSDCloudModuleVersion.md Placeholder example for the Get-OSDCloudModuleVersion cmdlet. ```powershell PS C:\> {{ Add example code here }} ``` -------------------------------- ### Invoke WinPE Startup Utilities Source: https://context7.com/osdeploy/osdcloud/llms.txt Use Invoke-OSDCloudPEStartup to access various Windows PE utilities. Options include displaying device info, hardware diagnostics, network configuration, Wi-Fi setup, on-screen keyboard, and module updates. ```powershell # Display comprehensive device information Invoke-OSDCloudPEStartup -Id Info # Show hardware information and error detection Invoke-OSDCloudPEStartup -Id DeviceHardware # Display network configuration (ipconfig /all) Invoke-OSDCloudPEStartup -Id IPConfig # Launch Wi-Fi connection setup if network not detected Invoke-OSDCloudPEStartup -Id WiFi # Launch on-screen keyboard (if physical keyboard not detected) Invoke-OSDCloudPEStartup -Id OSK # Update a PowerShell module from PowerShell Gallery Invoke-OSDCloudPEStartup -Id UpdateModule -Value 'OSDCloud' ``` -------------------------------- ### Install OSDCloud in WinPE Source: https://github.com/osdeploy/osdcloud/blob/main/README.md Use this command to install the OSDCloud module directly within a WinPE environment. ```powershell Install-Module -Name OSDCloud -SkipPublisherCheck -Force ``` -------------------------------- ### OSDCloud Default Workflow Configuration Source: https://context7.com/osdeploy/osdcloud/llms.txt This JSON defines the default OSDCloud workflow, including steps for disk preparation, OS installation, and driver deployment. Customize this file to modify deployment sequences. ```json { "id": "160fafbe-5e98-47bf-b152-e9295644b6a0", "name": "OSDCloud", "description": "OSDCloud", "version": "26.2.12", "amd64": true, "arm64": true, "default": true, "steps": [ { "name": "Initialize OSDCloud Workflow", "command": "step-initialize-osdcloudworkflowtask" }, { "name": "Clear Local Disk", "command": "step-preinstall-cleartargetdisk" }, { "name": "Download Windows ESD from Microsoft", "command": "step-install-downloadwindowsimage" }, { "name": "Expand Windows Image to Local Disk", "command": "step-install-expandwindowsimage" }, { "name": "OEM DriverPack: Download from OEM", "command": "step-Save-WindowsDriver-DriverPack" }, { "name": "OEM DriverPack: Apply", "command": "step-Add-WindowsDriver-DriverPack" } ] } ``` -------------------------------- ### Get OSDCloud Module Installation Path Source: https://context7.com/osdeploy/osdcloud/llms.txt Use Get-OSDCloudModulePath to find the installation directory of the OSDCloud module. This path is useful for accessing configuration files, driver catalogs, and other module resources. ```powershell # Get the module installation path $modulePath = Get-OSDCloudModulePath Write-Host "Module installed at: $modulePath" # Access workflow configurations $workflowPath = Join-Path $modulePath 'workflow\default\tasks\osdcloud.json' $workflow = Get-Content $workflowPath | ConvertFrom-Json Write-Host "Default workflow has $($workflow.steps.Count) steps" # Access driver catalogs $dellCatalog = Join-Path $modulePath 'catalogs\driverpack\dell.xml' [xml]$catalog = Get-Content $dellCatalog ``` -------------------------------- ### Get-OSDCloudModuleVersion Source: https://context7.com/osdeploy/osdcloud/llms.txt Retrieves the currently installed version of the OSDCloud PowerShell module. ```APIDOC ## Get-OSDCloudModuleVersion ### Description Returns the current version of the installed OSDCloud PowerShell module. Useful for verification during deployment and troubleshooting. ### Method `Get-OSDCloudModuleVersion` ### Parameters This cmdlet takes no parameters. ### Response Example ```powershell # Get the current module version $version = Get-OSDCloudModuleVersion Write-Host "OSDCloud Module Version: $version" # Output: OSDCloud Module Version: 26.3.24.1 # Use in conditional logic for version-specific behavior if ((Get-OSDCloudModuleVersion) -ge [Version]'26.3.0.0') { Write-Host "Running with Windows 11 25H2 support" } ``` ``` -------------------------------- ### Update PowerShell Module in WinPE Source: https://context7.com/osdeploy/osdcloud/llms.txt Updates a specified PowerShell module from the PowerShell Gallery during WinPE startup. Provides a 10-second countdown before installation, allowing users to cancel. ```powershell # Update the OSDCloud module to latest version Use-PEStartupUpdateModule -Name 'OSDCloud' ``` ```powershell # Update other modules needed for deployment Use-PEStartupUpdateModule -Name 'WindowsAutopilotIntune' Use-PEStartupUpdateModule -Name 'Microsoft.Graph.Authentication' ``` -------------------------------- ### Get Available Wi-Fi Networks Source: https://context7.com/osdeploy/osdcloud/llms.txt Retrieves a list of available Wi-Fi networks and displays their signal strength, SSID, authentication, and encryption types. ```powershell # Get list of available Wi-Fi networks $networks = Get-OSDCloudWifi $networks | Format-Table Signal, SSID, Authentication, Encryption ``` -------------------------------- ### Get OSDCloud Module Version Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Get-OSDCloudModuleVersion.md Retrieves the current version of the OSDCloud module. ```APIDOC ## GET /osdeploy/osdcloud/version ### Description Retrieves the current version of the OSDCloud module. ### Method GET ### Endpoint /osdeploy/osdcloud/version ### Parameters #### Query Parameters - **ProgressAction** (ActionPreference) - Optional - Specifies how to display progress for the cmdlet. ### Response #### Success Response (200) - **version** (string) - The current version of the OSDCloud module. #### Response Example ```json { "version": "2.0.0" } ``` ``` -------------------------------- ### Get OSDCloud Module Version Source: https://context7.com/osdeploy/osdcloud/llms.txt Retrieve the current version of the OSDCloud module using Get-OSDCloudModuleVersion. This is useful for verifying the module's presence and for conditional logic based on version. ```powershell # Get the current module version $version = Get-OSDCloudModuleVersion Write-Host "OSDCloud Module Version: $version" # Use in conditional logic for version-specific behavior if ((Get-OSDCloudModuleVersion) -ge [Version]'26.3.0.0') { Write-Host "Running with Windows 11 25H2 support" } ``` -------------------------------- ### Initialize and Launch OSDCloud Source: https://github.com/osdeploy/osdcloud/blob/main/README.md Import the module to access available commands and launch the interactive deployment experience. ```powershell Import-Module OSDCloud Get-Command -Module OSDCloud # Launch the interactive deployment experience Deploy-OSDCloud ``` -------------------------------- ### Invoke-OSDCloudPEStartup Source: https://context7.com/osdeploy/osdcloud/llms.txt Executes various Windows PE startup utilities for diagnostics, configuration, and module updates. ```APIDOC ## Invoke-OSDCloudPEStartup ### Description Invokes various WinPE startup utilities for diagnostics and configuration. Provides access to device hardware info, IP configuration, Wi-Fi setup, on-screen keyboard, and module updates through a single entry point. ### Method `Invoke-OSDCloudPEStartup` ### Parameters #### Path Parameters - **-Id** (string) - Required - Specifies the utility to invoke. Accepted values: Info, DeviceHardware, IPConfig, WiFi, OSK, UpdateModule. - **-Value** (string) - Optional - Used with the 'UpdateModule' Id to specify the module name to update. ### Request Example ```powershell # Display comprehensive device information Invoke-OSDCloudPEStartup -Id Info # Show hardware information and error detection Invoke-OSDCloudPEStartup -Id DeviceHardware # Display network configuration (ipconfig /all) Invoke-OSDCloudPEStartup -Id IPConfig # Launch Wi-Fi connection setup if network not detected Invoke-OSDCloudPEStartup -Id WiFi # Launch on-screen keyboard (if physical keyboard not detected) Invoke-OSDCloudPEStartup -Id OSK # Update a PowerShell module from PowerShell Gallery Invoke-OSDCloudPEStartup -Id UpdateModule -Value 'OSDCloud' ``` ``` -------------------------------- ### Show-PEStartupWifi Source: https://context7.com/osdeploy/osdcloud/llms.txt Initiates Wi-Fi connectivity during WinPE startup with automatic network initialization and validation. ```APIDOC ## Show-PEStartupWifi ### Description Initiates Wi-Fi connectivity during WinPE startup with automatic network initialization. Validates IP address assignment and handles DHCP lease renewal with retry logic. ### Method PowerShell Function ### Request Example Show-PEStartupWifi ``` -------------------------------- ### Display WinPE Startup Device Information Source: https://context7.com/osdeploy/osdcloud/llms.txt Displays comprehensive WinPE and device hardware information during OS deployment startup. Hardware info is exported to logs in the temp directory. ```powershell Show-PEStartupDeviceInfo ``` -------------------------------- ### Initiate Wi-Fi Connectivity in WinPE Source: https://context7.com/osdeploy/osdcloud/llms.txt Initiates Wi-Fi connectivity during WinPE startup with automatic network initialization. It retries for network availability up to 20 seconds. ```powershell # Start Wi-Fi connection with automatic network initialization Show-PEStartupWifi ``` -------------------------------- ### List Plug and Play Hardware in WinPE Source: https://context7.com/osdeploy/osdcloud/llms.txt Lists all Plug and Play hardware devices detected in Windows PE with their status. Useful for verifying driver availability. ```powershell # Display all detected PnP hardware Show-PEStartupHardware ``` -------------------------------- ### Deploy-OSDCloud Cmdlet Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Deploy-OSDCloud.md This snippet provides the documentation for the Deploy-OSDCloud cmdlet, outlining its syntax, parameters, and common usage. ```APIDOC ## Deploy-OSDCloud Cmdlet ### Description {{ Fill in the Description }} ### Syntax ```powershell Deploy-OSDCloud [-WorkflowName ] [-CLI] [-ProgressAction ] [] ``` ### Parameters #### -CLI {{ Fill CLI Description }} - **Type**: SwitchParameter - **Parameter Sets**: (All) - **Aliases**: - **Required**: False - **Position**: Named - **Default value**: False - **Accept pipeline input**: False - **Accept wildcard characters**: False #### -ProgressAction {{ Fill ProgressAction Description }} - **Type**: ActionPreference - **Parameter Sets**: (All) - **Aliases**: proga - **Required**: False - **Position**: Named - **Default value**: None - **Accept pipeline input**: False - **Accept wildcard characters**: False #### -WorkflowName {{ Fill WorkflowName Description }} - **Type**: String - **Parameter Sets**: (All) - **Aliases**: Name - **Required**: False - **Position**: Named - **Default value**: None - **Accept pipeline input**: True (ByPropertyName) - **Accept wildcard characters**: False ### Common Parameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). ### Example 1 ```powershell PS C:\> {{ Add example code here }} ``` {{ Add example description here }} ``` -------------------------------- ### Show-PEStartupHardware Source: https://context7.com/osdeploy/osdcloud/llms.txt Lists all Plug and Play hardware devices detected in Windows PE with their status to verify driver availability. ```APIDOC ## Show-PEStartupHardware ### Description Lists all Plug and Play hardware devices detected in Windows PE with their status. Useful for verifying driver availability and identifying hardware requiring additional drivers. ### Method PowerShell Function ### Request Example Show-PEStartupHardware ``` -------------------------------- ### Connect to Wi-Fi using Exported Profile Source: https://context7.com/osdeploy/osdcloud/llms.txt Connect to a Wi-Fi network using an existing profile XML file. Ensure the profile is exported with key information. ```powershell # First export: netsh wlan export profile name="CorpNetwork" key=clear folder=C:\WiFi Connect-OSDCloudWifiByXMLProfile -wifiProfile 'C:\WiFi\Wi-Fi-CorpNetwork.xml' ``` -------------------------------- ### Show-PEStartupIpconfig Source: https://context7.com/osdeploy/osdcloud/llms.txt Displays detailed network adapter and IP configuration using ipconfig /all. ```APIDOC ## Show-PEStartupIpconfig ### Description Displays detailed network adapter and IP configuration using ipconfig /all. Helps troubleshoot network connectivity issues during WinPE deployment. ### Method PowerShell Function ### Request Example Show-PEStartupIpconfig ``` -------------------------------- ### Launch OSDCloud Deployment Workflows Source: https://context7.com/osdeploy/osdcloud/llms.txt Use Deploy-OSDCloud to initiate Windows deployment. It can launch with a GUI for interactive selection or in CLI mode for automated deployments. Specify a WorkflowName for custom or named workflows. ```powershell Import-Module OSDCloud Deploy-OSDCloud Deploy-OSDCloud -WorkflowName 'default' Deploy-OSDCloud -CLI Deploy-OSDCloud -WorkflowName 'legacy' -CLI ``` -------------------------------- ### Deploy-OSDCloud Cmdlet Syntax Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Deploy-OSDCloud.md This is the basic syntax for the Deploy-OSDCloud cmdlet. Use the -WorkflowName parameter to specify the deployment workflow. ```powershell Deploy-OSDCloud [-WorkflowName ] [-CLI] [-ProgressAction ] [] ``` -------------------------------- ### Display IP Configuration in WinPE Source: https://context7.com/osdeploy/osdcloud/llms.txt Displays detailed network adapter and IP configuration using 'ipconfig /all'. Helps troubleshoot network connectivity issues during WinPE deployment. ```powershell # Display full network configuration Show-PEStartupIpconfig ``` -------------------------------- ### Use-PEStartupUpdateModule Source: https://context7.com/osdeploy/osdcloud/llms.txt Updates a PowerShell module from the PowerShell Gallery during WinPE startup. ```APIDOC ## Use-PEStartupUpdateModule ### Description Updates a PowerShell module from the PowerShell Gallery during WinPE startup. Provides a 10-second countdown before installation allowing users to cancel. ### Method PowerShell Function ### Parameters #### Query Parameters - **Name** (string) - Required - The name of the PowerShell module to update. ### Request Example Use-PEStartupUpdateModule -Name 'OSDCloud' ``` -------------------------------- ### Show-PEStartupDeviceInfo Source: https://context7.com/osdeploy/osdcloud/llms.txt Displays comprehensive WinPE and device hardware information, including system specs, BIOS, processor, memory, and disk details. ```APIDOC ## Show-PEStartupDeviceInfo ### Description Displays comprehensive WinPE and device hardware information during OS deployment startup. Gathers system specifications, device identifiers, processor details, memory configuration, disk drives, and network adapters. ### Method PowerShell Function ### Request Example Show-PEStartupDeviceInfo ``` -------------------------------- ### Create Wi-Fi Profile Programmatically Source: https://context7.com/osdeploy/osdcloud/llms.txt Create a new Wi-Fi profile on the fly. This is useful for ad-hoc network configurations. ```powershell Set-OSDCloudWifi -WLanName 'MyNetwork' -Passwd 'SecurePassword123' -WPA ``` -------------------------------- ### Deploy-OSDCloud Source: https://context7.com/osdeploy/osdcloud/llms.txt Launches Windows deployment workflows. It can be used interactively with a GUI or in CLI mode for automated deployments. Supports custom workflow execution. ```APIDOC ## Deploy-OSDCloud ### Description Launches Windows deployment workflows. Initializes the deployment environment, presents a GUI for OS selection, and executes configured workflow tasks including disk partitioning, OS image download and expansion, driver installation, and post-setup configuration. ### Method `Deploy-OSDCloud` ### Parameters #### Optional Parameters - **-WorkflowName** (string) - Specifies a custom workflow to execute. - **-CLI** - Launches the deployment in Command Line Interface mode without a GUI. ### Request Example ```powershell # Import the OSDCloud module Import-Module OSDCloud # Launch the default deployment workflow with GUI Deploy-OSDCloud # Launch a specific named workflow with GUI Deploy-OSDCloud -WorkflowName 'default' # Run deployment in CLI mode without GUI (fully automated) Deploy-OSDCloud -CLI # Run a custom workflow in CLI mode Deploy-OSDCloud -WorkflowName 'legacy' -CLI ``` ``` -------------------------------- ### Export Wi-Fi Profile with netsh Source: https://context7.com/osdeploy/osdcloud/llms.txt Creates a Wi-Fi profile XML file using netsh for later use. Specify the network name and the folder to save the profile. ```powershell # netsh wlan export profile name="MyNetworkSSID" key=clear folder=C:\WiFiProfiles ``` -------------------------------- ### Get-OSDCloudModuleVersion Syntax Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Get-OSDCloudModuleVersion.md Displays the command syntax for Get-OSDCloudModuleVersion. ```powershell Get-OSDCloudModuleVersion [-ProgressAction ] [] ``` -------------------------------- ### CLI Parameter for Deploy-OSDCloud Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Deploy-OSDCloud.md The -CLI parameter is a switch parameter. Set it to $true to enable command-line interface mode. ```yaml Type: SwitchParameter Parameter Sets: (All) Aliases: Required: False Position: Named Default value: False Accept pipeline input: False Accept wildcard characters: False ``` -------------------------------- ### Access and List Workflow Steps Programmatically Source: https://context7.com/osdeploy/osdcloud/llms.txt Retrieve and parse OSDCloud workflow configurations using PowerShell. This allows programmatic access to workflow details and steps. ```powershell $modulePath = Get-OSDCloudModulePath $workflowFile = Join-Path $modulePath 'workflow\default\tasks\osdcloud.json' $workflow = Get-Content $workflowFile | ConvertFrom-Json # List all workflow steps $workflow.steps | ForEach-Object { Write-Host "$($_.name): $($_.command)" } ``` -------------------------------- ### Check OS Configuration Defaults Source: https://context7.com/osdeploy/osdcloud/llms.txt Access OS configuration defaults, such as the default operating system and edition, from OSDCloud configuration files using PowerShell. ```powershell $osConfigFile = Join-Path $modulePath 'workflow\default\os-amd64.json' $osConfig = Get-Content $osConfigFile | ConvertFrom-Json Write-Host "Default OS: $($osConfig.OperatingSystem.default)" Write-Host "Default Edition: $($osConfig.OSEdition.default)" ``` -------------------------------- ### Show-PEStartupHardwareErrors Source: https://context7.com/osdeploy/osdcloud/llms.txt Displays only hardware devices with error status in Windows PE, useful for identifying missing drivers. ```APIDOC ## Show-PEStartupHardwareErrors ### Description Displays only hardware devices with error status in Windows PE. Essential for identifying missing drivers that need to be added to the WinPE boot image. ### Method PowerShell Function ### Request Example Show-PEStartupHardwareErrors ``` -------------------------------- ### Get-OSDCloudModulePath Syntax Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Get-OSDCloudModulePath.md Displays the syntax for the Get-OSDCloudModulePath cmdlet. ```powershell Get-OSDCloudModulePath [-ProgressAction ] [] ``` -------------------------------- ### Display OSDCloud Project Information Source: https://context7.com/osdeploy/osdcloud/llms.txt Invoke Get-OSDCloudInfo to display collaboration details, GitHub repository links, PowerShell Gallery information, and Discord community channels for the OSDCloud project. ```powershell # Display OSDCloud project information and resources Get-OSDCloudInfo ``` -------------------------------- ### Wi-Fi Helper Functions Source: https://context7.com/osdeploy/osdcloud/llms.txt Functions for listing available Wi-Fi networks and connecting to them interactively. ```APIDOC ## Get-OSDCloudWifi ### Description Retrieves a list of available Wi-Fi networks. ## Connect-OSDCloudWifi ### Description Connects to a specific network interactively by prompting for a password and creating a profile. ### Parameters #### Query Parameters - **SSID** (string) - Required - The SSID of the network to connect to. ``` -------------------------------- ### ProgressAction Parameter for Deploy-OSDCloud Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Deploy-OSDCloud.md The -ProgressAction parameter controls how progress information is displayed. It accepts values like 'Continue', 'SilentlyContinue', 'Stop', etc. ```yaml Type: ActionPreference Parameter Sets: (All) Aliases: proga Required: False Position: Named Default value: None Accept pipeline input: False Accept wildcard characters: False ``` -------------------------------- ### Invoke-OSDCloudWifi Source: https://context7.com/osdeploy/osdcloud/llms.txt Manages Wi-Fi connectivity within Windows PE, supporting interactive selection and automated connection via profile files. ```APIDOC ## Invoke-OSDCloudWifi ### Description Manages Wi-Fi connectivity in Windows PE environments. Supports both interactive network selection and automated connection via Wi-Fi profile XML files. Includes comprehensive hardware detection and DHCP configuration. ### Method `Invoke-OSDCloudWifi` ### Parameters #### Optional Parameters - **-WifiProfile** (string) - Path to a Wi-Fi profile XML file for unattended deployment. The profile must contain the password in plaintext (key=clear). ### Request Example ```powershell # Interactive Wi-Fi connection - displays available networks for selection Invoke-OSDCloudWifi # Connect using a Wi-Fi profile XML file for unattended deployment # The profile must have the password in plaintext (key=clear) Invoke-OSDCloudWifi -WifiProfile 'X:\OSDCloud\Config\Scripts\WiFiProfile.xml' ``` ``` -------------------------------- ### Invoke OSDCloud WirelessConnect Utility Source: https://context7.com/osdeploy/osdcloud/llms.txt Invokes the built-in WirelessConnect.exe utility for Wi-Fi configuration. ```powershell Invoke-OSDCloudWifi -WirelessConnect ``` -------------------------------- ### Connect to a Specific Wi-Fi Network Source: https://context7.com/osdeploy/osdcloud/llms.txt Connects to a specified Wi-Fi network by its SSID. This function will prompt for the password, create a profile, and establish the connection. ```powershell # Connect to a specific network interactively Connect-OSDCloudWifi -SSID 'CorpNetwork' ``` -------------------------------- ### Get-OSDCloudInfo Cmdlet Syntax Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Get-OSDCloudInfo.md This is the basic syntax for the Get-OSDCloudInfo cmdlet. It does not accept any specific parameters beyond common PowerShell parameters. ```powershell Get-OSDCloudInfo [-ProgressAction ] [] ``` -------------------------------- ### Display Hardware Errors in WinPE Source: https://context7.com/osdeploy/osdcloud/llms.txt Displays only hardware devices with an error status in Windows PE, indicating missing drivers. The window auto-closes after 5 seconds. ```powershell # Display hardware devices with errors (missing drivers) Show-PEStartupHardwareErrors ``` -------------------------------- ### Get-OSDCloudInfo Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Get-OSDCloudInfo.md Retrieves information related to OSDCloud. ```APIDOC ## Get-OSDCloudInfo ### Description Retrieves information related to OSDCloud. ### Method GET ### Endpoint Get-OSDCloudInfo ### Parameters #### Common Parameters - **ProgressAction** (ActionPreference) - Optional - Specifies how to respond to a progress update generated by a script, a cmdlet or provider. ### Response #### Success Response (200) - **System.Object** - Returns an object containing OSDCloud information. ``` -------------------------------- ### Manage Wi-Fi Connectivity in WinPE Source: https://context7.com/osdeploy/osdcloud/llms.txt Invoke-OSDCloudWifi to manage Wi-Fi connections in Windows PE. It supports interactive network selection or automated connections using a Wi-Fi profile XML file for unattended deployments. ```powershell # Interactive Wi-Fi connection - displays available networks for selection Invoke-OSDCloudWifi # Connect using a Wi-Fi profile XML file for unattended deployment # The profile must have the password in plaintext (key=clear) Invoke-OSDCloudWifi -WifiProfile 'X:\OSDCloud\Config\Scripts\WiFiProfile.xml' ``` -------------------------------- ### Get-OSDCloudModulePath Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Get-OSDCloudModulePath.md Retrieves the module path for OSDCloud. ```APIDOC ## Get-OSDCloudModulePath ### Description Retrieves the module path for OSDCloud. ### Method GET ### Endpoint /osdeploy/osdcloud/modulepath ### Parameters #### Query Parameters - **ProgressAction** (ActionPreference) - Optional - Specifies how to respond to a progress cmdlet. ### Request Example ```json { "example": "" } ``` ### Response #### Success Response (200) - **ModulePath** (string) - The path to the OSDCloud module. #### Response Example ```json { "ModulePath": "C:\Program Files\OSDCloud\Modules" } ``` ``` -------------------------------- ### WorkflowName Parameter for Deploy-OSDCloud Source: https://github.com/osdeploy/osdcloud/blob/main/docs/Deploy-OSDCloud.md The -WorkflowName parameter specifies the name of the OSD deployment workflow to execute. It accepts string input and can be piped by property name. ```yaml Type: String Parameter Sets: (All) Aliases: Name Required: False Position: Named Default value: None Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.