Hey folks,
does any one have any idea how i can use power shell or a bat file to add a number to a folder
example folders before
Affenpinscher
Alaskan Malamute
Staffordshire Bull Terrier
Shepherd Dog
After
1. Affenpinscher
2. Alaskan Malamute
3. Staffordshire Bull Terrier
4. Shepherd Dog
Ive looked everywhere and i just cant seem to figure it out
I thought this may be a simple common operation people do rename folders with numbers
get-childitem | % { rename-item $_ ” “} – and stuck after many combinations
thanks
pb