Question

Would anyone know how i could find out what user is assigned to the portal super user and portal super reader accounts for object cache?

Is there a listing in CA or something i could source up for each web application with powershell?

Thanks!!

Was it helpful?

Solution

From Get current superuser/superreader accounts PowerShell One-liner

Get-SPWebApplication | 
%{Write-Host “Web Application: ” $_.url “`nSuper user: ” $_.properties ["portalsuperuseraccount"] “`nSuper reader: ” $_.properties["portalsuperreaderaccount"] “`n”}
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top