diff --git a/smartmontools/CHANGELOG b/smartmontools/CHANGELOG
index 80973a818011e15c7fbb0143cce19ded483a71b4..b9e641bca4b3f71fc2b6e90f98db06efb14a9adc 100644
--- a/smartmontools/CHANGELOG
+++ b/smartmontools/CHANGELOG
@@ -43,6 +43,9 @@ NOTES FOR FUTURE RELEASES: see TODO file.
 
 <DEVELOPERS: ADDITIONS TO THE CHANGE LOG GO JUST BELOW HERE, PLEASE>
 
+  [CF] Windows: Fix parsing of 'tw_cli' output for 3ware 9.5.x release
+       (ticket #43.)
+
   [CF] Linux: Allow smartd 'DEVICESCAN -d sat' (ticket #13).
        Detects (S)ATA devices behind a standard SAT layer
        (Vendor ID: "ATA     "), but not USB bridges with SAT support.
diff --git a/smartmontools/os_win32.cpp b/smartmontools/os_win32.cpp
index 26c60308acd4ea34a4b9ce2faf4aed1217371814..1ed2d62e80aa4f2fc9e02e0435cdf251a1634e11 100644
--- a/smartmontools/os_win32.cpp
+++ b/smartmontools/os_win32.cpp
@@ -1605,6 +1605,8 @@ bool win_tw_cli_device::open()
 
   // Parse smart data hex dump
   const char * s = findstr(buffer, "Drive Smart Data:");
+  if (!*s)
+    s = findstr(buffer, "Drive SMART Data:"); // tw_cli from 9.5.x
   if (!*s) {
     s = findstr(buffer, "S.M.A.R.T. (Controller"); // from 3DM browser window
     if (*s) {