Installing Jenkins on Windows
Last Updated :
06 Nov, 2023
Jenkins is primarily used for continuous integration and continuous delivery on a platform. It is a Java application that has multiple plugins for automating all components at an infrastructure level. These plugins are responsible for all the different functionalities of Jenkins.
Requirements to Install Jenkins on Windows
- Operating System: Windows
- JDK Version: JDK 8 - Java SE
- Memory: 2 GB
- Disk space: 500MB
Jenkins Installation Steps Using Windows MSI Installer
Follow the below step to install Jenkins in your Windows operating system: To know how to build Jenkins ci/cd pipeline refer to the How to Make a CI-CD Pipeline in Jenkins?
Step 1: Go to "https://jenkins.io/download/"
Step 2: Choose the Platform on which you are interested to install.

Step 3: For this we selected Windows, you can download either LTS or weekly releases. Click on Download for Windows 64-bit. File will download
Step 4: Double-click on the file which is downloaded, this will lead to the below window. Click Next twice.


Step 5: Click next and give your name and mail details and click next

Step 6: Click on the Allow access button and Finish Button

Step 7: Click on Access Jenkins

Post-Installation Setup Wizard
After downloading you need to follow some steps to setup jenkins to processed further.
Step 1: Type the user name and password which had given earlier to open Jenkins

Step 2: Click install suggested plug-in and click continue

Step 3: Click on save and finish

Step 4: Refresh the screen and you will login into Jenkins

6 Steps to Install Jenkins on Windows
1. Download Jenkins MSI installer
MSI stands for Microsoft Windows Installer which is used to install the softwares on windows systems. Mostly used to install large and complex packages. You can download latest version of MSI on jenkins website.
2. Install Java Development KIT(JDK)
Download the JDK 8 installer for Windows, choosing the 32-bit or 64-bit version depending on your system configuration. Agree to the license agreement.
3. Set the Path for the Environmental Variable for JDK
Open Jenkins web interface go to jenkins left-hand sidebar and select the configure system select the environmental variables.Select the new variable section and set as following.
- Variable: JAVA_HOME
- Value: The path to the JDK installation directory. For example, on Windows, the default installation directory for JDK is C:\Program Files\Java\jdk1.8.0_311.
Click Add
4. Run Jenkins on Localhost 8080
Once the jenkins is get installed you need to access it from the browser by using the "localhost:8080". Install all the recommended plugins when prompted by the dashboard.
5. Jenkins Server Interface
After acessing it from the internet by using local host know you can create your own project by clicking on the new item or new project where you can select the different kind types of projects you want like Freestyle project, Pipeline,Multi-configuration project and son on.
6. Build and Run a Job on Jenkins
After writing the pipeline is done click on save it will be directly redirected to the Dashboard of the project there we can use, the “Build Now” option to run the pipeline and check if it is successful or not, by using stage view or console output.
How To Install Jenkins On Windows Using Command Prompt?
Follow the steps mentioned bellow to install jenkins using command prompt.
Step 1: Download the jenkins WAR(Web application) file into the machine which you want to install the jenkins you achive that using following command.
wget https://get.jenkins.io/war-stable/latest/jenkins.war
Step 2: Create and the move the jenkins war file to that directory.
mkdir jenkins & mv jenkins.war jenkins
Step 3: Run the jenkins using the following command.
java -jar jenkins.war
Similar Reads
How to Install Apache Maven on Windows?
Apache Maven is an automation tool. The tool is written in Java. It was initially released on 13 July 2004. It is developed by the Apache software foundation. It is part of the Jakarta Project. It is working on two aspects: how software is built, and its dependencies. It was created by Jason van Zyl
3 min read
How To Install WordPress On Hostinger ?
WordPress is the most popular content management system(CMS) that allows the easy creation and management of websites, blogs, and online stores. Hostinger is a web hosting provider that can offer various hosting solutions that can include shared hosting, VPS hosting, and cloud hosting. Installing Wo
4 min read
How to install QGIS on Windows?
QGIS acronym for Quantum Geographic Information System is free and open-source software. It is used to work on geospatial data, this data can be easily edited and analyzed in the QGIS software. It is a cross-platform software so it is widely used in geographic data applications. It is written in Pyt
2 min read
Raspberry Pi setup in Windows
Raspberry Pi OS is a simple lightweight operating system similar to UNIX which is specially designed for Raspberry Pi single-board computers. Usually, Raspberry PI OS is used in single-board hardware computers but here we will learn how we can install it in our windows with the help of a virtual box
5 min read
How to download Steam on Windows?
Steam is a digital game Launcher in which we can buy games and play them. It is available for different operating systems like Windows, macOS, Linux, iOS, Android, etc. It is adware and is built in C++ programming languages. The development credit goes to Valve Corporation. It is available in 28 lan
2 min read
How to Install Magento2 on Windows?
Magento is a powerful open-source e-commerce web application written in PHP. It was developed by Magento, inc 31 march 2008. Magento was built using the Zend framework, it uses entity attribute value(EAV) database model to store value and there is an only free version available by the Magento commun
4 min read
How to Set Up a Dual Boot with Ubuntu and Windows?
Creating a dual boot system with Linux and Windows allows you to enjoy the best of both operating systems on a single machine. Whether you're a developer needing a versatile environment, a student exploring different software, or just someone who enjoys flexibility, dual booting provides a practical
9 min read
How to Install Power ISO on Windows
Are you looking to install Power ISO on Windows? Power ISO is a popular tool used for managing, editing, and creating disk image files like ISO, BIN, and others. Whether you're trying to download Power ISO for the first time or need a quick refresher on how to set it up, this guide will take you thr
4 min read
How to Install Ubuntu on Windows using VMware?
VMWare, a short form of "VirtualMachine Ware". A cloud computing company that develops virtualization software, management, and networking interfaces or tools. It provides hypervisor tools or products that help in running virtual machines, clusters, and containers. By using this software we can virt
2 min read
How to Install Windows on Mac
Running Windows on your Mac can provide access to all the exclusive games, features, apps and the whole Windows environment. Mac is a powerful OS used for various operations but there are certain scenarios when you wish to work on a Windows system. Keeping this in mind, we have compiled this article
7 min read