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

Paging SPGridView with SPListItemCollectionPosition

$
0
0

HI,

I am using the SPGridView, SPGridViewPager in a visual webpart. In the visual webpart, I have two custom webpart properties -

named "Items to show, PagingNumber ". If the "Items to show" is less than 10, then paging is not required. "Paging number" is a dropdown enum which contains 10, 50, 100.

I want to use the "SPListItemCollectionPosition" to page through the items in gridview. How to use it, when using a custom page number?

I have tried the below, but the paging controls are not shown:

<div id="div1" ><SharePoint:SPGridView runat="server" ID="Gridview1" AutoGenerateColumns="false" AllowPaging="true" PageSize="10"><Columns><asp:TemplateField HeaderText="Titles"><ItemTemplate><asp:Label ID="lblTitle" Text='<%# Eval("Title") %>' runat="server"></asp:Label></ItemTemplate></asp:TemplateField></Columns><PagerSettings Mode="NextPreviousFirstLast" Visible="true" NextPageText="Next |" PreviousPageText="Previous |" FirstPageText="First |" LastPageText="Last" /></SharePoint:SPGridView></div><div id="TestPager" ><SharePoint:SPGridViewPager ID="Grid1Pager" runat="server" GridViewId="Gridview1"></SharePoint:SPGridViewPager></div>


In the cs code:

 public void BindGridView()
        {
            using (SPSite oSite = new SPSite(SiteName))
            {
                using (SPWeb oWeb = oSite.OpenWeb())
                {
  SPList lstPages = oWeb.Lists["Pages"];
 SPQuery sQuery = new SPQuery();

 var ItemsPerpage = PagingItem.ToString();
 if (ItemsPerpage == "Fifty" )
  {
   sQuery.RowLimit = 50;
 }
 else if (ItemsPerpage == "Hundred")
  {
     sQuery.RowLimit = 100;
   }
   else
{
sQuery.RowLimit = 10; // default Paging is set for 10 
 }
sQuery.Query = "<Where><Eq><FieldRef Name='_ModerationStatus'/><Value Type='ModStat'>0</Value></Eq></Where>";

sQuery.ViewFields = string.Concat("<FieldRef Name='Title' />","<FieldRef Name='EncodedAbsUrl' />");

sQuery.ViewFieldsOnly = true;

DataTable dt = new DataTable();
                                       SPListItemCollection myColl = lstPages.GetItems(sQuery);

 if (myColl.Count > 0)
 {
   dt = myColl.GetDataTable();
  do
{   

Gridview1.DataSource = dt;    
                    Gridview1.DataBind();

sQuery.ListItemCollectionPosition = myColl.ListItemCollectionPosition;
  } while (sQuery.ListItemCollectionPosition != null);
}

Not sure, why the pager is not showing. Total number of records is 110. Rowlimit is 10, so I am expecting Pager.

How to fix this?

Thanks


Trying to achieve Full Crawl on Sharepoint 2013 on Exchange 2010 server

$
0
0

Hi guys!

Trying to achieve full crawl of exchange 2010 public folders on our SharePoint 2013 server.

The instructions are you do full crawl on: https://owa.domain.com/public, but the thing is if I open for test in browser this address I get this:

Server Error in '/' Application.



Runtime Error

Description:
An exception occurred while processing your request. Additionally, another
exception occurred while executing the custom error page for the first
exception. The request has been terminated.


bostjanc

Is LDS Required for UPS Imports?

$
0
0

Hi,

We're setting up a new SharePoint 2013 Enviroment and attempting to import User Profiles from Active Directory. I keep encountering the following message. "The LDAP Server is unavailable"

Having run this error message to ground it's not the firewall issue that most people who report this one have (port 389 is open). The problem is that our domain controller does not have the AD LDS role installed.

I was under the impression LDS was used by SharePoint to allow clients and other third party users to connect to site collection without creating whole new AD profiles for them. Is there a way to connect to AD and sync my User Profiles without installing LDS or is it a requirement of SharePoint 2013?


Custom site columns missed after upgrade to SP2013 (evaluation mode)

$
0
0

I am migrating a site collection from SP2010 to SP2013 using database attach method.

After attached and running the site in SP2010 it is working fine. However, after creata a SP2013-evaluation site collection, I found some site columns are missed. A custom content type depends on these columns still work. When I edit these custom content type I found some columns are missed.

Is it normal? What should I do? I have a custom webpart look on these fields are not working.

If by some reason I cannot fix the migration process, can I batch export and import the custom columns and custom content type settings?

sharepoint 2013 search broken after upgrade from 2013 foundation to 2013 ent.

$
0
0

Hello

I have tried many of the suggestions that I have found in the forums for this issue but non have worked as of yet.

I have sharepoint 2013  sp1 running on server 2012 R2 connected to SQL 2012 DB, which was upgrade from SharePoint foundation 2013. Everything is working with the exception of the search. the errors are below.


Application Server Administration job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance (1d094485-eab9-458d-a363-4b5e8704048f).

Reason: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))

Technical Support Details:

System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))

   at Microsoft.Office.Server.Search.Administration.SearchServiceInstance.Synchronize()

   at Microsoft.Office.Server.Administration.ApplicationServerJob.ProvisionLocalSharedServiceInstances(Boolean isAdministrationServiceJob)

