Posts

Showing posts from 2008

.NET Interview Questions Book

SampleInterviewQuestionBook.zip Including: .NET 3 AJAX/ATLAS Vista Series (WCF/WPF/WWF) UML Architecture Project Management SQL Server Sample Project General Interview Questions

64 Behavioral Interview Questions

http://www.crackinterview.info/64Answers.htm

"Requested Registry Access is not allowed" Error when creating a new project in Visual Studio.NET in Vista

Problem : Trying to create a new project - any project - using VS2008 running on Vista gets this error: "Requested Registry Access is not allowed." Reason: The proper permissions are not set by Visual Studio. Solution: Step 1: Download subinacl.msi from the link http://go.microsoft.com/fwlink/?LinkId=23418 and install it. Step 2: Browse to C:/Program Files/Windows Resource Kits/Tools/ and create a file called vsfix.cmd Step 3: Open the file you created, and inside copy-paste this code block and then save it: subinacl /subkeyreg HKEY_CLASSES_ROOT\VisualStudio.vbproj.9.0 /grant=administrators=f subinacl /subkeyreg HKEY_CLASSES_ROOT\VisualStudio.vbproj.9.0 /grant=users=f subinacl /subkeyreg HKEY_CLASSES_ROOT\VisualStudio.vbproj.9.0 /grant=system=f subinacl /subkeyreg HKEY_CLASSES_ROOT\VisualStudio.csproj.9.0 /grant=administrators=f subinacl /subkeyreg HKEY_CLASSES_ROOT\VisualStudio.csproj.9.0 /grant=users=f subinacl /subkeyreg HKEY_CLASSES_ROOT\VisualStudio.csproj.9.0 /grant...