views:

41

answers:

1

how to remove write protections of project and its files written in vc++/visual studio 2008.Or how to change attributes of files present in vc++ project

A: 

You will remove the write protection using Windows Explorer.

  • Right click on the Project Folder
  • Choose Properties
  • Genreral Tab - Untick Readonly Flag
  • Click on Apply then OK

If the code comes from Team Foundation Server or any other source control you will need to remove the source control bindings first before doing the above.

Diago