Login SharePoint 2013 without entering domain

In my case, SharePoint and client machine is different domain.Has any way allow SharePoint 2013 log in without entering domain?
I found that IIS 6 has a option for Basie authentication and set up default domain, is it suitable for new version IIS and SP13?
Ref: https://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/c2cfb57c-a574-4a7b-b91b-49fddb9ad4c8.mspx?mfr=true
Thanks.

http://social.technet.microsoft.com/Forums/office/en-US/2230e7bb-e880-4ab8-9db9-c11ea016c484/login-without-entering-domain?forum=sharepointadminlegacy
If I am not mistaken IIS 6.0 has a default domain name setting, but please verify..
This is *incorrect* for SharePoint sites.
There the server name is always assumed as the "domain".
So writing in only username would work fine if username is a local user on the server where the SharePoint system is running but not otherwise.
Instead of bothering about needing to write domain name in addition to username, the problem should be avoided altogether by
a) making sure that the site is in the Intranet Security Zone for IE 6 / 7 and that the default value of "automatic login only in the Intranet zone" is still selected.
OR
b) if the site isn't in the Intranet, by specifying for the IE Security zone that it is in that Login is "automatic login using current name and password".
The way we've done this is to configure ONLY Basic Authentication in the IIS site and then add the domain to the Default domain text box.  This works fine, but unfortunately sends a user's credentials in clear text.  To prevent this, we used a
self-signed SSL cert to keep traffic encrypted even though its using Basic Authentication.
Of course you may want to experiment with using both Integrated Windows and Basic Authentication and possibly get a mixture of both behaviors
If this helped you resolve your issue, please mark it Answered

