I\'m getting the following error when trying to execute a build in Jenkins:
Started by user anonymous
Building in workspace C:\\Users\\mryan\\git\\AML
[AML]
Faced the same issue on Windows Server 2008. Configured the correct user credentials on the Jenkins agent service and restarted it but that did not help either.
Finally what worked is to launch the agent via Java Web Start without installing it as a Windows service.
Following this answer, I managed to get it working.
Solution can be found in Aspera Support's article: How to map network shares into drives to a Windows service permanently.
Solution:
In order for network shares to be mapped into drives and accessible within Windows services, you need to login as the NT AUTHORITY\SYSTEM account.
To do this, download the Sysinternals Suite from Microsoft, and unzip it to a directory, say C:\TEMP The following steps assume that you've unzipped SysInternals to C:\TEMP and all the executables are in there.
- Launch a command prompt as Administrator.
CD \TEMP
psexec -i -s cmd.exe
This launches a new command prompt window, and step 4 should be performed in that new window.
net use Z: \\servername_OR_IP\sharedfolder /u:username /persistent:yes
Provide the credentials of a user having access to the shared folder.Create a script that runs on computer startup that has only line 4 in it acccording to Microsoft's article: Assign Computer Startup scripts.