DRAG DROP
Your network environment includes a Microsoft Visual Studio Team Foundation Server (TFS) 2012 server. A
developer has left the company and still has files checked out. The developer’s computer is no longer available
to undo the checkouts. You need to undo any checked-out files for the user. You also need to delete the user’s
workspace. What should you do? (To answer, move thethree appropriate actions from the list of actionsto the
answer area and arrange them in the correct order.)
A.
use the tf workspace command to delete the user’sworkspaces.
B.
use the tf workspaces command to delete the user’s workspaces.
C.
use the tf undo command to remove the user’s pending changes.
D.
use the tf view commmand to get a list of the user’s workspaces.
If you delete the workspace cache and the user workspace, then you can’t use tf undo. Tf undo use the delete workspace like parameter.
http://msdn.microsoft.com/en-us/library/c72skhw4.aspx
Maybe, the good response is:
tf undo
tf workspaces (delete cache)
tf workspace
What do you think about?
tf workspaces – find out what workspace to workon
tf undo – undo check-outs
tf workspace – delete workspace
Correct answer is:
tf undo command
tf workspaces command to get a list of the user’s workspaces
tf workspace command to delete the user’s workspace
I agree with Andrew
Yes i agree with freed too.