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

Accidentally deleted Rating (0-5) column

$
0
0

I accidentally deleted the Rating (0-5) column from my site collection. I need to get it back. I found this thread about how to do it in SharePoint 2010 (although I'm not sure that problem was actualy solved).

http://social.technet.microsoft.com/Forums/sharepoint/en-US/0b7e75f8-c2ed-465c-8d90-be399616aba6/how-to-create-rating-05-column-under-ratings-group?forum=sharepointgeneralprevious

Also I don't have access to the PowerShell, so if there was another way that I could do it that would be great. Any ideas?


Secure Communication between SharePoint and SQL

$
0
0

What are the options of securing the communication between the SharePoint Server and SQL Server?

Is the Kerberos one of the options?  Any instructions on how to set it up?

Impossible create a Access WEB database on Sharepoint 2013 premises

$
0
0

when creating an access application servicesfrom access 2013 client,shows:
there was anerror
 Id correlazione : 76cbe79b-0142-9012-6df7-dae5a1b8ea93

Can you help me?

Thanks

Fabio

Using Quota templates with Self Service Site Creation

$
0
0

I am having an issue with quota templates not getting assigned to site collections created with Self Service Site Creation.

I set up a quota template in 'Specify Quota Templates' and give it the name 'test'.  I then go to self service site creation management and select the name 'test' from the 'Quota template to apply' dropdown.  I then create a site using self service site creation and when completed no template is applied to the new site collection.  I am wondering if anybody has seen this or if not am I incorrect in what I am expecting, that is that all site created in that web application should have the quota template applied that I selected in self-service site creation management

Steven Albrecht

University of Colorado Denver


Steven Albrecht

AD Domain missing from permissions view??

$
0
0

Hello SharePoint Fam,

In previous versions of SharePoint you could go to site permissions and see exact domain a user belonged to such as domain\username.  It seems that in 2013 this has gone away and my environment has over 20 different domains(will be just one soon) and we have users that are attached to these different domains so when I add a user to a new site sometimes I may be adding the incorrect account that the user actually needs due to me not seeing the domain in permission view.  Is there some kind of hack/tweak I can do to the permissions page that somehow gives me the domain information as well.  I see actual domain name in Profile database....

Thanks for any help in advance!

SharePoint 2013 OneDrive for Business 2013

$
0
0

Hello

I have SharePoint 2013 Enterprise installed in our SharePoint Farm (not 365) and recently installed Office 2013. I noticed the OneDrive for Business 2013 option and I tried to Sync documents to my My Site document library however I kept getting the following error message. Is there anything I need to do to get this working?

Thank you.

Yoshi

Issue with ADFS Trusted Provider and AD having 2 users with same email address.

$
0
0

Greetings,

Forgive me if this is posted in the wrong location I wasn't able to find one specific to ADFS.  We currently us ADFS to authenticate to our SharePoint environment.  We use the user's email address as the identifying claim.  The problem that we have is that there are some users that have 2 accounts in active directory, but have the same email address for both accounts.  When ADFS provides the authorization back to SharePoint it is sending back the wrong account which has no access to the appropriate resources.

I'm not an expert on ADFS so I'm not sure if there are any better options using incoming and outgoing claims or if Claims Rules are an option.  I just thought I would put this out here to see if anyone had similar issues or knew of an easy solution. Ideally we'd use UPN, but the UPN is different from the email address and the email address is more conformed across the environment.

Thanks.

Sharepoint 2013 seach works for intranet but not for external hostname

$
0
0

We are running SharePoint 2013 on our company Intranet. Search works fine within the Intranet, doing a search using its internal hostname, http://sharepoint. However, search fails when doing it from the external hostname, i.e. http://sharepoint.company.com

I have already tried different things such as disabling loopback check. I also made sure that the external hostname is being crawled and that the content is being indexed. I have also added the external hostname in IIS and restarted but still no joy.

Any ideas?


External access broke after site name change

$
0
0
We have external access to SharePoint 2013 behind a reverse proxy using an ADFS server for authentication. It was working fine until I changed our site name and now externally it gives a 500 error. The event log says there is a problem with AAMs, but this is a host-named site collection. The default URL for the site is correct. What am I missing here?

Perfomance

$
0
0
I have sharepoint 2013 running on a virtual server.  When clicking on different links within our sharepoint site, it takes 8 seconds for the page to load.  Is there any way to speed up the page loading when navigating the site.  The virtual server has 8 GB of ram.

Risks in Internet site with basic authentication and without SSL

$
0
0

Customer wants to use their SP2013 Intranet-only farm (1WFE, 1APP, 1 SQL) to create new webapp/site
collection for partner access via Internet, just a handful of them using AD account. They are also considering not to use SSL to
save cost.

Other than password being sent in clear text and opening for DoS attack, what are the other risks that we need to look into and highlight to the customer?

Changing Group Settings through PowerShell

$
0
0

I am attempting to change Group Settings such as the Name and Description of SharePoint groups using Windows PowerShell using the following script:

Add-PSSnapin "Microsoft.SharePoint.PowerShell"

$url = "https://sharepointdev.spfarm.spcorp.com/sites/desitecoll"

$userName = "spfarm\spprofileimport";
$site = New-Object Microsoft.SharePoint.SPSite($url) 
$web = $site.OpenWeb() 
$siteGroups = $web.Groups;

Clear-Host

$mySiteGroups = @(); 
foreach($group in $siteGroups) 
{ 
	Write-Host $group
	$mySiteGroups += $group;
}#foreach



$members = $web.Groups[$mySiteGroups[0]];
$owners = $web.Groups[$mySiteGroups[1]];
$visitors = $web.Groups[$mySiteGroups[2]];

$members.Name = "Site Collection Members";
$owners.Name = "Site Collection Owners";
$visitors.Name = "Site Collection Visitors";

$members.Description = "Use this group to grant people contribute permissions to the SharePoint site";
$visitors.Description = "Use this group to grant people read permissions to the SharePoint site";
$owners.Description = "Use this group to grant people full control permissions to the SharePoint site";


$members.Update();
$visitors.Update();
$owners.Update();

$web.Update();
$web.Dispose();

Write-Host "The new name of the Members group is :"  $members.Name $members.Description
Write-Host "The new name of the Visitors group is :"   $visitors.Name $visitors.Description
Write-Host "The new name of the Owners group is :"  $owners.Name $owners.Description

However, when I go into the User Interface and examine the settings, none of the Group Settings have actually changed!

Please advise as to how to correct this script so that I can appropriately modify the Name and Description (or minimally at least the description) of SharePoint Groups/Site Groups via Windows PowerShell.

Thanks.

SharePoint 2013: Error when clicking on Title, description, and logo

$
0
0

Hi.

I'm in the process of upgrading from SharePoint 2007 to 2013 and have come across an error which I think has occurred since trying to deploy a new feature to implement our "Company Theme" (Custom look). Please note, everything is otherwise behaving as expected in the new 2013 environment and the issue does not occur for site collections/content db's that are deleted and restored from the interim 2010 upgraded backup, so I am assuming its something I've done as part of deploying, retracting and redeploying the theme feature (a number of times).

So, on to the problem... When I click on "Title, description, and logo" in Site Settings I get the following error:

"Sorry, something went wrong

A list, survey, discussion board, or document library with the specified title already exists in this web site.  Please choose another title."

My research suggests there is something wrong with the masterpage, which I had initially included as part of the feature but have since gone back to using the default "seattle.master" when creating the Composed look (only spcolor and spfont are different now).

The same error also occurs when trying to preview a composed look.

Anyway, while I can probably get away with re-upgrading the affected site collections and re-enabling the theme feature, I'd like to know if I can fix this (or rather, what caused it) before going to production.

BTW, I'm getting the following errors in the Log file:

"The list "$Resources:core,webpageassetList;" in web "..." was not created"

"Failed to create list "... etc."

(I would copy the entire error messages but its not pasting - I'll try on a reply post)

Thanks,

Paul.




automatic password change in SharePoint 2013

$
0
0
I want to use automatic password change in manage account, but I don't know if it will also change password in AD.  if not change pw in AD, how it will work.

Awen

Disconnecting DBSERVER from domain break sharepoint completely

$
0
0
if the database server disconnect from domain, will the SharePoint break completely after rejoin?

Audiences with multiple "Reports Under" rules

$
0
0

I am creating an audience with multiple "Reports Under" rules with the "Members satisfy any of the rules" option.

Steps

  1. Create the audience.
  2. Choose Members satisfy any of the rules
  3. Choose Reports Under and specify a value (manager one name).
  4. Choose OK, then Add rule.
  5. Choose Reports Under and specify a value (manager two name).
  6. Compile.

Results

Only members of manager two's team are in the audience.

Remove manager two and compile. Now only members of manager one's team are in the audience. Now add some other attribute, such as Department contains, then include manager two's department name. Compile and you see that the audience now contains all team members from manager one (reports under rule) and manager two's (dept contains rule) teams.

Can an audience contain multiple "Reports Under" in SP2013? I seem to remember doing this successfully in SP2010.

SharePoint 2013 user profile service change homepage

$
0
0

Hi everybody!

I have a sharepoint 2013 farm that start and configure and sync user profile service on it successfully. now when each user browse site homepage first time, it shows a white page with 2 link that is go to site and change attribute, how could i disable this page???

Thanks in advanced

sharepoint 2013 and Microsoft web apps 2013

$
0
0

Hi

for sharepoint 2013 is Microsoft web apps 2013 needed is it required ,

and what are the benefits for using office web apps in SharePoint 2013


adil

Problem getting profiles into SharePoint 2013

$
0
0

Hello,

I have created a synchronization connection and I can select users and groups in active directory that I want to synchronize and populate containers. When I start a full profile synchronization, no profiles are imported. I am using SharePoint 2013 SP1, Enterprise Edition. 

Any suggestions?

Stage                  History Cleanup
............................. 
Start Time                  5/2/2014 11:47:20 PM
End Time                  5/2/2014 11:47:21 PM 
----------------------------------------------------------------- 
Stage                  Pre-processing
............................. 
Start Time                  5/2/2014 11:47:20 PM
End Time                  5/2/2014 11:47:20 PM 
---------------------------------------------------------------- 
 Server
Stage                  Active directory import
Additions                  0
Updates                  0
Unchanged                  0
............................. 
Successes                  0
Failures                  0
Start Time                  5/2/2014 11:47:21 PM
End Time                  5/2/2014 11:47:21 PM 
----------------------------------------------------------------- 
 Server
Stage                  Active directory import
Additions                  0
Updates                  0
Unchanged                  0
............................. 
Successes                  0
Failures                  0
Start Time                  5/2/2014 11:48:21 PM
End Time                  5/2/2014 11:48:21 PM 

I have the following services started:

User Profile Service Application

User Profile Service

User Profile Synchronization Service

AppFabric Caching Service

ForeFront Identify Manager Service

ForeFront Identity Manager Synchronization Service


Paul

Url Path Length Restrictions in SharePoint 2013

$
0
0

I found this article describing Url path length restrictions for SharePoint 2010: http://technet.microsoft.com/en-us/library/ff919564%28v=office.14%29.aspx

However, I have not found a corresponding article for SharePoint 2013.

So does that mean that this article does not apply to SharePoint 2013 or just that the MSDN documentation has not been updated to also include this restriction for SharePoint 2013?

Please advise.

Thanks.

Viewing all 21070 articles
Browse latest View live


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