### PowerShellGet Cmdlet Overview Source: https://learn.microsoft.com/powershell/module/powershellget A summary of the primary cmdlets available in the PowerShellGet module for managing modules, scripts, and repositories. ```APIDOC ## PowerShellGet Cmdlets ### Description The PowerShellGet module provides a suite of cmdlets to interact with PowerShell repositories and manage local artifacts. ### Available Cmdlets - **Find-Command**: Finds PowerShell commands in modules. - **Find-DscResource**: Finds Desired State Configuration (DSC) resources. - **Find-Module**: Finds modules in a repository that match specified criteria. - **Find-RoleCapability**: Finds role capabilities in modules. - **Find-Script**: Finds a script. - **Get-InstalledModule**: Gets a list of modules on the computer that were installed by PowerShellGet. - **Get-InstalledScript**: Gets an installed script. - **Get-PSRepository**: Gets PowerShell repositories. - **Install-Module**: Downloads and installs modules from a repository. - **Install-Script**: Installs a script. - **New-ScriptFileInfo**: Creates a script file with metadata. - **Publish-Module**: Publishes a module to an online gallery. - **Publish-Script**: Publishes a script. - **Register-PSRepository**: Registers a PowerShell repository. - **Save-Module**: Saves a module and its dependencies locally. - **Save-Script**: Saves a script. - **Set-PSRepository**: Sets values for a registered repository. - **Test-ScriptFileInfo**: Validates a comment block for a script. - **Uninstall-Module**: Uninstalls a module. - **Uninstall-Script**: Uninstalls a script. - **Unregister-PSRepository**: Unregisters a repository. - **Update-Module**: Updates modules from an online gallery. - **Update-ModuleManifest**: Updates a module manifest file. - **Update-Script**: Updates a script. - **Update-ScriptFileInfo**: Updates information for a script. ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.