First, here is the general format of the command:
FOR ... IN ... DO ....FOR %variable IN (set) DO command [command-parameters]| %variable | a single letter replaceable parameter. | 
| (set) | a set/list of one or more files. | 
| command | the command to carry out for each file. | 
| [command-parameters] | parameters or switches for the specified command. | 
To Iterate Local Folders Only
Use the/D option. e.g.
FOR /D%variableIN(set)DOcommand [command-parameters]
Example: To rename all the folders to "folder name".bak.FOR /D %i IN (*) DO ren "%i" "%i.bak"
To Iterate All Folders Recursively
Use the/R [[drive:]path] option.
Other Options
To see more options on theFOR command, type FOR /h in the command prompt, or see the Microsoft's page. 
