Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • S SharePoint Automatic Signin
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 49
    • Issues 49
    • List
    • Boards
    • Service Desk
    • Milestones
  • Deployments
    • Deployments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Infrastructure Registry
  • Analytics
    • Analytics
    • Repository
    • Value stream
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • CodePlex
  • SharePoint Automatic Signin
  • Wiki
  • Configuration

Last edited by Laurent Sittler Apr 25, 2018
Page history

Configuration

Mapping configuration

In the SharePoint 2010 Management Console

First load the custom Powershell snapin

Add-PSSnapin ClaimsSignInAdmin

Create a configuration object. Note: the url is the url of your web application

$config = Get-SPSignInConfiguration -webapplication "http://www.website.com"

Managing the mappings

View all mappings

$config.ProviderMappings

Add a mapping

$config.ProviderMappings.Add("192.168.20.*","Windows Authentication")
$config.Update()

Remove a mapping

$config.ProviderMappings.Remove("192.168.20.*")
$config.Update()

Clear all mappings

$config.ProviderMappings.Clear()
$config.Update()

Example: configure 192.168.0.* to use Windows authentication for the web application https://intranet.litwareinc.com

Add-PSSnapin ClaimsSignInAdmin
$config = Get-SPSignInConfiguration -webapplication "https://intranet.litwareinc.com"
$config.ProviderMappings.Add("192.168.20.*","Windows Authentication")
$config.Update()

Configure the sign in page

In the SharePoint 2010 Central Administration
> Manage Web Applications -> Select web application -> Authentication Providers -> Select zone (Default)
Scroll down to Sign In Page URL
Select Custom Sign In Page
Enter _login/autosignin.aspx

Configuration_signinpage

Clone repository
  • Background
  • Build
  • Configuration
  • Deployment
  • Features
  • Home
  • setupIE