See about_PSWSMan for more details.
Documentation for this module and details on the cmdlets included can be found here. This is currently an unreleased project and is meant to replace my omi fork as the way PowerShell uses WSMan as a client.
These cmdlets have the following requirements
- PowerShell v7.2 or newer
The easiest way to install this module is through PowerShellGet.
You can install this module by running;
# Install for only the current user
Install-Module -Name PSWSMan -Scope CurrentUser
# Install for all users
Install-Module -Name PSWSMan -Scope AllUsers
Once installed, run Enable-PSWSMan -Force
to enable the hooks needed for PowerShell to use this module.
Once enabled the builtin cmdlets will use this module for any WSMan transport operations.
Contributing is quite easy, fork this repo and submit a pull request with the changes.
To build this module run .\build.ps1 -Task Build
in PowerShell.
To test a build run .\build.ps1 -Task Test
in PowerShell.
This script will ensure all dependencies are installed before running the test suite.