Similar Messages

  • Accessing Sharepoint 2013 externally for domain users and customers

    Just an FYI I am not a SP administrator by any means but have be tasked with taking over this project and could use some assistance.
    Sharepoint 2013 is working fine internally. Users access the site and login with their domain credentials. Our client is moving one of their departments to another building down the street and we'd like them to be able to access local resources without the
    use of another server or site to site vpn or standard vpn. 
    My question is, how do we make Sharepoint accessible outside of their local network? 
    If we open up a port on the router and have it forward all request to Sharepoint server will we be able to access it?
    Also, how will they authenticating with the Sharepoint Server? Do they use the same user credentials?
    I forgot to mention this is Sharepoint 2013 Enterprise Edition. We are also using Project Server 2013 as well.
    Thanks in Advance

    Hi 3s1k,
    According to your description, my understanding is that you want to access the SharePoint site from Internet.
    You need to first ensure that you enable Anonymous Access for your web application. You'll then need to set up DNS for the domain you own to point to your web front end server (or virtual IP if it's load balanced). Then set up the appropraite IIS bindings
    for the web application, and finally you'll need to extend your web application to an Internet Zone and give it the appropriate domain name.
    There are some similar posts for your reference:
    https://social.technet.microsoft.com/Forums/en-US/2277d710-ed05-4613-bd66-fd12e4d64b61/sharepoint-intranet-site?forum=sharepointadminprevious
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/fd968a08-393b-41c0-a916-c48ce0f83104/configure-sharepoint-2013-for-accessing-over-internet?forum=sharepointadmin
    http://sharepoint.stackexchange.com/questions/54315/sharepoint-2013-extranet-acces-outside-the-internal-network
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • SharePoint 2013 multi App domain issues

    Hello,
    All urls on purpose have a space character, this is because the forum didn't let me enter URLs.
    We have a problem with the new feature of SharePoint 2013 March PU “New-SPWebApplicationAppDomain”.
    We are implementing this feature for a client in Windows Azure. This lead to several technical issues to overcome and in previous LAB tests it seems that we have overcome these problems, using named binding instead of wildcard, and SNI.
    Goal:
    1 Webapplication with three zones:
    Default zone: https: //portal-ntlm.contoso.com
    Intranet zone: https: //portal-adfs.contoso.com
    Extranet zone: https: //portal-fba.contoso.com
    Default zone in NTLM of course is to make Search work.
    With the new feature described in http ://technet.microsoft.com/en-us/library/dn144963.aspx we should be able to get App Domains working on all three (or at least two out of three zones).
    In my LAB (Single server farm, running SP2013 SP1) I currently configured two zones, both NTLM to test the basics.
    Default zone: https: //portal.contoso.com Intranet zone: https: //portal-ta.contoso.com
    I have enabled the feature using these commands:
    $contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
    $contentService.SupportMultipleAppDomains = $true
    $contentService.Update()
    Iisreset
    Then I do this:
    New-SPWebApplicationAppDomain -AppDomain app1.fabrikam.com -WebApplication https: //portal.contoso.com -zone default -port 443 –SecureSocketsLayer       (This command works)
    and then:
    New-SPWebApplicationAppDomain -AppDomain app2.fabrikam.com -WebApplication https: //portal-ta.contoso.com -zone intranet -port 443 –SecureSocketsLayer   (This one doesn’t)
    Then we get this powershell error in RED:
    New-SPWebApplicationAppDomain : The IIS Web Site you have selected is in use
    by SharePoint.  You must select another port or hostname.
    At line:1 char:1
    + New-SPWebApplicationAppDomain -AppDomain apps2-ta.talentenik.nl
    -WebApplication  ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidData: (Microsoft.Share...cationAppDomain:
       SPCmdletNewWebApplicationAppDomain) [New-SPWebApplicationAppDomain], Argum
      entException
        + FullyQualifiedErrorId : Microsoft.SharePoint.Administration.SPAppCmdlets
       .SPCmdletNewWebApplicationAppDomain
    Extra info:
    I have tried using a single IP, multi IP, remove current IIS Binding, add the binding already etc. Nothing seems to work.
    When I change the PORT number of the second command to anything else it binds to the expected IIS Site but on the wrong port nr.
    The most strange thing also: I have a working set of VMs that actually works. I created a snapshot of the working situation. Reverted back to the before snapshot and tried to replay my steps but I keep running into issues when I try to add the second app-domain.
    Can anyone help me set this up.
    Thx
    Stefan Peters
                       

    I was in the same situation with my on-premises environment. I did a little bit more investigation and checked the code behind New-SPWebApplicationAppDomain. I wrote a full article about this issue
    http://www.vioreliftode.com/index.php/new-spwebapplicationappdomain-the-iis-web-site-you-have-selected-is-in-use-by-sharepoint-you-must-select-another-port-or-hostname/
    I also provided a way to bypass the limitation and be able to reuse the 80 and 443 ports for multiple app domains.

  • OSX Yosemite Safari login SharePoint 2013 by SSL

    Experts,
      Our company's SharePoint 2013 has set to https://, in intranet, I can use Macbook Pro Safari to login website and run BI very smoothly. but in home, I can't open the website. very strange is I can use iPad safari in home to login website by https
    without VPN. does any expert can help ?
    Thanks
    James Liang

    I fixed, original I set the SharePoint 2013 IP address in /private/etc/hosts, after delete. it's working.
    Thanks

  • CONNECT ORACLE11g database in sharepoint 2013 without using metaman or any third party tool

    Hi!
              I want to access ORACLE db and bring it as an external list  in SharePoint 2013. How can it be achieved without using third party tools? So far i referred Creating
    web service, .Net connectivity assembly or crafting the BCS xml model file manually are the techniques that can be employed to achieve. Can anyone share the code to create External content type and External list by adopting any one of the techniques.
    Thanks in advance.

    Hi,
    To connect SharePoint to your Oracle Database, you should use the BCS.
    You will find here what is the structure of the XML File to create to access your Oracle DB.
    http://msdn.microsoft.com/en-us/library/office/ff464424(v=office.14).aspx
    Once you finished your BDCM, you will be able to import it with the following mehod :
    http://www.manula.com/manuals/lightning-tools/bcs-meta-man-for-windows/1/en/topic/importing-the-bdc-model-into-sharepoint
    The last step will be to create your external list from your BDCM.
    http://msdn.microsoft.com/en-us/library/office/ee558778(v=office.14).aspx
    Best Regards,
    Frederic
    Please remember to click "Mark As Answer" if a post solves your problem or "Vote As Helpful" if it was useful.

  • Document Preview in SharePoint 2013 without office webapps

    Hi,
    A friend of mine was asking if there is an option OOB or any third party which would provide the option to preview the document in the document library without Office webapps, (His client has SharePoint 2013)
    Any suggestions are appreciated....!
    Satyam...

    The same question posted here - go through the thread 
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/38794517-2eeb-46df-b781-77e634c69b1b/third-party-tool-for-document-preview-in-sharepoint-2013?forum=sharepointadmin#a0310766-399b-4f66-a762-e6394b1770e0
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • How to create a App domain in sharepoint 2013 without using DNS Manger

    Can we create  AppDomain for Sharepoint Hosted App without using DNS Manager ? In short I have to create App Domain for my local sharepoint environment.

    You cannot create a APPdomain without DNS manager. 
    You can install DNS role on a machine and update your sharepoint server's DNS to consume from this DNS server. APPdomain cannot work without DNS

  • I have migrated a user's mysite in sharepoint 2013 from one domain to another.The issue is that old activtiy data i.e newsfeed data is not seen

    For eg :
    I had a user called domain1\user1 whose mysite was created as http://my/personal/user1.
    Now this user moves to another domain say domain2\user1.Since mysite is already present no new mysite will be created.
    Move-SPUser –Identity "domain1\user1" –NewAlias "domain2\user1"After executing the above query,user is migrated and is able to login to the mysite.But the newsfeed data is not seen.I can see it in the microfeed list but not in the newsfeed page.All other data like documents ,tags,people etc is present
    harsh damania

    it should move all the profile data alonwith, i would check the ULS logs for any clue.
    also make sure following timer jobs ran successfully
    User Profile service application name - User Profile to SharePoint Quick Synchronization
    User Profile service application name - Feed Cache Repopulation
    User Profile service application name - Activity Feed Job
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How to create different Graphs in SharePoint 2013 without using Excel service?

    Hi All,
    I want to create different graphs in SharePoint without using Excel Service.
    I do not want to create excel and then upload that to SharePoint.
    Any one knows how to do that? Isthere any option to do that?
    Thanks in Advance

    Hi Darsh,
    You can use
    SharePoint chart webpart to display charts. Or you can use any jQuery charting library and feed data using JSOM or REST. Ex. high charts:
    http://www.highcharts.com/products/highcharts
    http://office.microsoft.com/en-us/sharepoint-server-help/sharepoint-lists-vi-exciting-ways-to-display-your-list-data-RZ102425636.aspx?section=3
    Best Regards,
    Brij K

  • Office 365 - SharePoint 2013 Online - App Domain

    I have noticed that Microsoft itself using the same domain for app.
    example :
    hosting URL (office 365) : http://*.sharepoint.com
    App domain : http://*.sharepoint.com
    According to TechNet: "You must configure a new name in Domain Name Services (DNS) to host the apps. To help improve security, the domain name should not be a subdomain of the domain that hosts the SharePoint sites. "
    http://technet.microsoft.com/en-us/library/fp161236%28v=office.15%29.aspx
    my second question is that how app will work for vanity urls (host-named site collections)
    like...  https://portal.domainA.com,  https://share.domainB.com and so on...
    thanks.
    ja

    firstly on-premise bits can also be used to offer multi tenancy. 
    Inder : Yes it can be used for multi tenancy but it is rarely used. Which is why they share same service application and other settings. where in case of multi tenancy, security is taken into consideration and all service application are created in partitioned
    mode. this helps not to share data between sites and security is maintained. 
    second part of your comments not much clearer..
    below mentioned sites exists on the same web app.
    1. site collection url : https://test.domain.com   app url will be https://test-629dbe9907ec81.domain.com/app-name
    Inder: There will always be one URL for app which will be used by all web applications and host header site collection.
    Your app URL will be app.domain.com which will be used for all web application\site collections http://123.domain.com, http://456.domain.com, http://newdomain.com,
    http://anothernewdomain.com 
    2. site collection url  : https://portal.test.com app url ?  and where to configure that.
    Inder: This app.domain.com URL does work for https sites. :)
    means unlimited app domains in SharePoint. or we are bound to use single domain for all?
    Inder: Yes, single domain for app apps

  • Sharepoint 2013 in hosted domain and visibility of user accounts

    Hi,
    we have an AD domain we use in combination with exchange and website panel for multiple customers.
    Now 1 of these customers needs a sharepoint site. This sharepoint installation will run specifically for them so managing it through website panel isn't desirable.
    Basically we're looking for a way to limit the users' visibility of other customers users accounts in the same AD. Can this be done? In exchange they do it through custom address lists and that kind of stuff. Can the same be done with sharepoint. If possible
    we would like them to be unable to see groups/users that aren't part of their OU (it's fine if they see OU's below their own OU though).
    I've been searching a bit but probably with the wrong terminology as there's little I find.
    Any pointers would be great.
    TIA

    Hi  TIA ,
    According to your description, my understanding is that you want to create a SharePoint site which will run specifically for a group users. For this demand, you can create a new unique permission site and
    add the group into Site Member.
    For hiding the membership of the group, go to your site collection->site settings->site permissions->go into these groups you want to hide  for your users->settings -> group settings,
    set “Who can view the membership of the group” to Group Members.
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • Convert TEXT or HTML to PDF in SharePoint 2013 Without Third Party tool

    Dear All,
    I want to convert the HTML content or TEXT or SharePoint list item to PDF file.
    Scenario.
    1) There will be a form where student will submit the Feedback / survey (custom survey , it's kind of objective question;s).
    2) Then the Feedback / survey result should be sent in the PDF Format by email  to the student once user submitted.
    Without third party tool.
    Please it's bit urgent ,
    Thanks in Advance.
    --Murthy

    Hi,
    Here is blog with the source code for your reference, you can refer the source code to customize your own solution to achieve your requirement.
    http://www.codeproject.com/Articles/28050/Generate-PDF-Using-C
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Provision Search in SharePoint Foundation 2013 without Domain Controller / Active Directory - Domain accounts

    Hi,
    I have successfully setup SharePoint Foundation 2013 as single server farm with SQL Server Standard database in a DMZ environment using local accounts since DMZ doesn't have an Active Directory and hence Domain accounts using powershell as described
    in https://theblobfarm.wordpress.com/2012/12/03/installing-sharepoint-2013-without-a-domain-controller 
    When I run Farm configuration wizard to provision search service application, I get an error:
    ERROR: "The service application(s) for the service "Search Service Application" could not be provisioned because of the following error: I/O error occurred."
    The log file logged the details of this error as:
    ERROR: "Failed to create file share Analytics_e441aa1c-1a8d-4f0a-a079-58b499eb4c50 at D:\SharePoint Search\Office Server\Analytics_e441aa1c-1a8d-4f0a-a079-58b499eb4c50 (System.ArgumentException: The SDDL string contains an invalid sid or a sid
    that cannot be translated."
    After investigation, I found that potentially the error could be because the timer service is trying to setup a network share for analytics component (as part of provisioning search). It is trying to setup that share with a domain account that happens to
    be a local user instead in this case and fails with error “System.ArgumentException: The SDDL string contains an invalid sid or a sid that cannot be translated”.
    I got some pointer from the below thread
    https://social.technet.microsoft.com/Forums/en-US/c8e93984-f4e5-46da-8e8a-c5c79ea1ff62/error-creating-search-service-application-on-sharepoint-foundation-with-local-account?forum=sharepointadmin
    However, the above thread doesn't state that the solution worked.
    I have tried creating share manually for Analytics_<Guid> folder but it doesn't work since every time farm configuration wizards is run it creates a new Analytics_<Guid> folder.
    Since, I have setup SharePoint Foundation 2013 on a production environment I cannot test and trial various solutions.
    Can some please guide me on how to successfully provision search for SharePoint Foundation 2013 setup as a single server farm with SQL Server Standard database in a DMZ environment using local accounts (without Active Directory - domain accounts).
    Thanks in advance.
    Himanshu

    Microsoft documentation doesn't always specifically call out all products (Project Server isn't there, either). But it does apply. You'll need to stand up at least one Domain Controller, or allow port access back to a DC.
    Preferably, set up SharePoint on the internal network and use a reverse proxy (which will terminate client connections at the reverse proxy) present in the DMZ.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Migrating from Moss 2007 to SharePoint 2013

    I am reaching out here as we require some inputs around migrating the SharePoint based application from MOSS 2007 to 2013.Please find more details from below
    Requirement:
    Migrating SharePoint site collection (which contains just 1 Top level site and 2 libraries with in it and no item level/library level permissions exists) which is on MOSS 2007 with size of 500GB to SharePoint 2013, hence we like to know your inputs in related
    to this
    Note:
    1) The site collection has its own separate content database
    2) There are nearly 200 thousand documents where the document with higher version is 90
    3) The documents are stored in the libraries with up to third level of folder structure
    4) The site collection is created based on custom site definition (created using visual studio)
    Few things that I like to mention/ask here
    a) Having 500GB data in one single content database inj the MOSS 2007 environment does it impacts the site performance?
    b) Migrating the site collection as is  onto single content database (all 500 GB into one content database) into destination SharePoint 2013, does it will be a good practice? Hope SharePoint 2013 content database limit is 200 GB, hence moving 500GB
    as is into one database will it be good practice?
    c) Does database attach and detach works for the databases which are of size 500GB?
    d) Can we do database attach and detach directly from MOSS 2007 to directly onto SharePoint 2013, without hopping onto SharePoint 2010 in between and then later to SharePoint 2013?
    e) If moving 500GB data into one content database will not be a good approach, can we split it onto multiple databases?
    f) If database attach and detach doesn’t help for databases which are of size 500GB, should we go for any tool based approach? If yes, which tool does best fit?

    a) Having 500GB data in one single content database inj the MOSS 2007 environment does it impacts
    the site performance?
    Inder: Yes, it will impact site performance at large extended, recommended is 200 gb only. Check it IO of your disk to analyze performance issue
    b) Migrating the site collection as is  onto single content database (all 500 GB into one content
    database) into destination SharePoint 2013, does it will be a good practice? Hope SharePoint 2013 content database limit is 200 GB, hence moving 500GB as is into one database will it be good practice?
    Inder: 
    Content database size (all usage scenarios)
    4 TB per content database
    Supported
    Content databases of up to 4 TB are supported when the following requirements are met:
    Disk sub-system performance of 0.25 IOPs per GB. 2 IOPs per GB is recommended for optimal performance.
    You must have developed plans for high availability, disaster recovery, future capacity, and performance testing.
    http://technet.microsoft.com/en-us/library/cc262787%28v=office.15%29.aspx#ContentDB
    c) Does database attach and detach works for the databases which are of size 500GB?
    Inder: Yes it does work
    d) Can we do database attach and detach directly from MOSS 2007 to directly onto SharePoint 2013, without
    hopping onto SharePoint 2010 in between and then later to SharePoint 2013?
    Inder: No, you need to pass through 2010 and then 2013
    e) If moving 500GB data into one content database will not be a good approach, can we split it onto
    multiple databases?
    Inder: you can go with 500 gb
    f) If database attach and detach doesn’t help for databases which are of size 500GB, should we go for
    any tool based approach? If yes, which tool does best fit
    Inder: Below are few tools you can try
    http://www.metalogix.com/Products/Content-Matrix.aspx
    http://en.share-gate.com/
    http://www.avepoint.com/sharepoint-migration-tools/
    http://www.quest.com/sharepoint/migration.aspx
    If this helped you resolve your issue, please mark it Answered

  • SharePoint 2013 dev environment as standalone with DC - PowerShell in Azure?

    Hi,
    I am looking for a PowerShell script that create based on a Visual Studio 2013 Azure image a dev environment in azure. I need a Standalone server with DC / SQL / SharePoint 2013 on one server.
    Provide Microsoft a script for this requirement?
    Regards,

    First off, Microsoft does not support SharePoint 2013 on a Domain Controller. Here are some scripting resources, however:
    http://msdn.microsoft.com/en-us/library/windowsazure/dn385843.aspx
    https://github.com/WindowsAzure/azure-sdk-tools-samples/wiki/Automated-Deployment-of-SharePoint-2013-with-Windows-Azure-PowerShell
    http://blogs.msdn.com/b/windowsazure/archive/2013/05/24/automating-sharepoint-deployments-in-windows-azure-using-powershell.aspx
    http://blog.appliedis.com/2013/04/29/automating-sharepoint-2013-installation-on-windows-azure-iaas/
    http://absolute-sharepoint.com/2013/10/create-a-scripted-sharepoint-2013-development-environment-tutorial-part-1.html
    Trevor Seward, MCC
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • Is it possible to install a HD-DVD drive on a Satellite P20

    Hi Everyone Is it possible to install a HD-DVD drive on my P20? My screen has died, so I'm going to use this machine as a dedicated Media Centre attached to my TV. If I can install a HD-DVD drive it would help a lot. Regards Richard

  • Unable to see OC4J Instances in ascontrol -- Urgent

    Hi Iam not able to see the OC4J instances running in ascontrol. They are shown in default group as running. adopmnctl status shows the below status as alive. --------------------------------------------------------------+--------- ias-component | pro

  • Unable to install CS5.5 Master Collection

    I have a Black MacBook 2008 (2.4GHz Intel Core Duo 2, 4Gb Ram, 667Mhz) that has had the CS5 Design Collection running well. I purchased the CS5.5 upgrade to the Master Collection but when I try to install the software I get an error saying the instal

  • Compressor Not Working

    I purchased DVD Studio Pro 4 (upgrade from 3) when it was a stand alone application.  It is installed on my G5 computer running Tiger and FCE.  I acquired a new Intel iMac running the most recent version of Snow Leopard and I installed DVD Studio Pro

  • Oracle 10G DB and HP XP24000

    We are using oracle 10G DB for our Banking application, can anybody advise what is the oracle recomended Raid configuration in XP24000. If any best practice document pls attache the link.