diff --git a/docs/use/installation.md b/docs/use/installation.md index db86ae33..7c5bec28 100644 --- a/docs/use/installation.md +++ b/docs/use/installation.md @@ -30,6 +30,16 @@ Install-Module -Name IdLE Import-Module -Name IdLE ``` +:::info Command collision during install? +If PowerShellGet reports that a command is already available (for example `New-IdleAuthSessionBroker`), +prefer a clean reinstall instead of `-AllowClobber`: + +```powershell +Get-InstalledModule IdLE, IdLE.Core, IdLE.Steps.Common -ErrorAction SilentlyContinue | Uninstall-Module -AllVersions -Force +Install-Module -Name IdLE -Scope CurrentUser -Force +``` +::: + The `IdLE` module declares `IdLE.Core` and `IdLE.Steps.Common` as dependencies (`RequiredModules`), so PowerShell automatically installs and imports them when you install `IdLE`. **Installing optional modules:**