By default the common language runtime (CLR) integration feature is turned off. If it is turned off, SQL server won’t be able to access the custom assemlies that are part of your database (if the database contains objects that are coded to use CLR integration). CLRmust be enabled in order to use objects that are […]
Category: Windows
Kentico, unable to update/modify and save Master page
Find the following line in your web.config file : <httpRuntime maxRequestLength=”2097151″ waitChangeNotification=”1″ maxWaitChangeNotification=”3600″ /> Change it to: <httpRuntime requestValidationMode=”2.0″ maxRequestLength=”2097151″ waitChangeNotification=”1″ maxWaitChangeNotification=”3600″ /> Request Validation Mode property gets or sets a version number that indicates which ASP.NET version-specific approach to validation will be used. Let me know if it works for you..!!
How to Use the Net User Command to Manage Users – Windows
To add a new user :net user /add usernameEg : net user /add tomTo delete a user :net user /delete usernameEg : net user /delete tomTo change password of a user :net user username {password}Eg: net user tom pass123To allow a user to change his own password :net user username /passwordchg:yesEg: net user tom /passwordchg:yesTo […]