Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/use/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:

Comment thread
blindzero marked this conversation as resolved.
```powershell
Get-InstalledModule IdLE, IdLE.Core, IdLE.Steps.Common -ErrorAction SilentlyContinue | Uninstall-Module -AllVersions -Force
Install-Module -Name IdLE -Scope CurrentUser -Force
Comment thread
blindzero marked this conversation as resolved.
```
:::

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:**
Expand Down
Loading