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

Configuration · Changes

Page history
Copy documentation from codeplex archive authored Apr 25, 2018 by Laurent Sittler's avatar Laurent Sittler
Hide whitespace changes
Inline Side-by-side
Showing with 48 additions and 0 deletions
+48 -0
  • Configuration.md Configuration.md +48 -0
  • No files found.
Configuration.md 0 → 100755
View page @ aeede9ac
## 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<br />>
Manage Web Applications -> Select web application -> Authentication Providers -> Select zone (Default)<br />
Scroll down to **Sign In Page URL** <br />
Select Custom Sign In Page <br />
Enter _login/autosignin.aspx
![Configure sign in page](Configuration_signinpage.png)
Clone repository
  • Background
  • Build
  • Configuration
  • Deployment
  • Features
  • Home
  • setupIE