Hi,
Yes, current there is such limitation on the file path length for standout file. I've filed bug for this. And as a workaround, you can use job or task environment variables. For example, in a task:
Set Environment variable:
%std_path%=<longStr>
%std_file%=<longName>
And set the task's stdoutput=\\?\%std_path%%std_file%
Please be noted that if you want to use more than 260 characters in the path, you need to specify "\\?\" before the file path. Details please see
http://msdn.microsoft.com/en-us/library/aa365247(v=vs.85).aspx#maxpath
Qiufang Shi