DCSIMG
SharePoint: Getting Authentication Login Prompt When Trying To Open Office Document With Unique Permissions - Choroshin Alex

Choroshin Alex

.NET Developer

SharePoint: Getting Authentication Login Prompt When Trying To Open Office Document With Unique Permissions

The problem is in opening an Office document which is saved in SharePoint 2010:

  1. When a user has a "read" permission only to a specific document in a document library, but do not have any permissions in the document library level nor the site level.
  2. When he is accessing the document, he receives the "Download File" message with "Open" / "Save" / "Cancel" options. When clicking "Open", he is prompted with a user & password message.
  3. When clicking his correct user and password, the user & password message remains – nothing happens.
  4. Only when clicking "Cancel" in the user & password message, the document opens.
  5. Users who has read permissions in the document library level or the site level – manage to open the document successfully, meaning are not prompted with the user & password message after clicking "Open" (it opens the document).

We tried with several users, all get the same result.

During our checking, we also found out that the following dll returns "401 Unauthorized": /_vti_bin/_vti_aut/author.dll

Finally we opened a  service request and got a solution from Microsoft.

There are 3 possible ways to solve this issue:

1. Add read only permission in the root of the site collection.

2. Deactivate the feature “ViewFormPagesLockDown”:

stsadm -o deactivatefeature -url http://SERVERNAME/sites/SITENAME -filename ViewFormPagesLockDown\feature.xml

3. Run the following script on your site collection, this will add permission level to the “Limited Access” Permission level that you have in that site collection.

$siteCollectionUrl = 'http://sitecollectionurl'

[void][system.reflection.assembly]::LoadWithPartialName('Microsoft.sharepoint')

$spsite = new-object Microsoft.sharepoint.spsite($SiteCollectionUrl)

$lmtd = $spsite.rootweb.RoleDefinitions['Limited Access']

$b1 = [Microsoft.sharepoint.spbasepermissions]::Open

$b2 = [Microsoft.sharepoint.spbasepermissions]::BrowseUserInfo

$b3 = [Microsoft.sharepoint.spbasepermissions]::UseClientIntegration

$b4 = [Microsoft.sharepoint.spbasepermissions]::UseRemoteAPIs

$lmtd.BasePermissions = "$b1,$b2,$b3,$b4"

$lmtd.Update()

I tried the second solution and it worked like a charm .

 

I would like to thank Gal Sagi for helping me with this article.

Hope you find this article handy Smile.

 

Comments

SharePoint: Getting Authentication Login Prompt When Trying To Open Office Document With Unique Permissions - Choroshin Alex | SharePoint Resources | Scoop.it said:

Pingback from  SharePoint: Getting Authentication Login Prompt When Trying To Open Office Document With Unique Permissions - Choroshin Alex | SharePoint Resources | Scoop.it

# November 7, 2012 8:16 AM

Jamil Ahmed Ferdaus said:

Alex, Excellent post. I had the exact same scenario. and option 2 (disabling the lock down feature) worked for me.

Thanks so much.

Jamil

# November 29, 2012 2:41 PM

Pavan Paruchuru said:

We have been trying for this like a week and ur solution worked. Thanks for writing in.

# March 11, 2013 11:38 AM
Leave a Comment

(required) 

(required) 

(optional)

(required) 


Enter the numbers above: