Feature Request: Command Line Icon Changing [ + SOLUTION ]
I must say this is the best folder icon management solution at the moment. It's a shame it has no 64bit compile of the shell extension. But more important than that can you please consider adding some sort of command-line support.
ex. folderico-cli
ex2. folderico-cli /default
This would be really handy for users with custom file managers (Directory Opus in my case) where you can have custom menus and toolbars and use them to set the icons. It would also be extremely useful in mass conditional icon changing through scripting. Thank you.

Russian
English
Please see: Folderico - console version.
Thanks.
Some peoples are asked me to:
have option to change all subfolders
I would like an option to change all subfolder, right now it is very tedious to have to change folders one by one.
SOLUTION:
Create .BAT file:
FOR /R "[FOLDER]" %%G in (.) DO (
"[folderico_cli.exe]" /set "%%G" "[ICON]" 0
Set icon for: %%G
Popd )
Where:
[FOLDER] - Folder to change icons
[folderico_cli.exe] - full path to folderico_cli.exe
[ICON] - path to icon
For example,
FOR /R "D:\Docs\Test" %%G in (.) DO (
"c:\Program Files\Folderico\folderico_cli.exe" /set "%%G" "D:\Docs\Test\icon.ico" 0
Set icon for: %%G
Popd )