May 10, 201610 yr i suck at loops can someone make me a cmd/bat script that would rename bunch of these: Windows6.1-KB2511455-x64.msu to simply KB2511455-x64.msu i have 160 of these (all different number) and its nightmare to do manual renaming...
May 11, 201610 yr All you need is the no-install GUI version of the Bulk Rename Utility. You'll do it in a few seconds.
May 11, 201610 yr Something simple like this may work for you. @Echo Off & SetLocal EnableDelayedExpansion For %%A In (*.msu) Do (Set "_=%%A" If "%%A" NEq "!_:*-KB=!" Ren "%%A" "KB!_:*-KB=!")
May 11, 201610 yr Author holy shit ! Yzöwl you are life saver ! cant believe it did it all in less than a second O_o THANK YOU !!!!!!!!!!!!
Create an account or sign in to comment