For some reason this is using the farm account which is not the account used for the search service but has full access to the sites and databases. So I'm not sure what or where it is getting an access denied error. Is there any way to find what it is trying to access? BTW I have disabled the loopback check, verified it has correct access to %windir%\tasks and recreated the search service many times, changed application pool accounts

Application Server Administration job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance (1d094485-eab9-458d-a363-4b5e8704048f).

Reason: The object you are trying to create already exists. Try again using a different name. 

Technical Support Details:
System.Runtime.InteropServices.COMException (0x80040D02): The object you are trying to create already exists. Try again using a different name. 
   at Microsoft.Office.Server.Search.Administration.SearchServiceInstance.Synchronize()
   at Microsoft.Office.Server.Administration.ApplicationServerJob.ProvisionLocalSharedServiceInstances(Boolean isAdministrationServiceJob)

Any help you can provide would be greatly appreciated.

SharePoint 2013 Database Maintenance Timer Jobs and Best Practices

$
0
0

What SharePoint 2013 timer jobs run databases index rebuilds on the SQL Server 2012 database engine? If there are none, is it a good and, most importantly, supported practice to let the DBAs rebuild indexes periodically with the database engine tools?

FYI, this thread did not cover the answer for SharePoint 2013; the noted timer jobs are in SharePoint 2010 and we can't find them in SharePoint 2013. 

Thank you. 


Radu P.

Licensing

$
0
0

Could anyone please advise me how SharePoint is licensed?

I.e. Are licenses available in increments of 10, 500, 1000 etc or is it on a per-user basis?

If there are any relative links you could share with me, that would be most appreciated.

Thanks,

David


Senninha010

Mails receiving to Dropbox and disappearing but not receiving to SharePoint List in SP 2013:

$
0
0

Previously things were working fine, after making changes in Exchange that they have created MX records and some needed stuff to receive emails from external to SharePoint list.

Internally with in corporate domain, SharePoint list is about to receive the mails without any issues, but when we send mail from external mail (Gmail) to SharePoint lists , mails are coming to Drop box and in which those messages are getting disappeared but not coming to SharePoint list. Please help me out in this issue

Steps Done:

IIS Reset

Restarted timer services

Restarted SMTP services

Cleared the farm cache

Rebooted the server

But no luck.


Thanks, Ram Ch


Reporting Services "The requested service, 'http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc/actas' could not be activated."

$
0
0

Nothing seems to help. I've ready about 100 articles on this all with the same fixes nothing works.

The requested service, 'http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc/actas' could not be activated. See the server's diagnostic trace logs for more information.

Please people tell me what you have done to fix this!

SQL 2014
SharePoint Foundation 2013 SP1

I've verified that Kerberos is working.  I ensured that "Extended Protection: Accept" is set.  Checked "Enable kernel-mode authentication".

I can't figure this out.  It's been days!!!!!


David Jenkins

Connection failed from Mac OS/X 10.9 using Microsoft Document Connection

$
0
0
When attempting to connect to our on-prem Sharepoint 2013 server from Mac clients using Microsoft Document Connection (as found in Office 2011), the response is "Connection failed". Enabling Basic authentication makes no difference. Client integration is enabled. Tried different URL notations to no avail. Document Connection never asks for credentials.

Disappearing Sharepoint Foundation 2013 anonymous list submissions

