For a long time I was able to download azw3 files from Amazon after buying, then remove their DRM using Calibre 4.23 and return them to Amazon. I think this was being done for all the Kindle books which were published either in March 2022 or before that. I recently bought a book that was published in November 2022, and I am unable to remove its DRM in Calibre. So far I had Kindle 1.25 but when I tried to download the newly purchase book on my laptop running Windows 10, I got this error.

Then I installed Kindle 1.33. The downloaded Azw file got converted into KFX Zip by Calibre automatically when I dragged and dropped the file into the library. Conversion to epub and azw3 failed and calibre showed a message that it couldn't do so as it has DRM protection. I have the following plugins installed.
While searching for tackling this issue, I came across a cmd file that disable KFX downlaods in Kindle app for Windows. Its code goes like this.
Code:
reg delete "HKEY_CURRENT_USER\SOFTWARE\Amazon\Kindle\User Settings" /v "isKRFDRendererSupported" /f
start "" "%LOCALAPPDATA%\Amazon\Kindle\application\kindle.exe"
:repeat
timeout 1
reg query "HKEY_CURRENT_USER\SOFTWARE\Amazon\Kindle\User Settings" /v "isKRFDRendererSupported"
if ERRORLEVEL 1 goto :repeat
reg add "HKEY_CURRENT_USER\SOFTWARE\Amazon\Kindle\User Settings" /v "isKRFDRendererSupported" /t REG_SZ /d "false" /f
pause
I ran this cmd file. Then while trying to download the book, the Kindle app on my laptop shows the same error that it was showing on Kindle 1.25 (first screenshot ), that I need to update my Kindle app.
I searched a lot on the internet and found that this issue can be resolved if I download the azw file of the book on a Kindle paper device and then use that file to remove the DRM. I don't have a Kindle device. Is there any way to remove DRM for KFX zip on my laptop directly?