Import the Progress Kemp PowerShell Module and Initialize the Connection
- Last Updated: December 9, 2024
- 1 minute read
- LoadMaster
- LoadMaster LTSF
- Documentation
To import the Progress Kemp PowerShell module, run the following command:
Import-Module -Name .\Kemp.LoadBalancer.Powershell.psd1 -VerboseIt may be easier to run the following command to initialize against the relevant LoadMaster once, rather than providing credentials for every command. The password to enter is the default bal user password.
Initialize-LmConnectionParameters -Address <LoadMasterIPAddress> -LBPort <Port> -Credential "bal" -Verbose|
Name |
Type |
Description |
Mandatory |
|---|---|---|---|
|
Address |
String |
The IP address of the LoadMaster. |
Yes |
|
LBPort |
Integer |
The port of the LoadMaster. |
Yes |
| Credential | String | The LoadMaster username. | Yes |