My infrastructure changed the name of my computer. When I opened visual studio to connect to TFS, I got a message saying that "Workspace 'X' does not reside on this computer. If this computer was recently renamed, the workspace may be updated by running tf workspaces /updateComputerName:oldComputerName.
So I ran this for my local workspace and it worked just fine. Now I'm trying to run it for a workspace that is connected to visualstudio.com and I'm getting a 'HTTP code 407: Proxy Authentication Required' error.
I have already made some changes to my vsenv.exe.config for proxy as below. I also tried to add the same thing to tf.exe.config, with no luck.
<system.net>
<defaultProxy useDefaultCredentials="true" enabled="true">
<proxy usesystemdefault="True" />
</defaultProxy>
<settings>
<ipv6 enabled="true"/>
<servicePointManager expect100Continue="false" />
</settings>
</system.net>
Anyone have any ideas how to get around this proxy issue?