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

Feature activation powershell commands for SP 2010 to 2013 migration.

$
0
0

I heard there is a new Feature activation Powershell command which is used for migration of customization from SP 2010 to 2013.

Has any one used these command in real-time? Can we depend on this command for migration of big set of customization? 

How much dependable is this command?


jnkb


Disable Document and Folder sharing on mysites.

$
0
0
I'm looking for information on disabling Document and File Sharing for users of mysites within SharePoint 2013 On-Premise or turning off onedrive. Either way would work.

Reggie

Migration of workflow and infopath form SharePoint 2010 to 2013

$
0
0

Hi,

are you able to migrate complex workflow and Infopath from SP 2010 to 2013 without any tools. With tools it is fine some cases.

Any one got hands on experience on this please reply with your experience

Regards,



June 2013 CU => uncaught sys.InvalidOperationException: "timeZoneId"

$
0
0

Hey,

after successful SharePoint CU Update (June 2013) we experiencing a script error in enterprise search center: the webparts (SearchNavigation, ResultScriptWebPart, ...) on the page are just not loading.

In IE-Dev-Console (F12) we found a script error:

SCRIPT5022: Sys.InvalidOperationException: "timeZoneId" ist keine Eigenschaft und kein vorhandenes Feld. 
ScriptResource.axd?d=7dQ5Nvaem_(...)

- "ist keine Eigenschaft und kein vorhandenes Feld." = is not a property or existing field

$web.RegionalSettings.TimeZone.ID is 4

I have no idea what happened during update :/

Any idea?

/Valerian

Orphaned role assignments

$
0
0

Hello,

I have a Project Server farm where my content database triggered the "Content databases contain orphaned items" alert in CA. When I run a check in powershell, I see that I have 187 orphaned role assignments. These are users or groups aren't they? If so, is there a way to dump out the list of what these are before I tell SP to fix this automatically? I have a dev farm where I can test this, but I still wouldn't mind knowing what the repair is going to do.

My farm is SP/Project 2013 with the June 2015 CUs.

Thanks!

Security message popup while launching OneNote 2010 document from Microsoft SharePoint 2013

$
0
0

Hi,

We use Windows 7, Office 2010 (w/OneNote) and save shared documents in SharePoint (SP) 2010. the company recently upgraded a few shares to SP 2013. When we try to launch a OneNote document from this SP site, a "Microsoft OneNote Security Message" pops up with the following dialog:

Microsoft Office has identified a potential security concern.
The location may be unsafe

onenote://http://xxx.IntranetFQDN.com/path

Hyperlinks can be harmful to your computer and data..... Do you want to continue?

The Intranet FQDN site is part of the "Intranet Zone" in IE11 that we use. We do not see this message in SP 2010. OneNote doesn't have a "Trusted locations" section that we can use to add a Trusted SP site. I found several links on bing and technet that have information on how to "disable" this prompt within the registry, but that is not my goal. I would like to keep the prompt for legit malicious sites, but avoid it for Intranet sites and SharePoint.

Suggestions/Thoughts on this?


There are no servers available or actively being initialized

$
0
0

Hi all,

we are in a serious trouble with excel services and BI with SharePoint 2013.

We have a three tier Farm, 1 WFE, 1 App, 1 SQL with a fourth dedicated BI SQL with analysis (not in SharePoint mode). A Office Web Application server complete the infrastructure.

We are trying to make the powerpivot for SharePoint working. At the moment we have installed all the components using most of the various guide in the internet. We also created all the Kerberos SPN & delegation for all the components involved.
The same configuration was done in a test farm, identical to the produciont one, and it's working.

In production we are struck with the PowerPivot service application with the workbook activity chart with red X in it, and a error like "The data connection uses Windows Authentication and user credentials could not be delegated. The following connections failed to refresh" if we try to refresh the data in the server health part above.

In the logs we have:

"We cannot locate a server to load the workbook Data Model" and, most specific:

ExcelService.PostProcessRequest: web method: EnsureWorkbookModel, got exception Id=NoStreamingServers; Microsoft.Office.Excel.Server.CalculationServer.SessionException: We cannot locate a server to load the workbook Data Model.    

Digging more, we found this error:

There are no servers available or actively being initialized

According to :

http://blogs.msdn.com/b/analysisservices/archive/2012/08/02/verifying-the-excel-services-configuration-for-powerpivot-in-sharepoint-2013.aspx

I have communication issues between the servers, But I know that this kind of message could be generic.

I have tryed to telnet the Bi SQL server, opening the SQL MNGT from the SPS App server, I have no firewall active on the servers and they are virtuals on the same infrastructure. So I can't find out the problem. I suspect that is not a real network issue.

