mirror of
https://github.com/Icinga/icinga-powershell-framework.git
synced 2025-12-21 07:10:15 -05:00
17 lines
966 B
Markdown
17 lines
966 B
Markdown
# Install the Framework with PowerShell Gallery
|
|
|
|
PowerShell Gallery provides a collection of PowerShell modules and scripts which can easily be installed on target machines. For a further description, please have a look on the [PowerShell Gallery website](https://www.powershellgallery.com/).
|
|
|
|
## Getting Started
|
|
|
|
Icinga is providing PowerShell Gallery packages within the [Icinga Profile](https://www.powershellgallery.com/profiles/Icinga) for the Framework itself and other related components.
|
|
|
|
To install the Icinga PowerShell Framework you can simply use `Install-Module` in case it is available and configured on your system:
|
|
|
|
```powershell
|
|
Install-Module -Name icinga-powershell-framework;
|
|
```
|
|
|
|
## Execute the Icinga Agent installation wizard
|
|
|
|
Once the entire Framework is installed and the module is runnable, you can start the Icinga Agent installation wizard. Please follow the [Icinga Agent Wizard](04-Icinga-Agent-Wizard.md) guide for examples and usage.
|