<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Jhony R. de Souza</title>
    <description>The latest articles on DEV Community by Jhony R. de Souza (@jhonyrdesouza).</description>
    <link>https://dev.to/jhonyrdesouza</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F609210%2F0bff7d22-bb19-4b82-92dd-f88090228580.jpg</url>
      <title>DEV Community: Jhony R. de Souza</title>
      <link>https://dev.to/jhonyrdesouza</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jhonyrdesouza"/>
    <language>en</language>
    <item>
      <title>How to Disable Zscaler via PowerShell (When the GUI Won’t Let You)</title>
      <dc:creator>Jhony R. de Souza</dc:creator>
      <pubDate>Tue, 22 Apr 2025 17:24:51 +0000</pubDate>
      <link>https://dev.to/jhonyrdesouza/how-to-disable-zscaler-via-powershell-when-the-gui-wont-let-you-3aof</link>
      <guid>https://dev.to/jhonyrdesouza/how-to-disable-zscaler-via-powershell-when-the-gui-wont-let-you-3aof</guid>
      <description>&lt;p&gt;Recently, I had to install &lt;strong&gt;Zscaler&lt;/strong&gt; on my computer to connect to a partner/client’s network. No big deal — &lt;strong&gt;Zscaler&lt;/strong&gt; is pretty common in corporate environments for security and traffic filtering.&lt;/p&gt;

&lt;p&gt;But here’s the catch: due to the client's strict policies, &lt;strong&gt;I couldn't uninstall or even disable Zscaler using the graphical interface&lt;/strong&gt;. That quickly became a problem for me as a developer — breaking local environments, interfering with API calls, blocking containers, etc.&lt;/p&gt;

&lt;p&gt;After some digging, I found a workaround that’s not perfect, but &lt;strong&gt;gets the job done&lt;/strong&gt; — using &lt;strong&gt;PowerShell&lt;/strong&gt; on Windows.&lt;/p&gt;

&lt;h2&gt;
  
  
  Here’s how it works
&lt;/h2&gt;

&lt;p&gt;When &lt;strong&gt;Zscaler&lt;/strong&gt; is installed, it attaches itself to your network adapter as a binding. The good news? You can manage these bindings directly from &lt;strong&gt;PowerShell&lt;/strong&gt;.&lt;/p&gt;




&lt;h3&gt;
  
  
  ✅ 1. Check the current Zscaler binding status
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Get-NetAdapterBinding -AllBindings -ComponentID ZS_ZAPPRD
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This will list all network adapters with Zscaler bindings.&lt;/p&gt;




&lt;h3&gt;
  
  
  ❌ 2. Disable Zscaler
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Get-NetAdapterBinding -AllBindings -ComponentID ZS_ZAPPRD | Disable-NetAdapterBinding
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This command disables the Zscaler component on your network adapter — effectively removing its control.&lt;/p&gt;




&lt;h3&gt;
  
  
  🔄 3. Re-enable Zscaler (when needed)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Get-NetAdapterBinding -AllBindings -ComponentID ZS_ZAPPRD | Enable-NetAdapterBinding
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Run this whenever you need to reconnect to the corporate environment.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚠️ Final Thoughts
&lt;/h2&gt;

&lt;p&gt;This doesn’t uninstall Zscaler, and might not work if your company has extra security layers like GPO or enforced admin restrictions. Use with caution and only if you understand the risks.&lt;/p&gt;

&lt;p&gt;This little trick saved me a ton of headaches while working on my project. Hopefully, it helps someone else out there too.&lt;/p&gt;

&lt;p&gt;If you found this useful, drop a ❤️ or leave a comment below.&lt;br&gt;
Let’s keep dev life smooth — even in locked-down environments. 🔓💻🔥&lt;/p&gt;

</description>
      <category>programming</category>
      <category>tutorial</category>
      <category>zscaler</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
