Quantcast
Channel: SharePoint 2013 - Setup, Upgrade, Administration and Operations forum
Viewing all 21070 articles
Browse latest View live

User permission report in PowerShell.

$
0
0

Hi All,

 

I am working a PowerShell report that generates all user’s permissions as follows:

  1. All user permissions with inherited and direct permissions (direct permissions) to thesite.
  2. All user permissions in all document libraries with inherited.
  3. If the document libraries have direct permissions (break inheritance) to specificfolder and generate folder permissions to those users for that document library within the site.

I have checked Salaudeen’s blog but the scripts specific user and I am not very proficient with PowerShell when it comes to permission levels. I have tried to make some changes so that I can meet my requirements. I am using SharePoint 2013 Windows SharePoint ISE and loaded the Add-PSSnapin "Microsoft.SharePoint.PowerShell"

 

  1. I am getting SPSite, SPWeb andSPList objects in PowerShell ISE as shown:
  2. But not able to get the SubFolder objects within document library. Am I doing something wrong here? 

  3. However, I am still able to get unique folders using the above following code, but I amnot able to get folder permissions such as Full Control, Editto specific users. 

    Any help in the Folder Permissions within document library PowerShell snippet would be highly 
    be appreciated. 
    Attached is my PowerShell script. 
#Load powershell snapin
Add-PSSnapin "Microsoft.SharePoint.PowerShell"


