SharePoint 获取所有包含“sp”字符串的powershell命令的帮助信息,并进行分组显示

 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

结果:

 

posted @ 2015-05-29 13:10  KenmuHuang  阅读(425)  评论(0编辑  收藏  举报
如果您看完本篇博文,觉得对您有所收获,请点击右下角的 [推荐]
如果您想转载,请注明出处(原创内容,请尊重个人劳动成果)
如果您有任何意见或建议,欢迎留言
感谢您的阅读,敬请关注我的后续博客文章