Description
Error while saving audit actions. A SharePoint administrator needs to change settings. Code1001
Applies To
UserGovernance
Solution
Run the following command in the SharePoint 2010/2013 Management Shell
# get content web service
$contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
# turn off remote administration security
$contentService.RemoteAdministratorAccessDenied = $false
# update the web service
$contentService.Update()
Perform an IISRESET on all web front servers.
Note: Make sure the app pool user account for SharePoint web application on which Winshuttle User Governance is configured is part of Administrators group on server.
Comments
0 comments
Please sign in to leave a comment.