Posted On October 8, 2020

Jenkins: How to Clone a Job

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Jenkins: How to Clone a Job

To create a new job, use this quick how-to. This instruction is a quick walk-through to clone an existing job…

Login to Jenkins > click on ‘New Item’

Input a Name for the New Job > type in the source Job name in the ‘Copy from’ field

click OK > verify the job details on the next screen’s General tab > click Save

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Enable ISE

Import-Module ServerManager;Add-WindowsFeature PowerShell-ISE

Great GPL Windows Admin Tools

1. Wireshark 2. amanda.org (backup server) 3. mailarchiva.com (mail backup) 4. http://rbac.codeplex.com (remote admin for Exchange servers) 5. Core Configurator, ,…

PowerShell: 1-liner to obtain SSID and Password of Wireless Profiles on a Windows Machine

$profileName='Frontier0000'netsh wlan show profile "name=$profileName" key=clear|select-string "Key Content"# Sample outputKey Content : somepassword PS C:\Windows\system32>…