CS1619 error on using command prompt compilation of .net file

You may get a below error when you try to build .NET exe in windows vista.
error CS1619: Cannot create temporary file 'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CSCDC60.tmp' -- Access is denied.

Resolution: Launch your command prompt as Administrator.
Goto Start->All Programs->Accessories-->Command Prompt
Right click to get context menu.In the menu click "run as administrator" menu item.
You are done:


TidBit: Beginners guide to .NET command prompt compilation:
1. Open cmd prompt
2. type cd\
3. type cd "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727>"
4. type csc "filepath" example: csc "c:\myprograms\test.cs"
5. you see output of program (if any) or errors/warnings if your program has problems
6. step 4 command puts your exe in same path where csc.exe resides. If you want your exe to be created in different path use an out:"file path" after "csc" command. example: csc out\:"c:\myprograms\test.exe" "c:\myprograms\test.cs"