Scripts/Show-iSpyAgentCmdlet.ps1
Function Show-iSpyAgentCmdlet { <# .SYNOPSIS Display all the cmdlets available in the iSpy Agent Manager module .DESCRIPTION Display all the cmdlets available in the iSpy Agent Manager module .LINK N/A #> Get-Command | Where-Object Name -like '*iSpyAgent*' | Select-Object @{Name = 'iSpy Agent Cmdlet'; Expression = {$_.Name}} } |