Managing Permissions for Certificates on Windows 7
While doing development on a Windows 7 system you may need to use a certificate. If you use a certificate, you will need to assign yourself the correct permissions to use it. In the below example I assign permission to the Network Service account and myself. Previously you would have use the WSE 3.0 Certificates Tool to assign permissions. Now you can use MMC Certificates Snap In
After you run MMC >Certificates Add In
- Right click on the Certificate > All Tasks > Manage Private Keys
- Assign Network Service and Your self permissions to the certificate
-
Visual Studio 2013 Commands
Assumption: A directory has been mapped in TFS (Example: $/MySourceCode/Main/ points to C:\Projects\MySourceCode\Main)
Steps to Success:
- Go to that mapped directory (Example: "cd C:\Projects\MySourceCode\Main")
- Type "C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\TF.exe" get $/MySourceCode/Main/OrderService
Visual Studio 2013 Commands:
All Check Ins for a specific user
"C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\TF.exe" history $/ /user:RAmiscaray /recursive /noprompt
All Check Ins for a specific user from Start Date (5/17/2014) to End Date (5/31/2014)
"C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\TF.exe" history $/ /user:RAmiscaray /recursive /noprompt /v:D5/17/2014~D5/31/2014