$
0
0
I have a custom Sharepoint Foundation 2013 list configured to allow anonymous submissions from a public facing website, but which requires admin permissions to view the full list content. Think like a contact form or an online application - anonymous users can submit a new item via the form, but get "permission denied" when attempting to access the list itself. I've customized the New Item .aspx in Sharepoint Designer, and I've also added a redirect page after submission for a "confirmation" page.

This seems to work perfectly in all of my tests - but I have several dozen users who have reported correctly filling out the form, pressing "Submit," and being taken to the confirmation page, but the list item is nowhere to be found when I log in and look at the list. It appears that somehow Sharepoint is losing the new list item, while still redirecting users to the post-submission confirmation page.

If it was a single user, I'd chalk it up to user error (not pressing Submit or something), but I have enough identical reports to verify that this is definitely happening and data is definitely being lost. I have similar reports from users of all 3 major browsers, both Mac and PC. 

Unfortunately, I can't reproduce this behavior on demand - the form works fine for me no matter what I throw at it. There's nothing in the recycle bin, no validation errors (I've turned off all validation for the form), and I have tried every browser/OS combination I can think of. In every single test I have done, the form submits flawlessly, and the new list item appears immediately - even for a blank form.

Any ideas? Where do I even start trying to troubleshoot this if it happens seemingly at random?

Thanks in advance for any thoughts...


Event ID 3760 database still there after delete the web application

$
0
0

Hi,

I have this weird issue with orphan database which causes event ID 3760 errors and I can't get rid of it. I had a test web application in SharePoint 2013 Server farm which I deleted recently. I don't see it's database in SSMS or in CA or when I run Get-SPDatabase, but if I run Get-SPDatabase {GUID} (I noted the GUID before deleting), it returns the database. If I try to delete it using below script, it runs without errors, but the database is still there if I get it running first line again.

$badDB = Get-SPDatabase 10d67d9d-c2d5-8821-er63-02f47uf2be3c
$badDB | select name
$badDB.Delete()

How can I force deletion?


Edit Profile Synchronization Connection

$
0
0

Hi,

I have added a new connection in SharePoint 2013 , but I would like to edit it so that I can sync more profiles. Some reason there is no dropdown menu to select Edit Connection filters or delete or edit. How do I get the menu.

SAML tokens always expired?

$
0
0

Hi,

We've configured TIM with SharePoint and seemingly have the authentication working, but we get stuck in an endless redirection loop.

From the ULS logs:

04/07/2014 17:07:35.21	w3wp.exe (0x570C)	0x1174	SharePoint Foundation	Logging Correlation Data	xmnv	Medium	Name=Request (POST:https://spsamltest.local:443/_trust/)	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.21	w3wp.exe (0x570C)	0x1174	SharePoint Foundation	General	adyrv	High	Cannot find site lookup info for request Uri urn:spsamltest.local:domain-int.	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.22	w3wp.exe (0x570C)	0x1174	SharePoint Foundation	Topology	aeayb	Medium	SecurityTokenServiceSendRequest: RemoteAddress: 'http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc' Channel: 'Microsoft.IdentityModel.Protocols.WSTrust.IWSTrustChannelContract' Action: 'http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue' MessageId: 'urn:uuid:0cfc2c96-bf53-4b2e-84b7-5e5b21c40924'	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.23	w3wp.exe (0x9398)	0x64CC	SharePoint Foundation	Topology	aeax9	Medium	SecurityTokenServiceReceiveRequest: LocalAddress: 'http://spserver.local:32843/SecurityTokenServiceApplication/securitytoken.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://docs.oasis-open.org/ws-sx/ws-trust/200512/RST/Issue' MessageId: 'urn:uuid:0cfc2c96-bf53-4b2e-84b7-5e5b21c40924'	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.23	w3wp.exe (0x9398)	0x64CC	SharePoint Foundation	Monitoring	nasq	Medium	Entering monitored scope (ExecuteSecurityTokenServiceOperationServer). Parent No	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.24	w3wp.exe (0x9398)	0x64CC	SharePoint Foundation	Claims Authentication	af3y9	Medium	STS Call Claims Saml: Successfully requested sign-in claim identity on behalf of user '0e.t|tfim sts|testdom\testuser'.	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.24	w3wp.exe (0x9398)	0x64CC	SharePoint Foundation	Monitoring	b4ly	Medium	Leaving Monitored Scope (ExecuteSecurityTokenServiceOperationServer). Execution Time=13.5159636210747	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.27	w3wp.exe (0x570C)	0x1174	SharePoint Foundation	DistributedCache	ad4i4	High	[Forced due to logging gap, cached @ 04/07/2014 17:07:35.27, Original Level: VerboseEx] Weak Reference Cache is enabled....	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.27	w3wp.exe (0x570C)	0x1174	SharePoint Foundation	Claims Authentication	af30k	High	[Forced due to logging gap, Original Level: Verbose] Token Cache: Added token to distributed cache.	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.27	w3wp.exe (0x570C)	0x1174	SharePoint Foundation	Authentication Authorization	agb9s	Medium	Non-OAuth request. IsAuthenticated=True, UserIdentityName=0e.t|tfim sts|testdom\testuser, ClaimsCount=12	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.28	w3wp.exe (0x570C)	0x1174	SharePoint Foundation	Logging Correlation Data	xmnv	Medium	Site=/	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	
04/07/2014 17:07:35.29	w3wp.exe (0x570C)	0x1174	SharePoint Foundation	Monitoring	b4ly	Medium	Leaving Monitored Scope (Request (POST:https://spsamltest.local:443/_trust/)). Execution Time=83.1725819901691	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	

Any ideas? 

This one here is interesting, but the IBM guide specifically calls out the realm format to be urn:<webserver>:domain-int

04/07/2014 17:07:35.21	w3wp.exe (0x570C)	0x1174	SharePoint Foundation	General	adyrv	High	Cannot find site lookup info for request Uri urn:spsamltest.local:domain-int.	05d3849c-ba3a-10e1-c9b8-27f75dd9a306	

We subsequently see:

04/07/2014 17:07:35.30	w3wp.exe (0x570C)	0x20E0	SharePoint Foundation	Logging Correlation Data	xmnv	Medium	Name=Request (GET:https://spsamltest.local:443/_layouts/15/Authenticate.aspx?Source=%2F)	05d3849c-9a40-10e1-c9b8-2d5a37c96753	
04/07/2014 17:07:35.30	w3wp.exe (0x570C)	0x20E0	SharePoint Foundation	Claims Authentication	ajrho	Monitorable	security token '0e.t|tfim sts|testdom\testuser281bb8ec5-fbe3-4490-b532-d9154e0d060d_Extranet' is found in the local cache, but it is expired. Returing Null..	05d3849c-9a40-10e1-c9b8-2d5a37c96753	
04/07/2014 17:07:35.31	w3wp.exe (0x570C)	0x20E0	SharePoint Foundation	Authentication Authorization	agb9s	Medium	Non-OAuth request. IsAuthenticated=False, UserIdentityName=, ClaimsCount=0	05d3849c-9a40-10e1-c9b8-2d5a37c96753	
04/07/2014 17:07:35.31	w3wp.exe (0x570C)	0x20E0	SharePoint Foundation	Logging Correlation Data	xmnv	Medium	Site=/	05d3849c-9a40-10e1-c9b8-2d5a37c96753	
04/07/2014 17:07:35.32	w3wp.exe (0x570C)	0x20E0	SharePoint Foundation	Monitoring	b4ly	Medium	Leaving Monitored Scope (Request (GET:https://spsamltest.local:443/_layouts/15/Authenticate.aspx?Source=%2F)). Execution Time=18.6356087156329	05d3849c-9a40-10e1-c9b8-2d5a37c96753	

We checked the clocks between the SharePoint and TIM server and it's aligned. I cannot work out why the token is apparently expired or how I can trace this problem.

Any ideas?

Restore farm backup to test server without disturbing production.

$
0
0

I've set up my single-server farm (Server 2012, SP 2013, SQL 2012) to run nightly farm backups, then copy them to a remote location.  I'd like to set up a test environment using one of these backups on a different VM.   Since the machine name will be different (i.e., test-sp.domain.org vs. sp.domain.org), is there any concern that a farm restore would not work?  Also, since the backup may have references to the production environment (e.g., database server names), is there any concern that a restore to a test box could interfere with production?  Is there any way to avoid these pitfalls, if they exist?

Thanks!


Configure-EnterprisePartnerApplication.ps1 401 Unauthorized

$
0
0

I'm setting up a partnership between Exchange 2013 and SharePoint 2013. All previous steps are complete without error until I get to Configure-EnterprisePartnerApplication.ps1. It runs all of the steps, creates the user and adds to groups but then errors with a 401 Unauthorized. I'm using "Configure-EnterprisePartnerApplication.ps1 -AuthMetaDataUrlhttp://sharepoint/_layouts/15/metadata/json/1 -ApplicationType SharePoint"    

SharePoint 2013 - 401 - Unauthorized: Access is denied due to invalid credentials.

$
0
0

I have a dev/lab environment with 4 virtual machines. I need to give my fellow developer access to my SharePoint 2013 demosite via IP-address (don't bother to ask why I'm using ip-adress. It's too complicated network setup to describe it here).

However i get this error when I try accessing the site using server IP 10.100.101.XX:80

<fieldset>

401 - Unauthorized: Access is denied due to invalid credentials.

You do not have permission to view this directory or page using the credentials that you supplied.

</fieldset>

I get same error locally and on other machines in the network when using IP.

Here's my setup: VMs: DC + SP2013-WFE + SQL2012 + Office Web App Server

SharePoint 2013 is RTM version. Web Application I'm trying to access is the default SharePoint - 80. I have DisableLoopbackCheck set. No alternate access mappings set so far. I can access the site on SharePoint 80 using the servernamehttp://devmachine  just fine. I tried same scenario on SharePoint 2010 version and using the server IP-adress and it worked fine. I've also tried different credentials. Only difference between SharePoint 2010 and 2013 setups I managed to find was the Authentication Method used by the default SharePoint - 80 web application. SharePoint 2010 default SharePoint - 80 Web Application usesClassic Mode Authenticaton. On 2013 server it is set as Claims Based Authentication.

I haven't played with Claims too much. Is it Claims Authentication that is preventing the access via IP or is it something else? Perhaps changes in SharePoint 2013 IIS websites? Please help me out with this problem!

Recurring error: SPReaderWriterLock named [CoauthTransitionTableUpdateFromCacheLock]

$
0
0
Every few seconds/milliseconds there is the following error in my SharePoint 2013 log.

What could be the reason for this error? Any ideas?

SharePoint 2013 (15.0.4505.1005) Windows Server 2012

Thank you in advance!

SPReaderWriterLock named [CoauthTransitionTableUpdateFromCacheLock] held for 3010 milliseconds. Call stack: at Microsoft.SharePoint.Utilities.SPReaderWriterLock.SPReaderWriterLockScope.Dispose() at Microsoft.SharePoint.Utilities.CoauthTransitionTable.IsDocIdInTransitionTable(Guid docId) at Microsoft.SharePoint.SoapServer.SharedAccessImpl.IsOnlyClient(Guid id) at Microsoft.SharePoint.SoapServer.SharedAccess.IsOnlyClient(Guid id) at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture)
    at System.Web.Services.Protocols.LogicalMethodInfo.Invoke(Object target, Object[] values) at System.Web.Services.Protocols.WebServiceHandler.Invoke() at System.Web.Services.Protocols.WebServiceHandler.CoreProcessRequest()
    at System.Web.Services.Protocols.SyncSessionlessHandler.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)


powershell Set-SPTrustedIdentityTokenIssuer error

$
0
0

I am getting this error when executing the powershell command.  Can someone assist with this?

PS  Set-SPTrustedIdentityTokenIssuer "COMPANYADFS" -SignInUrl "signinURL"

Set-SPTrustedIdentityTokenIssuer : Parameter set cannot be resolved using the

specified named parameters.

At line:1 char:1

+ Set-SPTrustedIdentityTokenIssuer "ADFS2" -SignInUrl

"https://servername/adf ...

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

~~~

    + CategoryInfo          : InvalidArgument: (:) [Set-SPTrustedIdentityToken

   Issuer], ParameterBindingException

    + FullyQualifiedErrorId : AmbiguousParameterSet,Microsoft.SharePoint.Power

   Shell.SPCmdletSetSPIdentityProvider



How does one reconcile "No AD not supported" with "AD not supported"?

$
0
0

I have 2 partially broken standalone VMs with opposite problems.  

One has AD and no working Machine Translation Service.  The answer here is that  "Running Machine Translation on a SharePoint server that has or did have Active Directory is not supported and will not work"

The other has no AD and a broken Search service, with the infamous "cacheHostInfo is null" problem.  The answer here is "Can you deploy Active Directory as installing without is not a supported installation scenario"

Is there a supported way to get both Machine Translation and Search (which requires Distributed Cache) services at the same time on a standalone VM?

Viewing all 21070 articles
Browse latest View live


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