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?