{"id":10553,"date":"2026-07-24T19:02:04","date_gmt":"2026-07-24T13:32:04","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=10553"},"modified":"2026-07-24T19:05:33","modified_gmt":"2026-07-24T13:35:33","slug":"how-to-connect-a-windows-node-agent-to-jenkins","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/","title":{"rendered":"How to Connect a Windows Node (Agent) to Jenkins"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Introduction<\/h3>\n\n\n\n<p>Jenkins supports distributed builds by using <strong>agents (nodes)<\/strong>. A Windows agent allows Jenkins to execute jobs on a Windows machine while the Jenkins controller manages the pipeline.<\/p>\n\n\n\n<p>This guide explains how to connect a Windows machine as a Jenkins agent using the <strong>Launch agent by connecting it to the controller (Inbound Agent)<\/strong> method.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Prerequisites<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Jenkins Controller installed and running<\/li>\n\n\n\n<li>Windows 10\/11 or Windows Server<\/li>\n\n\n\n<li>Java 17 or later installed on Windows<\/li>\n\n\n\n<li>Network connectivity between Windows machine and Jenkins server<\/li>\n\n\n\n<li>Jenkins user account with permission to create\/manage nodes<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Install Java on Windows<\/h3>\n\n\n\n<p>Verify Java installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>java -version<\/code><\/pre>\n\n\n\n<p>Example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>openjdk version \"17.0.15\"<\/code><\/pre>\n\n\n\n<p>If Java is not installed, download and install OpenJDK or Oracle JDK.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Create a New Node in Jenkins<\/h3>\n\n\n\n<ol start=\"1\" class=\"wp-block-list\">\n<li>Login to Jenkins.<\/li>\n\n\n\n<li>Go to <strong>Manage Jenkins<\/strong>.<\/li>\n\n\n\n<li>Select <strong>Nodes<\/strong>.<\/li>\n\n\n\n<li>Click <strong>New Node<\/strong>.<\/li>\n<\/ol>\n\n\n\n<p>Enter:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Node Name: <code>windows-agent<\/code><\/li>\n\n\n\n<li>Type: Permanent Agent<\/li>\n<\/ul>\n\n\n\n<p>Click <strong>Create<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Configure the Node<\/h3>\n\n\n\n<p>Configure the following settings.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Number of Executors<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>2<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Remote Root Directory<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>C:\\Jenkins<\/code><\/pre>\n\n\n\n<p>Create this folder on Windows if it does not exist.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Labels<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>windows<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Usage<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>Use this node as much as possible<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Launch Method<\/h3>\n\n\n\n<p>Select:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Launch agent by connecting it to the controller<\/code><\/pre>\n\n\n\n<p>Save the configuration.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Obtain the Agent Command<\/h3>\n\n\n\n<p>Open the newly created node.<\/p>\n\n\n\n<p>Jenkins displays a command similar to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>java -jar agent.jar ^\n-url http:\/\/YOUR-JENKINS:8080\/ ^\n-secret YOUR_SECRET ^\n-name \"windows-agent\" ^\n-workDir \"C:\\Jenkins\"<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Download agent.jar<\/h3>\n\n\n\n<p>Open:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;YOUR-JENKINS:8080\/jnlpJars\/agent.jar<\/code><\/pre>\n\n\n\n<p>Download:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>agent.jar<\/code><\/pre>\n\n\n\n<p>Copy it to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>C:\\Jenkins<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Open Command Prompt<\/h3>\n\n\n\n<p>Navigate to the Jenkins directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd C:\\Jenkins<\/code><\/pre>\n\n\n\n<p>Run the agent:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>java -jar agent.jar ^\n-url http:\/\/YOUR-JENKINS:8080\/ ^\n-secret YOUR_SECRET ^\n-name \"windows-agent\" ^\n-workDir \"C:\\Jenkins\"<\/code><\/pre>\n\n\n\n<p>If successful, you will see:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>INFO: Connected\nINFO: Agent successfully connected<\/code><\/pre>\n\n\n\n<p>The Jenkins dashboard will show the node as <strong>Online<\/strong>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7: Configure Firewall (If Needed)<\/h3>\n\n\n\n<p>Allow outbound access to the Jenkins server.<\/p>\n\n\n\n<p>Default Jenkins port:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>8080<\/code><\/pre>\n\n\n\n<p>If using HTTPS:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>443<\/code><\/pre>\n\n\n\n<p>Verify connectivity:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ping YOUR-JENKINS<\/code><\/pre>\n\n\n\n<p>or<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl http:\/\/YOUR-JENKINS:8080<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Running the Agent as a Windows Service<\/h3>\n\n\n\n<p>Instead of keeping Command Prompt open, install the Jenkins agent as a Windows Service.<\/p>\n\n\n\n<p>From the node page, download the Windows Agent service package or use the Jenkins Agent Service installer.<\/p>\n\n\n\n<p>Benefits:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Starts automatically after reboot<\/li>\n\n\n\n<li>Runs in the background<\/li>\n\n\n\n<li>No need to keep a command window open<\/li>\n\n\n\n<li>Recommended for production<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Troubleshooting<\/h3>\n\n\n\n<h3 class=\"wp-block-heading\">Java Not Found<\/h3>\n\n\n\n<p>Error:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>'java' is not recognized<\/code><\/pre>\n\n\n\n<p>Solution:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Install Java.<\/li>\n\n\n\n<li>Add the Java <code>bin<\/code> directory to the <code>PATH<\/code> environment variable.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Connection Refused<\/h3>\n\n\n\n<p>Error:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Connection refused<\/code><\/pre>\n\n\n\n<p>Check:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Jenkins is running.<\/li>\n\n\n\n<li>Correct server URL.<\/li>\n\n\n\n<li>Firewall allows access.<\/li>\n\n\n\n<li>Port 8080 or 443 is reachable.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Invalid Secret<\/h3>\n\n\n\n<p>Error:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Unauthorized<\/code><\/pre>\n\n\n\n<p>Solution:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Copy the latest secret from the Jenkins node page.<\/li>\n\n\n\n<li>Ensure the node name matches exactly.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Agent Goes Offline<\/h3>\n\n\n\n<p>Possible causes:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Network interruption<\/li>\n\n\n\n<li>Firewall timeout<\/li>\n\n\n\n<li>Java process stopped<\/li>\n<\/ul>\n\n\n\n<p>Restart:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>java -jar agent.jar ...<\/code><\/pre>\n\n\n\n<p>Or configure the agent as a Windows Service.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Verify Agent Status<\/h3>\n\n\n\n<p>On the Jenkins dashboard:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Online<\/strong>: Agent is connected and ready.<\/li>\n\n\n\n<li><strong>Offline<\/strong>: Agent is disconnected.<\/li>\n\n\n\n<li><strong>Temporarily Offline<\/strong>: Agent has been manually disabled.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>Connecting a Windows node to Jenkins using an inbound agent is a straightforward way to distribute builds and run Windows-specific workloads such as .NET, PowerShell, or desktop application builds. By installing Java, creating a node in Jenkins, downloading <code>agent.jar<\/code>, and connecting with the provided command, you can quickly add Windows build capacity. For production environments, running the agent as a Windows Service ensures reliability and automatic startup after system reboots.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Jenkins supports distributed builds by using agents (nodes). A Windows agent allows Jenkins to execute jobs on a Windows machine while the Jenkins controller manages the pipeline. This guide explains how to connect a Windows machine as a Jenkins agent using the Launch agent by connecting it to the&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to Connect a Windows Node (Agent) to Jenkins<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":532,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[1],"tags":[],"class_list":{"0":"post-10553","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction Jenkins supports distributed builds by using agents (nodes). A Windows agent allows Jenkins to execute jobs on a Windows machine while the Jenkins controller manages the pipeline. This guide explains how to connect a Windows machine as a Jenkins agent using the Launch agent by connecting it to the&hellip; Continue Reading How to Connect a Windows Node (Agent) to Jenkins\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2026-07-24T13:32:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-24T13:35:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"thiyagarajan V\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"thiyagarajan V\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-connect-a-windows-node-agent-to-jenkins\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-connect-a-windows-node-agent-to-jenkins\\\/\"},\"author\":{\"name\":\"thiyagarajan V\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/74f51f35c7a7748db459b46c7840def4\"},\"headline\":\"How to Connect a Windows Node (Agent) to Jenkins\",\"datePublished\":\"2026-07-24T13:32:04+00:00\",\"dateModified\":\"2026-07-24T13:35:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-connect-a-windows-node-agent-to-jenkins\\\/\"},\"wordCount\":473,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-connect-a-windows-node-agent-to-jenkins\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-connect-a-windows-node-agent-to-jenkins\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-connect-a-windows-node-agent-to-jenkins\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-07-24T13:32:04+00:00\",\"dateModified\":\"2026-07-24T13:35:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-connect-a-windows-node-agent-to-jenkins\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-connect-a-windows-node-agent-to-jenkins\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-connect-a-windows-node-agent-to-jenkins\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Connect a Windows Node (Agent) to Jenkins\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/74f51f35c7a7748db459b46c7840def4\",\"name\":\"thiyagarajan V\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g\",\"caption\":\"thiyagarajan V\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/thiyagarajan\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Jenkins supports distributed builds by using agents (nodes). A Windows agent allows Jenkins to execute jobs on a Windows machine while the Jenkins controller manages the pipeline. This guide explains how to connect a Windows machine as a Jenkins agent using the Launch agent by connecting it to the&hellip; Continue Reading How to Connect a Windows Node (Agent) to Jenkins","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2026-07-24T13:32:04+00:00","article_modified_time":"2026-07-24T13:35:33+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"thiyagarajan V","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"thiyagarajan V","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/"},"author":{"name":"thiyagarajan V","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/74f51f35c7a7748db459b46c7840def4"},"headline":"How to Connect a Windows Node (Agent) to Jenkins","datePublished":"2026-07-24T13:32:04+00:00","dateModified":"2026-07-24T13:35:33+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/"},"wordCount":473,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2026-07-24T13:32:04+00:00","dateModified":"2026-07-24T13:35:33+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-connect-a-windows-node-agent-to-jenkins\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Connect a Windows Node (Agent) to Jenkins"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/74f51f35c7a7748db459b46c7840def4","name":"thiyagarajan V","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ee2869bd14622272f64481a22d08f344cf374add59cc30ba7b8f3e887b120b9a?s=96&r=g","caption":"thiyagarajan V"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/thiyagarajan\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-2Kd","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/10553","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/532"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=10553"}],"version-history":[{"count":4,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/10553\/revisions"}],"predecessor-version":[{"id":10571,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/10553\/revisions\/10571"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=10553"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=10553"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=10553"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}