In bash, I can use this command to update my current node version of nvm to the latest minor version:
nvm install $(nvm current | sed -rn "s/v([[:digit:]]+).*/\1/p") --reinstall-packages-from=$(nvm current)
How to do the same in Batch using nvm-windows?
You can achieve the same from the window using a batch file.
Create a batch file with the following text:
Then run your batch file from "cmd"
I tried with the same in my system.