ps/Modules/Alkami.PowerShell.SDK/Public/Open-SDKDoc.ps1

30 lines
690 B
PowerShell
Raw Normal View History

2023-05-30 22:51:22 -07:00
function Open-SDKDoc {
<#
.SYNOPSIS
View this modules documentation in the browser.
.DESCRIPTION
This function opens the HTML documentation for this modules present version.
.INPUTS
None
.OUTPUTS
None
.EXAMPLE
Open-SDKDoc
.NOTES
General notes
#>
[CmdletBinding()]
param(
)
process {
# Start-Process "C:\programdata\chocolatey\lib\Alkami.PowerShell.SDk\doc\www\index.html";
Write-Host "Use PowerShell's Get-Help function to explore the module's commands."
(get-module alkami.powershell.sdk).ExportedCommands | % {$_}
}
}