This is a PowerShell wrapper around the KEMP RESTful API. It is considered a "release candidate." This means that the team behind its engineering has a high level of assurance in its quality but would prefer to obtain feedback from the user community before releasing it as an official replacement for our current PowerShell wrapper.
If you have any thoughts that you would like to share we welcome your feedback
Note: If you are using a previous version of the KEMP PowerShell plugin it should be noted that this version has breaking changes and in many cases is not forward compatible. We look to have a full document outlining these changes in the near future. If you have additional questions please use our issues
-
Download the KEMP PowerShell module from this repository by checking the releases section or by cloning this repository.
-
Install the module in a folder available in
PSModulePath
($Env:PSModulePath)
. IfPSModulePath
does not contain the module folder value, add the module path to the inPSModulePath
environment variable. The module path can be for the current user only or for all users.
Recommended values are:
$home\Documents\WindowsPowerShell\Modules
for the current User
$Env:ProgramFiles\WindowsPowerShell\Modules
for All Users
Install the KEMP PowerShell module for the current user only
- Save the current value of PSModulePath
$mpath = [Environment]::GetEnvironmentVariable("PSModulePath")
- Add the new path to the $mpath variable
$ mpath += ";$home\Documents\WindowsPowerShell\Modules\Kemp.LoadBalancer.PowerShell"
- Add the paths in $currValue to the PSModulePath value.
[Environment]::SetEnvironmentVariable("PSModulePath", $currValue)
Import the module to start using it
Import-Module Kemp.LoadBalancer.PowerShell
Get-Module Kemp.LoadBalancer.PowerShell
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Script 7.2.39.0 Kemp.LoadBalancer.PowerShell {Add-BondedInterface, A...
- To retrieve the list of the available commands, run the following commands
Get-Command -Module Kemp.LoadBalancer.PowerShell
An interface description can be found in docs. The listing of all supported commands can be found in https://kemptechnologies.github.io/PowerShell-sdk-vnext/ps-help.html
Examples can be found in the examples folder
If you're interested in contributing to this project, please read:
- All code contributions require test coverage. If a pull request is lacking tests, it will be closed.
- If you're submitting a feature, please clearly explain its use case in your issue. Our team gets warm and fuzzies every time a contribution is made and explanations help greatly.
If you believe you've found a bug please create an issue. We may not get to it right away, but rest assured we've seen it and have it queued up for a response. Seriously, we're watching.
6/21 - Initial upload to Github. Includes examples, readmes and other helpful content
- Fabrizio Carpin (KEMP Technologies)
This library is licensed under the Apache 2.0 License. The terms of the license are as follows:
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.