Please, anyone can suggest me how to understand where is the problem ? We are becoming crazy with this problem.

Thank you very much

I want add and edit but not viewitems(allitems.aspx) for listitems

$
0
0

Hello,

I want add and edit but not viewitems(allitems.aspx)

In this case this permissions does not work

$spweb=Get-SPWeb -Identity "http://sp2013srv";
$spRoleDefinition = New-Object Microsoft.SharePoint.SPRoleDefinition;
$spRoleDefinition.Name = "edit/add but not view items Forms Permission";
$spRoleDefinition.Description = "Can submit/add forms/files/items into library or list but cannot view/edit them.";
$spRoleDefinition.BasePermissions = "AddListItems, EditListItems, ViewPages, ViewFormPages, Open";
$spweb.RoleDefinitions.Add($spRoleDefinition);
$spweb.Dispose();

This does not let me goto /EditForm.aspx?ID=1 It says item has been deleted but item exists and seen by admin.


MCTS Sharepoint 2010, MCAD dotnet, MCPDEA, SharePoint Lead


People Search - User Click Not taking to Mysite

$
0
0

Hi there - When click on the user's photo in the people search result, not pointing to my-site. It is showing the Search Center Url instead of mysite.

What setting need to be done?

Thanks


Khushi

System.Net.WebException: The remote server returned an error: (409) Conflict.

$
0
0

Hello,

We're trying to upload a lot of data (350+GB) to our on premises instance of SharePoint 2013.

This data is currently on a shared drive and consists of 1M+ documents on probably 10000+ different folders.

I've written a simple multithreaded tool that uploads the files to SP.

The his uses Parallel.ForEach. and works ok with small amounts of data, but when we try it in anger we tart getting this exception

Net.WebException: The remote server returned an error: (409) Conflict.
   at System.Net.HttpWebRequest.GetResponse()
   at Microsoft.SharePoint.Client.SPWebRequestExecutor.Execute()
   at Microsoft.SharePoint.Client.File.SaveBinary(ClientContext context, String serverRelativeUrl, Stream stream, String etag, Boolean overwriteIfExists, SaveBinaryCheckMode checkMode)
   at Migrator.Program.UploadFile(ClientContext context, String filePath, Boolean exception) in c

Interestingly, if I ramp up the number of threads, I get a lot more of these exceptions.

Perhaps, more interestingly we seem to get the error always for the same files, at least after two tries.

I can't really see anything on the SP log, at least anything I can make sense out of.

The below seems to happen after the issue occurrs but not sure if this is the case or just an unrelated exception.

