0

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. 
John Saunders
  • 160,644
  • 26
  • 247
  • 397
Divya
  • 1
  • 2

2 Answers2

3

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.

Jim Lamb
  • 25,355
  • 6
  • 42
  • 48
  • HI .... JIM i have mentioned correct path can you plz provide a complete walkthrough how to permissions for share or dropdown location ..... ........... share is a account of administrator type – Divya Aug 18 '11 at 08:04
  • @Divya, I've added a link to the help topic on MSDN. – Jim Lamb Aug 19 '11 at 16:03
0

Edit the build definition and provide this path for drop location

\\win-akk2jup2ka\share\UICoded Build\
Sunil Agarwal
  • 4,097
  • 5
  • 44
  • 80