Questions tagged [windows-authentication]

Windows authentication (or Integrated Windows Authentication) is a process where connections to applications or external systems are automatically authenticated with the currently logged on Windows user. This functionality was first made available in Windows 2000.

Windows authentication (or Integrated Windows Authentication) is a process where connections to applications or external systems are automatically authenticated with the currently logged on Windows user. This functionality was first made available in Windows 2000.

IWA is not actually a standard or authentication protocol, but is a process that relies on the underlying authentication protocols used by Windows and an application that is aware of them to transparently pass authentication information along to the requesting server or service.

There is a brief summary of IWA/WA on Wikipedia, here.

289 questions
2
votes
2 answers

Is it possible to store a credential for Windows Authentication to an Analysis Services server?

SQL Server Analysis Services uses Windows authentication for server connections. Typically, you assign your domain account to a role (or the server administrator list), and then connect to the server from a user session using the same domain…
2
votes
1 answer

Can I give an application pool access to a remote share without an active directory domain?

I have an IIS application running on Server A. It needs the ability to write to a folder on a UNC share, currently on Server B. I would like to keep the share on Server B, but this environment does not have a Windows Active Directory domain -- up…
2
votes
1 answer

Invoke Windows password dialog when using NET USE

I'll try to get to the point. Using Run from the start menu to an un-authenticated machine: \\hostname\share gives me the Windows prompt for password, good. Running %systemroot%\explorer.exe "\\hostname\share" against the same un-authenticated…
DanBig
  • 11,393
  • 1
  • 28
  • 53
2
votes
2 answers

Only one user unable to authenticate against AD using Windows Authentication on a .NET 4.0 web application on iis7

We are having a problem where one user is unable to authenticate using Windows Authentication. The site is configured to allow "All Users" to access the website and I have confirmed that this user is a member of the "Domain Users" group in AD.…
Chronos
  • 33
  • 1
  • 5
2
votes
2 answers

Login to disconnected domain controller

I cannot login to a long-time disconnected domain controller running Server 2008 R2. I have tried resetting the "local" Administrator password using the following method, but still cannot…
Ash
  • 448
  • 2
  • 9
  • 31
2
votes
1 answer

Improving Windows Authentication performance on IIS

We're struggling with performance issues with a ASP.NET MVC site that is using Windows Authentication. Response time is very slow on the first request to the site when the user is being authenticated. Further, every time the Authorization header…
flalar
  • 200
  • 1
  • 12
2
votes
1 answer

Enable IIS directory browsing for specific user or group

At home, I have a small server running on Windows Server 2012 and IIS8 (no AD). I want some of the users on my server to be able to access a shared file directory so they can download it via https. I created a website in the IIS manager, set the…
2
votes
1 answer

How to enable windows Authentication in IIS 7.5?

i need to enable Windows Autenthication for a specific website on IIS 7.5 If I open "Autenthication" I just see 3 options: Anonymous Based on Form ASP.NET Representation (3 above translated by me, I have italian IIS) I've been told that I should see…
user193655
  • 253
  • 1
  • 5
  • 17
2
votes
1 answer

Windows authentication vs Android browsers in Windows Server 2008 r2 IIS7

I have a company website which uses Windows Authentication. The site runs on Windows Server 2008 R2, IIS 7. When we try to access it from mobile, we get mixed results - some browsers do succeed to login, some do not even show the login window, and…
alex440
  • 213
  • 1
  • 3
  • 9
2
votes
1 answer

How can there be a difference between "Log on as: Local System account" and "NT Authority\System"?

First off, I wish to clarify that I have been browsing loads of questions regarding the "Local System" account and even though I feel enlightened about the properties of the account, none of them seem to explain my scenario. I am deploying a service…
2
votes
1 answer

Powershell - how to Start-Job with an ActiveDirectory credential

My client controls access to their database with ActiveDirectory. I would like to do the following: $cred = Get-Credential Start-Job -Credential $cred { #do some stuff with the db } This works fine for any local user but when on the vpn and…
2
votes
1 answer

How do I log in, using SSPI, to SQL Server 2008 R2 on a server in one workgroup from a workstation in another?

We're having trouble connecting to our SQL Server (2008 R2) via SSPI. Our team has recently moved from a domain-based setup to a decentralised workgroup-based setup. Each developer has access to a VPN which, in turn gives them access to a database…
abitgone
  • 1,313
  • 1
  • 11
  • 14
2
votes
1 answer

Under which circumstances can a *local* user account access a remote SQL Server with a trusted connection?

One of our customers has the following configuration: On the domain controller, there's an SQL Server. On his PC (WinXP), he logs on with LocalPC\LocalUser. In Windows Explorer, he opens DomainController\SomeShare and authenticates as…
Heinzi
  • 2,138
  • 5
  • 30
  • 51
2
votes
1 answer

Windows Service and Group Policy unable to access network share on Win2008 Domain

I have one computer on my domain that has suddenly stopped receiving software updates via group policy. Domain logins still work, and group policy on the machine is still being updated, so it knows that there are new packages to install and where…
2
votes
4 answers

IIS Windows Authentication except for local machine

I have a PHP site (Default Web Site) and an ASP.NET site (application under the Default Web Site) running together. I have set up Windows Authentication for the Default Web Site and it's fine. The problem is my ASP.NET application creates a web…
DaveO
  • 175
  • 1
  • 5
  • 16