I have msbuild file (.target) and I execute it in remote machine using psexec.
I get the following error:
error MSB3073: The command "attrib -R "C:\scripts\doc*.*" /S /D" exited with code 128.
I don't understand why attrib command fails, what is means code 128 error for attrib ?
Any suggestions about it ?
The target is:
<Target Name="CopyPdf">
...
<Exec Command="attrib -R "$(RutaDestinoDocumentosParaAgentes)\*.*" /S /D" IgnoreExitCode="false" WorkingDirectory="C:\WINDOWS\system32"/>
</Target>