Skip to content
This repository has been archived by the owner on May 14, 2022. It is now read-only.

Commit

Permalink
[JENKINS-15596]
Browse files Browse the repository at this point in the history
Skip authenticode verification
  • Loading branch information
kohsuke committed Mar 2, 2013
1 parent 36b7cd6 commit 5170ede
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Expand Up @@ -87,6 +87,9 @@ public void install(LaunchConfiguration params, Prompter prompter) throws Instal
final File slaveExe = new File(dir, "jenkins-slave.exe");
FileUtils.copyURLToFile(getClass().getResource("/windows-service/jenkins.exe"), slaveExe);

FileUtils.copyURLToFile(WindowsSlaveInstaller.class.getResource("jenkins-slave.exe.config"),
new File(dir,"jenkins-slave.exe.config"));

// write out the descriptor
String xml = generateSlaveXml(
generateServiceId(dir.getPath()),
Expand Down
@@ -0,0 +1,6 @@
<!-- see http://support.microsoft.com/kb/936707 -->
<configuration>
<runtime>
<generatePublisherEvidence enabled="false"/>
</runtime>
</configuration>

0 comments on commit 5170ede

Please sign in to comment.