Get All Available Cmdlets in SharePoint Online Management Shell
Requirement: Get all PowerShell cmdlets for SharePoint Online
PowerShell cmdlets list for SharePoint Online
Here is a nifty trick to find all available cmdlets in the SharePoint Online management shell:
Get-Command | ? { $_.ModuleName -eq "Microsoft.Online.SharePoint.PowerShell" }
This lists down all cmdlets from SharePoint Online Management Shell.
Similarly, to get all cmdlets in PnP PowerShell module, use:
Get-Command | Where { $_.ModuleName -eq "PnP.PowerShell" }