Set EventFiringDisabled to [False].  Stack trace: [   at Microsoft.Office.Server.Utilities.EventReceiverUtility.DisabledEventFiringScope.Dispose()     
at Microsoft.Office.Server.Utilities.EventReceiverUtility.RunItemEventReceiverExProps(Boolean handleVersionConflicts, MonitoredScopeWrapper monitoredScopeWrapper, Boolean disableEventFiring, SPItemEventProperties properties, ItemEventReceiverCodeToRunProps codeToRun)     at Microsoft.Office.Server.Utilities.EventReceiverUtility.RunAndHandleVersionConflictsExProps(MonitoredScopeWrapper monitoredScopeWrapper, Boolean disableEventFiring, SPItemEventProperties properties, ItemEventReceiverCodeToRunProps codeToRun)     at Microsoft.Office.DocumentManagement.DocumentId.ItemChangedInternal(SPItemEventProperties properties, Boolean fOverwrite)     a...7f311d9d-2565-e02b-95fa-1ca09f0d4749
...t Microsoft.Office.DocumentManagement.Internal.DocIdHandler.ItemChangedInternal(SPItemEventProperties properties, Boolean fOverwrite)     at Microsoft.Office.DocumentManagement.Internal.DocIdHandler.ItemAdded(SPItemEventProperties properties)    at Microsoft.SharePoint.SPEventManager.RunItemEventReceiver(SPItemEventReceiver receiver, SPUserCodeInfo userCodeInfo, SPItemEventProperties properties, SPEventContext context, String receiverData)     at Microsoft.SharePoint.SPEventManager.RunItemEventReceiverHelper(Object receiver, SPUserCodeInfo userCodeInfo, Object properties, SPEventContext context, String receiverData)     at Microsoft.SharePoint.SPEventManager.<>c__DisplayClassa`1.<InvokeEventReceiver>b__7()     at Microsoft.SharePoint.SPSecurity.RunAsUser(SPUserToken userToken, Boolean bRe...7f311d9d-2565-e02b-95fa-1ca09f0d4749
...setContext, WaitCallback code, Object param)     at Microsoft.SharePoint.SPEventManager.InvokeEventReceiver[ReceiverType](SPUserToken userToken, Guid tranLockerId, RunEventReceiver runEventReceiver, Object receivers, Int32 n, Object properties, SPEventReceiverOperationsType operationsType, Boolean& canceled, String& error)     at Microsoft.SharePoint.SPEventManager.InvokeEventReceivers[ReceiverType](SPRemoteEventReceiverCallType remoteCallType, SPUserToken userToken, Guid tranLockerId, RunEventReceiver runEventReceiver, RunRemoteEventReceiver runRemoteEventReceiver, Object receivers, Object properties, Boolean checkCancel, SPEventReceiverOperationsType operationsType)     at Microsoft.SharePoint.SPEventManager.InvokeEventReceivers[ReceiverType](SPRemoteEventReceiverCallType remoteCallType,...7f311d9d-2565-e02b-95fa-1ca09f0d4749
... Byte[] userTokenBytes, Guid tranLockerId, RunEventReceiver runEventReceiver, RunRemoteEventReceiver runRemoteEventReceiver, Object receivers, Object properties, Boolean checkCancel, SPEventReceiverOperationsType operationsType)     at Microsoft.SharePoint.SPEventManager.ExecuteItemEventReceivers(Byte[]& userToken, Guid& tranLockerId, Object& receivers, ItemEventReceiverParams& itemEventParams, Object& changedFields, EventReceiverResult& eventResult, String& errorMessage)     at Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrDeleteUrl(String bstrUrl, String bstrDirName, Boolean bAdd, UInt32 dwDeleteOp, Int32 iUserId, Guid& pgDeleteTransactionId)     at Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrDeleteUrl(String bstrUrl, String bstrDirName, Boolean bAdd, UInt32 dwDel...7f311d9d-2565-e02b-95fa-1ca09f0d4749
...eteOp, Int32 iUserId, Guid& pgDeleteTransactionId)     at Microsoft.SharePoint.Library.SPRequest.AddOrDeleteUrl(String bstrUrl, String bstrDirName, Boolean bAdd, UInt32 dwDeleteOp, Int32 iUserId, Guid& pgDeleteTransactionId)     at Microsoft.SharePoint.SPFolderCollection.AddInternal(String strUrl, Int32 userId)     at LD_FolderStructure.Events.Events.CreateFolderStructure(SPItemEventProperties properties)     at Microsoft.SharePoint.SPEventManager.RunItemEventReceiver(SPItemEventReceiver receiver, SPUserCodeInfo userCodeInfo, SPItemEventProperties properties, SPEventContext context, String receiverData)     at Microsoft.SharePoint.SPEventManager.RunItemEventReceiverHelper(Object receiver, SPUserCodeInfo userCodeInfo, Object properties, SPEventContext context, String receiverData)     at Mi...7f311d9d-2565-e02b-95fa-1ca09f0d4749
...crosoft.SharePoint.SPEventManager.<>c__DisplayClassa`1.<InvokeEventReceiver>b__7()     at Microsoft.SharePoint.SPSecurity.RunAsUser(SPUserToken userToken, Boolean bResetContext, WaitCallback code, Object param)     at Microsoft.SharePoint.SPEventManager.InvokeEventReceiver[ReceiverType](SPUserToken userToken, Guid tranLockerId, RunEventReceiver runEventReceiver, Object receivers, Int32 n, Object properties, SPEventReceiverOperationsType operationsType, Boolean& canceled, String& error)     at Microsoft.SharePoint.SPEventManager.InvokeEventReceivers[ReceiverType](SPRemoteEventReceiverCallType remoteCallType, SPUserToken userToken, Guid tranLockerId, RunEventReceiver runEventReceiver, RunRemoteEventReceiver runRemoteEventReceiver, Object receivers, Object properties, Boolean checkCancel, SPE...7f311d9d-2565-e02b-95fa-1ca09f0d4749
...ventReceiverOperationsType operationsType)     at Microsoft.SharePoint.SPEventManager.InvokeEventReceivers[ReceiverType](SPRemoteEventReceiverCallType remoteCallType, Byte[] userTokenBytes, Guid tranLockerId, RunEventReceiver runEventReceiver, RunRemoteEventReceiver runRemoteEventReceiver, Object receivers, Object properties, Boolean checkCancel, SPEventReceiverOperationsType operationsType)     at Microsoft.SharePoint.SPEventManager.HandleEventCallback[ReceiverType,PropertiesType](Object callbackData)     at Microsoft.SharePoint.Utilities.SPThreadPool.WaitCallbackWrapper(Object state)     at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)    at System.Threading.ExecutionContext.Run(Execution...7f311d9d-2565-e02b-95fa-1ca09f0d4749
...Context executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)     at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()     at System.Threading.ThreadPoolWorkQueue.Dispatch() ]7f311d9d-2565-e02b-95fa-1ca09f0d4749

