├── .gitignore ├── Credential_Provider_Technical_Reference.pdf ├── Credential_Provider_Technical_Reference.xps ├── Interop ├── CoreRuleEngine.dll ├── CredentialProvider.Interop.dll ├── TlbImp2.exe ├── TlbImpRuleEngine.dll └── TypeLibTypes.Interop.dll ├── InteropExport.md ├── LICENSE ├── TestConsoleApp ├── App.config ├── CredentialsDialog.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── TestConsoleApp.csproj └── app.manifest ├── WindowsCredentialProviderTest ├── Constants.cs ├── HResultValues.cs ├── ITestWindowsCredentialProvider.cs ├── ITestWindowsCredentialProviderTile.cs ├── Log.cs ├── OnDemandLogon │ └── TimerOnDemandLogon.cs ├── PInvoke.cs ├── Properties │ └── AssemblyInfo.cs ├── TestWindowsCredentialProvider.cs ├── TestWindowsCredentialProviderTile.cs └── WindowsCredentialProviderTest.csproj ├── WindowsCredentialsProvider.sln ├── readme.md └── register-credentials-provider.reg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /Credential_Provider_Technical_Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/Credential_Provider_Technical_Reference.pdf -------------------------------------------------------------------------------- /Credential_Provider_Technical_Reference.xps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/Credential_Provider_Technical_Reference.xps -------------------------------------------------------------------------------- /Interop/CoreRuleEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/Interop/CoreRuleEngine.dll -------------------------------------------------------------------------------- /Interop/CredentialProvider.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/Interop/CredentialProvider.Interop.dll -------------------------------------------------------------------------------- /Interop/TlbImp2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/Interop/TlbImp2.exe -------------------------------------------------------------------------------- /Interop/TlbImpRuleEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/Interop/TlbImpRuleEngine.dll -------------------------------------------------------------------------------- /Interop/TypeLibTypes.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/Interop/TypeLibTypes.Interop.dll -------------------------------------------------------------------------------- /InteropExport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/InteropExport.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /TestConsoleApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/TestConsoleApp/App.config -------------------------------------------------------------------------------- /TestConsoleApp/CredentialsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/TestConsoleApp/CredentialsDialog.cs -------------------------------------------------------------------------------- /TestConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/TestConsoleApp/Program.cs -------------------------------------------------------------------------------- /TestConsoleApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/TestConsoleApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TestConsoleApp/TestConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/TestConsoleApp/TestConsoleApp.csproj -------------------------------------------------------------------------------- /TestConsoleApp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/TestConsoleApp/app.manifest -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/Constants.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/HResultValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/HResultValues.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/ITestWindowsCredentialProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/ITestWindowsCredentialProvider.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/ITestWindowsCredentialProviderTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/ITestWindowsCredentialProviderTile.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/Log.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/OnDemandLogon/TimerOnDemandLogon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/OnDemandLogon/TimerOnDemandLogon.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/PInvoke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/PInvoke.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/TestWindowsCredentialProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/TestWindowsCredentialProvider.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/TestWindowsCredentialProviderTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/TestWindowsCredentialProviderTile.cs -------------------------------------------------------------------------------- /WindowsCredentialProviderTest/WindowsCredentialProviderTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialProviderTest/WindowsCredentialProviderTest.csproj -------------------------------------------------------------------------------- /WindowsCredentialsProvider.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/WindowsCredentialsProvider.sln -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/readme.md -------------------------------------------------------------------------------- /register-credentials-provider.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phaetto/windows-credentials-provider/HEAD/register-credentials-provider.reg --------------------------------------------------------------------------------