Ran in to a project today where I had to revisit the old LDAP query. Here are some useful links: LDAP Query Basics https://technet.microsoft.com/en-us/library/aa996205%28EXCHG.65%29.aspx · Doing a Search Using Active Directory Users and Computers Doing a Search Using LDP Doing a Search Using LDIFDE Using LDAP Queries in ADModify Search Filter Syntaxhttp://msdn2.microsoft.com/en-us/library/aa746475.aspx Famous LDAP Filters…
There is a Nuget library called CredentialManagement that wraps the Windows Credential Management API that supports both the old and the new style of UI http://nuget.org/packages/CredentialManagement/ works perfectly var cm = new Credential(); cm.Target = "mycredentialname"; if (!cm.Exists()) { Console.WriteLine("cm is null"); } cm.Load(); Console.WriteLine("Password: " + cm.Password); Console.WriteLine("Username: " + cm.Username);
IE11 with Windows 8.1 refs: https://msdn.microsoft.com/en-us/library/dn455115%28v=vs.85%29.aspx Create live tiles for your websites in IE11 http://www.buildmypinnedsite.com/en Web application that generates your manifest for IE11 IOS devices iOS design cheat sheet http://ivomynttinen.com/blog/the-ios-7-design-cheat-sheet/ more design guidelines here: http://iosdesign.ivomynttinen.com/ http://cubiq.org/add-to-home-screen Add To Homescreen is a free, open source javascript software. It is released under…
The following table lists the locales/languages with an assigned Locale ID (LCID). Helpful in development of solutions in multilingual environments. Language Country/Region Locale ID Afrikaans South Africa 1078 Albanian Albania 1052 Arabic Algeria 5121 Arabic Bahrain 15361 Arabic Egypt 3073 Arabic Iraq 2049 Arabic Jordan 11265 Arabic Kuwait 13313 Arabic Lebanon 12289 Arabic Libya 4097…
When compiling a project in Visual Studio, I got the error message “the exec task needs a command to execute” , with no line number or anything. Solution Check the “build Events” in the project properties. The error is caused by a newline character in the pre or post build text fields. This applies to…
To create the asp.net membership database, please follow the steps below. Find the setup file aspnet_regsql.exe located at either of the following locations depending upon your OS:%windir%\Microsoft.NET\Framework\v2.0.5027%windir%\Microsoft.NET\Framework64\v2.0.5027 When the ASP.NET SQL Server Setup Wizard appears, select “Configure SQL Server for application services”, then click Next Enter the SQL Server and Database name. Click…