Divya
Divya

Reputation: 1

TFS Builds Queuing

I'm facing this issue in a build.

Other Errors and Warnings
 1 error(s), 0 warning(s)
 Failed to create directory '\\win-akk2jup2ka\share\UICoded Build\UICoded Build_20110817.4'.  
 Details: The network path was not found. 

Upvotes: 0

Views: 1274

Answers (2)

Jim Lamb
Jim Lamb

Reputation: 25815

Looks like your UNC path is missing a leading backslash. The message you provided references the following path:

\win-akk2jup2ka\share\UICoded Build\UICoded Build_20110817.4

Which should be:

\\win-akk2jup2ka\share\UICoded Build\UICoded Build_20110817.4

Check your drop folder in the build definition editor and make sure that it starts with two backslashes. If that's not the problem, verify that the build service account has "modify" permissions for that folder in both NTFS and on the share. For more information, see the Set up Drop Folders topic on MSDN.

Upvotes: 3

Sunil Agarwal
Sunil Agarwal

Reputation: 4277

Edit the build definition and provide this path for drop location

\\win-akk2jup2ka\share\UICoded Build\

Upvotes: 0

Related Questions