Any ideas?

Thanks

Record Center set to block edit and delete when item is declared record but users can still edit

$
0
0

We have a SharePoint 2013 Record Center site collection with the following settings:

Site Settings - Record Declaration Settings -

And record library settings are set to Automatically declare an item a record.

However, users with Contributor or above can still edit an item that is declared a record.  Our requirement is that they cannot edit or delete once the item is a record.

PLEASE HELP viewstatelog: failed to find entry in cache

$
0
0

I have a custom list, and users are entering data into 15 fields (Text, Date, People Picker types).  I am using SPForm Designer from Plumsail as the entry form, because multiple tabs were required and it was the easiest way to achieve that.  They have also been made aware of this problem, but I am absolutely stumped by this issue, and I am not 100% certain that is related to SPForm so given the criticality of the issue, I have to ask here as well as Plumsail.

This is SharePoint 2013 on premise, with one WFE and one Application Server in a small environment.

The custom list is nothing special, and I am not doing anything out of the ordinary.  The initial build and testing of this application went through without issues. There is never more than 2 - 3 people in this application at one time.

Now, and only for certain users, they are unable to save any data when they create a new entry on this Custom list.  Initially, this was thought to be a form timeout issue because they take a long time to fill out the form. FormsDigest timeout has been adjusted, but the errors persist.

When SharePoint goes to save the entry, it throws an error that has been correlated to:

ViewStatelog: failed to find entry in cache.  

Shortly after that, the ULS logs show what looks like is an attempt to log the user out as it shows entries where it is trying to redirect to Signout.aspx

There are lots of other entries in the ULS logs that occur AFTER the viewstatelog entry, but I believe they are just symptoms of the root error which is that the entry is not in cache

I have done a detailed investigation into the state of Distributed Cache and everything is in good working order.   I cannot figure out for the life of me why certain users, who all have the same permission levels, get into a situation where SharePoint just cannot find the entry in cache, and blows up, except in the case of a Form Timeout, which is not the issue.

This problem is critical, and I need some guidance ASAP, please.  I have researched this for 8 - 10 hours now and cannot find anything that looks even remotely like it would address this issue.

If someone would be willing to take a look I will gladly post the details from the ULS logs

Thank you in advance for your consideration


DWM

Blob Cache SharePoint 2013- Change location

$
0
0

We have a existing SharePoint 2013 environment where Blob Cache is configured to C drive ,its increasing day by day.

We want to change the location of the Blob cache to E drive..

Let me know the steps to change the location of the Blob cache ...

Moss 2003 to SharePoint 2013

$
0
0

Dear All,

   * I have query regarding migration .As I have is requirement to migrate moss 2003 to SharePoint 2013 ,I would like to know Is microsoft removed the migrating issue to directly migrate from older version to SP 2013 in SP 2013

   * Or do we need to follow the old myth to migrate moss 2003 to all the versions and then finally to SP 2013


Thanks, Quality Communication Provides

Quality Work.

Sid


SharePoint 2013 is down - due to change in Service Accounts

$
0
0

Hi,

we have a client where SP is running for the past 2 years. Initially SP is installed only with 2 accounts spfarm and spservice. Now as a part of security and performance enhancement they need to keep individual service accounts for different services. When we changed as per certain blogs from MS, total SP is down now. Below is the current details on the issue. i have given all service accounts in detail. Please let me know, which service should run in what privilege in all 4 servers.

-------------------------------------------------------------------------------------------------------------

APP 1
-----------------------
Services.msc
SharePoint AdminitrationAutomaticspfarm (Have to be the Farm Account)
SharePOint Search host ControllerAutomaticcms-svc-search
SharePoint Server Search 15Automaticcms-svc-search
SharePoint Timer ServiceAutomaticspfarm (Have to be the farm Account)

ForeFront Identity Manager ServiceDisabledLocal System
ForeFront Identity Manager Sync ServiceAutomaticCMS-SVC-Userprofile

IIS Application Pool
------------------------

Security Token Service Applicationspfarm
Central Administrationspfarm
SharePoint-666cms-svc-pool
SharePoint-80 (My Sites Hosted)spfarm


List of Service Accounts in Central Administration
-------------------------