Function  GetAllDoumentLibraiesPerms($WebAppURL)
{
    #Get All Site Collections of the WebApp
    $SiteCollections = Get-SPSite -WebApplication $WebAppURL -Limit All

    #Loop through all site collections
    foreach($site in $SiteCollections)
    {
        Write-Host("`t Site Collection Name: $($site.Url)")


        #Loop throuh all Sub Sites
        foreach($w in $Site.AllWebs)
        {
             Write-Host “————————Webs—————————–”
             Write-Host "Web Site names: $($w.Title)"

             #If the web has Unique permissions
             if($w.HasUniqueRoleAssignments -eq $True)
             {

                 #Get all the users granted permissions to the list
	             foreach($WebRoleAssignment in $w.RoleAssignments)
                 {

                    #if a user account
                    if($WebRoleAssignment.Member.userlogin)
                    {
                        Write-Host("------User's Permissions-----")
                        #Get the Permissions assigned to user
					    $WebUserPermissions=@()
						foreach ($RoleDefinition  in $WebRoleAssignment.RoleDefinitionBindings)
					    {

				            $WebUserPermissions += $RoleDefinition.Name +";"
				        }



                        Write-Host ("$($w.Url) `t $($w.Title) `t Direct Permission $($WebUserPermissions) `t $($WebRoleAssignment.Member.LoginName) ")


                    }
                    else #Its is SharePoint Group
                    {
                        foreach($user in  $WebRoleAssignment.member.users)
                        {
                            #Get the Group's Permissions on site
                            Write-Host("------Group Permissions-----")
						    $WebGroupPermissions=@()
							foreach ($RoleDefinition  in $WebRoleAssignment.RoleDefinitionBindings)
							{
		                        $WebGroupPermissions += $RoleDefinition.Name +";"
		                    }


                            #Send the Data to Log file
                            Write-Host "$($w.Url) `t Site `t $($w.Title) `t Member of $($WebRoleAssignment.Member.Name) Group `t $($WebGroupPermissions) `t $($user.LoginName)  "

                        }

                    }

                 }

             }


             #Get Permissions of the user on Web
             $WebPermissions = Get-PermissionInfo $w


             #loopthrouh the lists and libraries in the site
             foreach($l in $w.Lists)
             {
                #Filter Doc Libs, Eliminate Hidden and only "Douments" library
                if( ( $l.BaseType -eq "DocumentLibrary”) -and ($l.Hidden -eq $false) -and ($l.Title -eq "Documents")  )
                {
                    Write-Host "List title is: $($l.Title)"
                    Write-Host "Root Folder : $($l.RootFolder)"


                      #Check Folders with Unique Permissions
                      $UniqueFolders = $l.Folders | where { $_.HasUniqueRoleAssignments -eq $True }

                      #Get Folder permissions
                      foreach($folder in $UniqueFolders)
                      {
                        Write-Host "Unique Folders are: $($folder.Name)"

                        #Get all the users granted permissions to the list



                        foreach($listRoleAssignment in $l.RoleAssignments)
				        {

							if($listRoleAssignment.Member.userlogin)
                            {
                                #Get the Permissions assigned to user

                                Write-Host "`t ROLE ASSIGNMENT: $($listRoleAssignment.Member) "
								#$ListUserPermissions=@()
                                $listUserPermissions=@()
							    foreach ($RoleDefinition  in $listRoleAssignment.RoleDefinitionBindings)
							    {
							        $listUserPermissions += $RoleDefinition.Name +";"
							    }

                                #Send the Data to Log file
								#Write-Host "PARENT WEB is $($l.ParentWeb.Url) / and LIST FOLDER IS $($l.RootFolder.Url) `t List `t $($l.Title)`t Direct Permission `t $($listUserPermissions)  `t $($listRoleAssignment.Member)"



                            }


                        }

                        #Get the Folder's Permssions
						$folderPermissions=@()


                      }



                    #Loop through all subfolders and call the function recursively

                    foreach ($SubFolder in $l.RootFolder.SubFolders)
                    {
                        if($SubFolder.Name -ne "Forms")
                        {
                            Write-Host "INSIDE LOOP ==> Folder Name : $($SubFolder.Name)"
                            Write-Host "$($SubFolder.)"

                        foreach($listRoleAssignment in $l.RoleAssignments)
				         {
                            #Is it a User Account?
							if($listRoleAssignment.Member.userlogin)
                            {
                                #Get the Permissions assigned to user

                                Write-Host "`t FOLDER ROLE ASSIGNMENT: $($listRoleAssignment.Member) "
								#$ListUserPermissions=@()
                                $listUserPermissions=@()
							    foreach ($RoleDefinition  in $listRoleAssignment.RoleDefinitionBindings)
							    {
							        $listUserPermissions += $RoleDefinition.Name +";"
							    }

                                #Send the Data to Log file
								Write-Host "$($l.ParentWeb.Url) /  $($l.RootFolder.Url) `t List `t $($l.Title)`t Direct Permission `t $($listUserPermissions)  `t $($listRoleAssignment.Member)"



                            }

                        }


                        }
                    }



                    #GetMyFiles($l.RootFolder)



                    #Add-Content -Path $outputPath -Value  ” => Library : $($List.RootFolder) and Size (in MB) $($DocLibSize)”

                    if( $($l.HasUniqueRoleAssignments) -eq $false )
                    {
                        Write-host "List is Inherited: $($l.HasUniqueRoleAssignments) "
                    }
                    else
                    {
                         Write-host "List is Direct Permssions: $($l.HasUniqueRoleAssignments) "
                    }

                }

             }
        }
    }
}


GetAllDoumentLibraiesPerms "http://intranet.contoso.com"



Sandy


Sending Email Reminders on Outlook that pulls from SharePoint 2013 Calendar items...

$
0
0

Hello Fam,

Please i need some help. i have a request to integrate outlook with SharePoint 2013 calendar so users can receive reminders. When an item is added on the calendar, i want to generate an automated email at certain intervals and on the due date to the Assigned individual, and CC additional individuals. 

Thank you all for your help!

SharePoint 2013 patching process.

$
0
0

Hi All,

Currently our SharePoint 2013 farm was patched with ServicePack 1 (15.0.4569.1000/15.0.4569.1506)which released on 2014, February 25

And project server also with same version 15.0.4569.1506.

https://buildnumbers.wordpress.com/sharepoint/
https://technet.microsoft.com/en-us/library/dn789211(v=office.14).aspx

Now we are planning to do latest patch to all our environments including production.


Can you please suggest what we need to patch next:

1.As many msdn blog suggest,we must and should patch Service Pack 1 re released version 15.0.4571.1502 first

Can you please let me know if below sequence is correct to patch
SharePoint Server service pack 1 re released version(15.0.4571.1502)
Project Server service pack 1 re released version(15.0.4571.1502)
SharePoint Server Cumulative Updates April 2014 CU (15.0.4605.1004)
Project Server Cumulative Updates April 2014 CU (15.0.4605.1004)
SharePoint Server Cumulative Updates June 2014 CU (15.0.4617.1001)
Project Server Cumulative Updates June 2014 CU (15.0.4617.1001)
SharePoint Server Cumulative Updates July 2014 CU (15.0.4631.1001)
Project Server Cumulative Updates July 2014 CU (15.0.4631.1001)
And so on....

2.what if we need to language pack installation ,how can we confirm whether languge pack installation is required or not.

If langugage pack installation required,then what would be the sequence for the above

3.Do we need to install the CU s for each month after Service Pack 1 or latest cumulative updates(Jan 2016) on Service pack 1 re released version is sufficient.

Sharerpoint 2013 migration to another Farm 2013

$
0
0

What is the best and fast way to migrate document library including its permissions to a new farm.

the export is process is really slow how to overcome this issue if this is the only solution?

we do have a huge size of data to be migrated.


hussain


App store question - set up in SharePoint - web application

$
0
0

I've been reading the other posts and I have seen a certain TechNet article more times than I care to say. I understand the need for a different domain for the app parts to run in and I understand the DNS set up with the forward lookup zone and all of that. I also understand how to create the necessary application services in SharePoint and get them running, and I understand where to go in CA to set up the domain and prefix for the app parts, so I have both end points covered. It's just the middle that I need to wrap my head around and then I am good. The TechNet article has you get a wildcard SSL cert, but then says nothing about where or how to apply it (helpful).   Other blog posts talk about additional web applications so that you can create an app catalog.

We want to use app parts from the store.

I have the DNS part and the SharePoint service applications parts figured out.

We will be using SSL.

I need to get the rest in a state that even I can understand.

I take it I will need an additional web application no matter what, is that correct?

I create the web application to listen to port 443 and I do not give it a host header, is that correct?

Will the web application need a root-level site collection?  Will it need a site collection at all?

The wildcard SSL cert goes on the new web application created without a host header, correct?

If I have the above all correct, then I just need to get the DNS stuff configured and create the web app, since I have the rest down.

Sorry for bothering you guys about this.  It's a little complicated at face-value.

 

James D. Angielczyk

Sharepoint 2013 - create a group, add a user and limit group access to a specific folder HOW TO

$
0
0

Hi

im starting with Sharepoint 2013. I've already created a group, add a user but i can't limit the group access to a specific folder, 

how can i do it? Is there any tutorial that runs through these steps, i seriously don't know where can i limit group access to one folder?...

To be more specific, i've created this group SharePoint_BI_SSRS_Sales_Reports, where i technicalguynr1 belong, then addedtechnicalguynr2,

, and then i've added these permissionlevels Structure, Edit Contribute and read.

Now, i can't find the place in settings ribbon or in the folder itself to share it with the group.

Can you help me out?

Thanks in advance



RSS Viewer web part - clicking on a news title opens the entire article right there - while it should take the user to the article URL

$
0
0

Hi there

RSS Viewer web part - clicking on a news title opens the entire article right there - while it should take the user to the article URL.

Any thoughts please?

Thanks.

Timeout when uploading content as external user

$
0
0

Hi there,

I published a Sharepoint2013-sitecollection through the web application proxy using ADFS as authentication provider. Logon and external access through the WAP work without problems. As well the upload of smaller files. 

Unfortunately external users run into problems with the upload of larger files through a slow WAN connection. The first test got a timeout after around 40 minutes with a servererror in application and the errorcode 0x8102006c.

I configured the webapplications security validation expiration value for 90 minutes. A second try now worked for 60 minutes after running into a timeout.

Is there any other value that must be configured? Does the security token for external access maybe only last for around an hour? I guess I have to set something on the ADFS server but I have not idea which value.

I found this blog here: https://tristanwatkins.com/coordinating-adfs-2012-r2-token-lifetime-logon-prompt-enforce-revocation-session-duration-public-network/

But this information is not really clear to me.

Thanks for any input on that!

Regards

Marcel


Create Bulk Document Sets Using PowerShell in SharePoint Online 2013 (Office 365)

$
0
0

Hi all,

I want to create a PowerShell Script for Creating Bulk Document Set in SharePoint Online 2013 (Office 365). Need to Create Multiple Docuemnt Sets at once (more than 10). Please some body suggest me about powershell that what i am doing wrong in below code. 

I have Written below code but getting Some Error.

foreach($docSetInfoin$docSetInfos)

[Hashtable]$docsetProperties=@{}

$docsetProperties.Add('Name',$docSetInfo.Name)

$docsetProperties.Add('Title',$docSetInfo.Title)

$docsetProperties.Add('Customer Document No',$docSetInfo.CustomerDocumentNo)

-----------------So on-----------

-------------------so on----------------

 

$NewFolder=[Microsoft.Office.DocumentManagement.DocumentSets.DocumentSet]::Create($list.RootFolder,$docSetInfo.Name,$cType.Id,$docsetProperties)

}  

Please some body help me in resolving below errors.

Unable to find type [Microsoft.Office.DocumentManagement.DocumentSets.DocumentSet]: make sure that the assembly containing this type

is loaded.

At D:\Phase 2 of Invensys DMS System(Support Tasks)\Power Shell Script for SubSites\BulkDocTest.ps1:71 char:3

+   $NewFolder = [Microsoft.Office.DocumentManagement.DocumentSets.DocumentSet]::C ...

+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    + CategoryInfo          : InvalidOperation: (Microsoft.Offic...ets.DocumentSet:TypeName) [], RuntimeException

    + FullyQualifiedErrorId : TypeNotFound

Thanks in advance.

Easy access to URL of shared library?

$
0
0

Hi

I am not very experienced in SharePoint, please bear with me ...

I have this situation in which I need to give access to an user to a document library only, but not entire site. I have broken inheritance for the document library and given the specific permissions.

Now if the user enters in the browser http://Server/site/ he gets access denied but if he enters in browserhttp://Server/site/library he can access the documents. Everything is ok, except one problem: How can he access the library in an easy way, as there is no tree to navigate to it from the root site?

Now multiply this problem by 5 for this user (as he has access to different libraries from different sub-sites) and potentially by 100 for all users of our organization, as they may also need cross-access to documents or lists outside the scope of their regular permissions.

I would like to have the possibility to put on the home page of the root site (http://server) those links which the user cannot access by navigating a tree, but in a manner that only the links needed by a specific user are visible. More specific, if user A logs in he sees only the links to objects to which he has cross-access, but not the links for user B, and so on.

Is this possible? I tried inserting links but they are visible for everyone.

Is there maybe another solution? Please help.

Thank you,

Marius


Marius

*Sharepoint 2013 VPN connection problem

$
0
0

Greetings,

I have unusual situation in server. We have Sharepoint 2013 server with basic webapplications and sitecollections. Everything works fine if users are connected directly to site from their own network or from server. But customer has also multiple users with vpn-connection and they cannot connect to Sharepoint sites. No eroor is produced, page only load for VPN users untils it stops to timeout. Only special thing is that we have 2 separate user profile services for users from different AD's.

Any ideas what this could be? Other sites that customer has are working fine. Also all routing and networking is ok and there's nothing unusual in IIS or Sharepoint settings.

-Antso


Antti Astikainen

Unable to access site after restoring Content Database to new farm

$
0
0

Hi,

I am currently trying to replicate my production website to a separate Development farm. I've performed a backup of the Content Database via SQL, and have restored it to the dev environment, created a new web application, and attached the Content DB. However, the site still does not display - when I attempt to access the site in IE 11, I am given an error message "This page can't be displayed".

I can query the site with get-spsite and get-spweb, but the web page just does not display at all. The original site is using SSL, and I have created my dev site to use the same.

Does anyone have any idea as what could possibly be causing my site to not display in the Dev enviroment? I am completely at a loss. Thanks.

EDIT: I should mention I am on SP2013 SP1 July 2015 CU with SQL 2012 Enterprise.

SharePoint 2013 Audience validation failed for site

$
0
0

I currently have a test SharePoint 2013 environment and recently run into a problem with the Content Type Hub.  I have deleted the old content type hub (http://contenttypehub), the database the site was in and the Managed Metadata Service associated with it.  I have recreated the MMS with a new content type hub site (http://contenttypes).

When creating Host Named Site Collections I get the "sorry something went wrong" error and the below is in the ULS log.

It looks like this is looking for the old site but I cannot fins anywhere to change this behaviour.

Any insight/help appreciated.

Thanks

Andrew

High     Cannot find site lookup info for request Uri http://contenttypehub/. c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36  w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         Claims Authentication          adlle Unexpected SPAudienceValidator: Audience uri 'http://contenttypehub/ is not valid for the context. c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36  w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         Claims Authentication          af3ys Unexpected SPSaml11SecurityTokenHandler: Audience validation failed for request 'http://spshare/' with the following audience URIs: 'http://contenttypehub/', . c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36  w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         Claims Authentication          aip75 Unexpected SPSam.OnSessionSecurityTokenReceived: Audience token conditions have failed. Cancelling event. c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36  w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         Authentication Authorization   agb9s Medium   Non-OAuth request. IsAuthenticated=True, UserIdentityName=, ClaimsCount=0 c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36  w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         General                        8nca Medium   Application error when access /, Error=Exception of type 'System.ArgumentException' was thrown.  Parameter name: encodedValue   at Microsoft.SharePoint.Administration.Claims.SPClaimEncodingManager.DecodeClaimFromFormsSuffix(String encodedValue)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(IClaimsIdentity claimsIdentity, String encodedIdentityClaimSuffix)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix)     at Microsoft.SharePoint.Utilities.SPUtility.GetFullUserKeyFromLoginName(String loginName)     at Microsoft.SharePoint.ApplicationRuntime.SPHeaderManager.AddIsapiHeaders(HttpContext context, String encodedUrl, NameValueCollection headers)     at Microsoft.SharePoint... c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36* w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         General                        8nca Medium   ....ApplicationRuntime.SPRequestModule.PreRequestExecuteAppHandler(Object oSender, EventArgs ea)     at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36  w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         Runtime                        tkau Unexpected System.ArgumentException: Exception of type 'System.ArgumentException' was thrown.  Parameter name: encodedValue    at Microsoft.SharePoint.Administration.Claims.SPClaimEncodingManager.DecodeClaimFromFormsSuffix(String encodedValue)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(IClaimsIdentity claimsIdentity, String encodedIdentityClaimSuffix)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix)     at Microsoft.SharePoint.Utilities.SPUtility.GetFullUserKeyFromLoginName(String loginName)     at Microsoft.SharePoint.ApplicationRuntime.SPHeaderManager.AddIsapiHeaders(HttpContext context, String encodedUrl, NameValueCollection headers)     at Microsoft.SharePoint.Application... c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36* w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         Runtime                        tkau Unexpected ...Runtime.SPRequestModule.PreRequestExecuteAppHandler(Object oSender, EventArgs ea)     at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36  w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         General                        ajlz0 High     Getting Error Message for Exception System.ArgumentException: Exception of type 'System.ArgumentException' was thrown.  Parameter name: encodedValue     at Microsoft.SharePoint.Administration.Claims.SPClaimEncodingManager.DecodeClaimFromFormsSuffix(String encodedValue)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(IClaimsIdentity claimsIdentity, String encodedIdentityClaimSuffix)     at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKey(String encodedIdentityClaimSuffix)     at Microsoft.SharePoint.Utilities.SPUtility.GetFullUserKeyFromLoginName(String loginName)     at Microsoft.SharePoint.ApplicationRuntime.SPHeaderManager.AddIsapiHeaders(HttpContext context, String encodedUrl, NameValueCollection headers)   ... c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.36* w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         General                        ajlz0 High     ...  at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.PreRequestExecuteAppHandler(Object oSender, EventArgs ea)     at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb
09/04/2013 09:56:06.38  w3wp.exe (0x100C)                        0x0B08 SharePoint Foundation         Logging Correlation Data       xmnv Medium   Site=/ c6a53f9c-dd9b-f0d5-b418-38dfe1e959eb

Any known MS SQL version prerequisite for installing SP 2013 - CU september 2015 (KB2986213)?

$
0
0

Hi,

I am currently running a SharePoint 2013 farm with Service Pack 1 intalled.

I would like to upgrade this to the SharePoint 2013 - CU september 2015 (KB2986213) and the only prerequisite I can find is that Microsoft SharePoint Server 2013 Service Pack 1 is installed (https://support.microsoft.com/en-us/kb/2986213#bookmark-prerequisite) - which I allready have installed.

All my SharePoint 2013 databases is running on a physical MS SQL DB server - version MSSQL 2012 (SP1) - 11.0.3128.0 (x64) - build 7601: Service Pack 1.

At some point I would like to upgrade this SQL version to SQL SP3, but I do not know whether the SharePoint upgrade has any prerequisite aboute this, or if I just can upgrade the SQL server after I have installed the SharePoint 2013 - CU september 2015 update.

What is your recommendation and knowledge about this?

Kind regards

Carl-Marius

Add Document Pop Up Size Issue

$
0
0

Hi All,

   For some reason the pop up for Add document is re-sized and looks like below screenshot. Any idea, how reset it back to normal size? Not showing the complete options and shows a scroll. This is happening for multiple users. 

 


Regards, Syed Faizan ur Rehman, CBPM®,PRINCE2®, MCTS


Excel Data refresh Error in Project Server 2013 and SharePoint 2013.

$
0
0

I am getting the attached below ULS error message, This is happening  when I try to open default reports in PWA Site. I have followed steps from scratch mentioned in the linkhttps://technet.microsoft.com/en-us/library/ee662106.aspx to open the reports, below are the troubleshooting steps done.

I have added the reports library URL to trusted file locations in the excel services.

I have added data connection library URL to data connection library location

I have provided access to EXCEL POOL account to the PWA content database.

I have provided SPDATAACCESS for excel and farm accounts to the Project web app database.

 I have installed SSAS 2008 Management objects in SharePoint Server. Then restarted the server and Project Application service.

I am not sure if I missing something, please help me.


Thanks, Ram Ch

SharePoint Page Ribbon options not working

$
0
0

Hi All,

  I am facing below issue, when I click Edit page the options in Ribbon are not showing up for any action. Please let me know how to resolve this, power user is stuck, this is occurring for some pages for some it is fine. 


Regards, Syed Faizan ur Rehman, CBPM®,PRINCE2®, MCTS

Import-SPWeb not importing Custom Person / Group Column Values

$
0
0

I have a SharePoint 2013 Multi-Tenant farm configured to use FBA. I tried exporting a site in one of the site collections of the tenant using Export-SPWeb. I did include the option IncludeUserSecurity. I have Custom Person / Group columns in most of my custom lists. But after I imported this in a target site in a different farm, everything worked fine, except that the values for these Custom Person / Group columns did not get imported (though I used the IncludeUserSecurity option while importing also), although the OOTB Created By and Modified By column values seem to be getting imported. Can anyone please tell me, if this is possible during Export & Import of SPWeb using PowerShell? I understand that IncludeUserSecurity option is only to preserve security.


Ven



Add/Delete Managed Metadata Service Applications

$
0
0

I have a 2013 farm with two WFEs and two application servers. The Managed Metadata service is running on both app servers not on the WFEs.

This problem just started occurring. I have been able to create service applications in the past. 

When I try to create a new Managed Metadata service application the process does not complete properly. I have tried through Central admin and PowerShell. In both cases the process runs and never stops or times out. The database is created and I can see the service application in Central admin. But the GUID is all zeros and it is not started.

When I try to delete a Managed Metadata service application the process times out in Central Admin and never stops in Powershell. The database is removed and eventually after two or three tries the service application goes away also. But the process still times out in that case too.

I have checked the ULS logs and the Event Viewer. At first I was getting a SQL permission problem. I found that the managed metadata role was missing from the SP_Admin database. I added that with permissions I copied from another farm. The SQL permission event is gone now. Now I see no errors in the Event Log and just warnings in the ULS logs.

Thank you in advance for your help.

SAML Auth and NTLM

$
0
0

G'day, I've successfully setup ADFS and enabled it on our internally hosted Sharepoint 2013 instance. If I enable claims based Authentication on our main intranet Site, I have to also disable NTLM authentication for it to work. Can I use both Auth methods on the same site (Even if it's using a different hostname mapping)??

Example internal staff (Domain network) use intranet.xxx.com and use NTLM, External Staff Using exttranet.xxx.com and use Claims based Auth. 

Is it possible to use two Auth methods for the same 'site'?

Thanks in advance.

Craig


Viewing all 21070 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>