diff --git a/CHANGELOG b/CHANGELOG
index 3e2fbafc..575407f9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,7 @@
 jc changelog
 
 20241018 v1.25.4
-- Add `ipconfig` command parser
+- Add `ipconfig` command parser (`ipconfig` for Windows)
 - Enhance `ping-s` streaming parser to support error replies
 - Enhance `ethtool` parser to support `link_partner_advertised_link_modes`
 - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS
diff --git a/README.md b/README.md
index 0ec8c9c9..555b908f 100644
--- a/README.md
+++ b/README.md
@@ -218,7 +218,7 @@ option.
 |        `--iostat` | `iostat` command parser                                 | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat)         |
 |      `--iostat-s` | `iostat` command streaming parser                       | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iostat_s)       |
 |    `--ip-address` | IPv4 and IPv6 Address string parser                     | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_address)     |
-|      `--ipconfig` | `ipconfig` command parser                               | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ipconfig)       |
+|      `--ipconfig` | `ipconfig` Windows command parser                       | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ipconfig)       |
 |      `--iptables` | `iptables` command parser                               | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iptables)       |
 |      `--ip-route` | `ip route` command parser                               | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/ip_route)       |
 |       `--iw-scan` | `iw dev [device] scan` command parser                   | [details](https://kellyjonbrazil.github.io/jc/docs/parsers/iw_scan)        |
diff --git a/completions/jc_zsh_completion.sh b/completions/jc_zsh_completion.sh
index 46cd5672..c81d5dbd 100644
--- a/completions/jc_zsh_completion.sh
+++ b/completions/jc_zsh_completion.sh
@@ -186,7 +186,7 @@ _jc() {
         '--iostat:`iostat` command parser'
         '--iostat-s:`iostat` command streaming parser'
         '--ip-address:IPv4 and IPv6 Address string parser'
-        '--ipconfig:`ipconfig` command parser'
+        '--ipconfig:`ipconfig` Windows command parser'
         '--iptables:`iptables` command parser'
         '--ip-route:`ip route` command parser'
         '--iw-scan:`iw dev [device] scan` command parser'
diff --git a/docs/parsers/ipconfig.md b/docs/parsers/ipconfig.md
index c550f075..ca44e8cb 100644
--- a/docs/parsers/ipconfig.md
+++ b/docs/parsers/ipconfig.md
@@ -3,7 +3,7 @@
 
 # jc.parsers.ipconfig
 
-jc - JSON Convert `ipconfig` command output parser
+jc - JSON Convert `ipconfig` Windows command output parser
 
 Usage (cli):
 
diff --git a/jc/parsers/ipconfig.py b/jc/parsers/ipconfig.py
index c63c1fbe..318b1353 100644
--- a/jc/parsers/ipconfig.py
+++ b/jc/parsers/ipconfig.py
@@ -1,4 +1,4 @@
-r"""jc - JSON Convert `ipconfig` command output parser
+r"""jc - JSON Convert `ipconfig` Windows command output parser
 
 Usage (cli):
 
@@ -433,7 +433,7 @@ import jc.utils
 class info():
     """Provides parser metadata (version, author, etc.)"""
     version = '1.0'
-    description = '`ipconfig` command parser'
+    description = '`ipconfig` Windows command parser'
     author = 'joehacksalot'
     author_email = 'joehacksalot@gmail.com'
     compatible = ['windows']
diff --git a/man/jc.1 b/man/jc.1
index 722cc7f8..a5f2efcb 100644
--- a/man/jc.1
+++ b/man/jc.1
@@ -350,7 +350,7 @@ IPv4 and IPv6 Address string parser
 .TP
 .B
 \fB--ipconfig\fP
-`ipconfig` command parser
+`ipconfig` Windows command parser
 
 .TP
 .B