Farm Admin spfarm
Windows Service-Claims to windows token ServiceLocal System
Windows Service - Distributed Cachecms-svc-services
Windows Service - Document Conversions Launcher ServiceLocal System
Windows Service - Document Conversions Load Balancer ServiceLocal System
Windows Service - MS SharePoint Foundation Sandboxedcms-svc-services
Windows Service - Search Host Controller Servicespfarm
Windows Service - SharePoint Searver Searchcms-svc-search
Windows Service - User Profile Synchronisation Servicecms-svc-userProfile
Service Application Pool - CMS Search Servicecms-svc-search
Service Application Pool - Security Token Service Applicationcms_svc_userprofile
Service Application Pool - SharePoint Web Services Defaultspfarm
Service Application Pool - SharePOint Web Services Systemspfarm

Available SP Accounts
----------------------------------------------

spfarm --> Farm Account used for installation already (no need to change this)
cms-svc-pool--> Where it should be used? What access it should have in the DB, SQL Server, SP App Server, Front End Server
cms-svc-services--> Where it should be used? What access it should have in the DB, SQL Server, SP App Server, Front End Server
cms-svc-crawl--> Where it should be used? What access it should have in the DB, SQL Server, SP App Server, Front End Server
cms-svc-search--> Where it should be used? What access it should have in the DB, SQL Server, SP App Server, Front End Server
cms-svc-userProfiles--> Where it should be used? What access it should have in the DB, SQL Server, SP App Server, Front End Server
-----------------------------------------



How to give edit permission for only one field in a list item

$
0
0
How to give edit permission for only one field in a list item

Report Viewer Web Part on SharePoint 2013

$
0
0

To summarize what I am trying to do, I first want to provide some information. We currently are using TFS 2013 and have Reporting Services setup for TFS. The TFS 2013 Deployment and Reporting Services (SQL 2012) are on separate servers. Reporting works fine and I can create custom reports from TFS data.

We also have TFS 2013 integrated with SharePoint 2013. TFS 2013 and SharePoint 2013 are on separate servers as well. The TFS integration with SharePoint works as expected. We are using the Release Dashboard to provide TFS data.

So in summary, TFS 2013, SharePoint 2013, and Reporting Services are all on separate servers.

My question:

I would like to be able to add the "Report Viewer Web Part" on certain SharePoint sites. Under the list of web parts I can add, the Report Viewer Web Part isn't listed in any category.

From looking around online, it seems I must have the "SQL Server 2012 Reporting Services Add-in for SharePoint" installed on the SharePoint servers.

1) Is installing the add in on the SharePoint servers the only way to make the report viewer web part available?

2) If there is another way to make the Report Viewer Web Part available, what is it?

3) Does any changes have to be made on the SQL/Reporting Server?

My current workaround is to add the "Page Viewer Web Part" and add the URL of the report file on the reporting server. This doesn't give me as much functionality.

Thanks for any help that can be provided!

Sharepoint workflow broken after every time I apply a cumulative update

$
0
0

According to upgrade guide, we patched  sharepoint 2013 cumulative update and run following command to upgrade database

psconfig.exe -cmd upgrade -inplace b2b

Get-PSContentDatabase | Upgrade-PSContentDatabase

I have went through above process several times ,but workflow will break after every upgrade.

 This time ,we upgrade from 15.0.4701.1000 to 15.0.4719.1000  and get following error

Failed to get document content data. System.ComponentModel.Win32Exception (0x80004005)

Could not get DocumentContent row: 0x80004005

Spent 0 ms to bind -1 byte file stream

Failure when fetching document. 0x80070012

Would anyone know how to fix this?

Master pages through design manager, how to manage different sharePoint controls on different places in the master page

$
0
0

Client has a requirement to place different sharePoint controls on different places in the master page. How to control this situation when through design manager we can manage how to place different SharePoint controls on different places in the master page?


Work Management Service in Multifarm architecture

$
0
0

Dear all,

The environment in which I am working on consists of SharePoint 2013 multi farm architecture. Farm A is a central service farm that consists of Search, User Profile  etc. and MySite. Farm B is where all the web applications have been provisioned. Search, UPS services are being shared from Farm A.

The requirement from the customer is to have a work management service that could aggregate and show the Tasks from Farm A and Farm B on mySite. To accomplish this, I have successfully provisioned the Work Management service on Farm A (Centeral Service Farm) and now it shows me list of all tasks created in any site collection on Farm A but no tasks from Farm B are being shown on MySite.

By following the Microsoft MultiFarm architecture figure, I have also provisioned the Work Management Service at Farm B but still no success. 

It would be great if anyone could help me in this regard.

Thanks in advance

The following is the multifarm architecture from Microsoft

Viewing all 21070 articles
Browse latest View live


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