1 $snapin = Get-PSSnapin | where-object { $_.Name -eq ‘Microsoft.SharePoint.PowerShell‘ } 2 if ($snapin -eq $null){ 3 write-host "Loading SharePoint PowerShell Snapin..." -foregroundcolor Blue 4 add-pssnapin "Microsoft.SharePoint.PowerShell" 5 write-host "SharePoint PowerShell Snapin loaded." -foregroundcolor Green 6 } 7 8 #Get all SharePoint cmdlets 9 #Get-Command “*sp*” –CommandType cmdlet 10 11 #Get all the cmdlets grouped by verb 12 #Get-Command “*sp*” –CommandType cmdlet | Group-Object –Property Verb 13 14 #Get all the cmdlets grouped by verb in tables with name and definition 15 Get-Command “*sp*” –CommandType cmdlet | Format-Table –Property Name,Definition –GroupBy Verb
结果:
时间: 2024-10-15 15:38:02