我是Sharepoint的新手......我正在尝试部署一个简单的Web部件。
当我部署它并将其放在页面上时,我会收到一个带有相关ID的错误。
现在,我正在尝试获取有关错误的详细信息,并使用Powershell我输入...
get-splogevent | ?{$_Correlation -eq "bcce1b39-f277-4b2b-b8f8-4c113a30f193" }
但它给了我一个错误......
The term 'get-splogevent' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:15
+ get-splogevent <<<< | ?{$_Correlation -eq "bcce1b39-f277-4b2b-b8f8-4c113a30f193" }
+ CategoryInfo : ObjectNotFound: (get-splogevent:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
关于我做错了什么的想法?
答案 0 :(得分:4)
很可能你正在参加一个普通的Powershell会议。未加载Sharepoint管理管理单元,因此找不到cmdlet。请查看an article,其中介绍了如何自动将管理单元加载到所有Powershell会话。
管理单元是手动加载的,
Add-PSSnapin "Microsoft.SharePoint.PowerShell"
答案 1 :(得分:1)
我开始使用solo powershell而不是sharepoint。在任务棒中有“Sharepoint 2010 Management Shell”,使用它。