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 | % {$_} } }