Helps 1.2.10

dotnet add package Helps --version 1.2.10
NuGet\Install-Package Helps -Version 1.2.10
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Helps" Version="1.2.10">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Helps --version 1.2.10
#r "nuget: Helps, 1.2.10"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Helps as a Cake Addin
#addin nuget:?package=Helps&version=1.2.10

// Install Helps as a Cake Tool
#tool nuget:?package=Helps&version=1.2.10

PowerShell Help Builder

Helps.ps1 provides functions for building PowerShell XML help files from help scripts and for creating help script templates for existing objects. Help may be created for everything that supports XML help: cmdlets, providers, scripts, and functions in scripts or modules.

Help scripts are similar to the result help and they are easier to compose than XML. Scripts make a lot of things easy. One of them is building localized help.

Quick Start

Step 1: Helps is distributed as the NuGet package Helps. Download it by NuGet tools or directly. In the latter case save it as ".zip" and unzip. Use the package subdirectory "tools". Consider adding this directory to the path.

Step 2: Choose the command, for example My-Command cmdlet from MyModule, and make the command available, i.e. import the module. If My-Command is a script function then dot-source the script.

Import-Module MyModule

Step 3: Dot-source the script Helps.ps1. This command loads its utility functions into the current scope, the global scope if it is called from the command line:

. Helps.ps1

Step 4: Create and copy/save the template help script of My-Command, paste/open the script in an editor and fill the empty placeholders it with proper content.

New-Helps -Command My-Command
New-Helps -Command My-Command | Set-Clipboard
New-Helps -Command My-Command > MyModule.dll-Help.ps1

Step 5: Build the XML help Module.dll-Help.xml from the help script. Copy the result to the module/script directory or a culture resource subdirectory, say, en-US.

Convert-Helps MyModule.dll-Help.ps1 MyModule.dll-Help.xml

This is it. In a new PowerShell session import the command's module or dot-source the command's script and get the command help:

Import MyModule
Get-Help My-Command

How To Get Help

Make sure Helps-Help.xml is in the same directory with Helps.ps1 or in a culture resource subdirectory (like en-US or ru-RU in the package).

For Helps.ps1. Assuming it is in the path:

help Helps.ps1

For its functions. At first dot-source the script and then call help:

. Helps.ps1
help Convert-Helps -Full
help New-Helps -Full
...

See Also

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.10 164 1/18/2024
1.2.9 222 12/4/2023
1.2.8 179 12/2/2023
1.2.7 227 3/10/2023
1.2.6 266 3/9/2023
1.2.5 1,582 2/19/2021
1.2.4 662 12/5/2019
1.2.3 659 9/5/2019
1.2.2 1,109 2/24/2018
1.2.1 1,035 11/14/2017
1.2.0 1,396 12/16/2015
1.1.5 1,239 9/5/2015
1.1.4 1,488 6/12/2014
1.1.3 1,217 6/10/2014
1.1.2 1,244 6/8/2014
1.1.1 1,198 5/6/2014
1.1.0 1,262 5/3/2014
1.0.9 1,222 4/30/2014
1.0.8 1,301 7/15/2013
1.0.7 1,388 1/15/2013
1.0.6 1,891 12/12/2011
1.0.5 1,578 10/3/2011