Camera named files like this: P1050640.JPG. To rename the all files in the directory, I used the following:
PS> $i = 1; gci | % { ren $_ $( '2013 Pool Setup {0:D2}.JPG' -f $i++ ) }
Camera named files like this: P1050640.JPG. To rename the all files in the directory, I used the following:
PS> $i = 1; gci | % { ren $_ $( '2013 Pool Setup {0:D2}.JPG' -f $i++ ) }