This post will help you to identify the Super User and Super Reader Account in SharePoint
So lets get started :)
We have powerfull tool called PowerShell and its always to good to use it so for finding the Super accounts we will use that tool
Run the SharePoint 2010 Management Shell with Administrator rights.
Super user account
To find Super User below is powershell cmds
$wa = Get-SPWebApplication -Identity "<WebApplication>"
$wa.Properties["portalsuperuseraccount"]
Super reader account
$wa = Get-SPWebApplication -Identity "<WebApplication>"
$wa.Properties["portalsuperreaderaccount"]
Happy SharePointing :)
So lets get started :)
We have powerfull tool called PowerShell and its always to good to use it so for finding the Super accounts we will use that tool
Run the SharePoint 2010 Management Shell with Administrator rights.
Super user account
To find Super User below is powershell cmds
$wa = Get-SPWebApplication -Identity "<WebApplication>"
$wa.Properties["portalsuperuseraccount"]
Super reader account
$wa = Get-SPWebApplication -Identity "<WebApplication>"
$wa.Properties["portalsuperreaderaccount"]
Happy SharePointing :)
No comments:
Post a Comment