I tried out the REG script from posting #5 and it works. Thank you so far.

However I would like to add more than 1 "Move" command to the context menu. But when I enter in reg script e.g.

[HKEY_CLASSES_ROOT\*\shell\Move]
@="Move to picture"
"Position"="bottom"
[HKEY_CLASSES_ROOT\*\shell\Move\command]
@="cmd /c move /y "%1" "C:\\Users\\pet\\Pictures""

[HKEY_CLASSES_ROOT\*\shell\Move]
@="Move to logs"
"Position"="bottom"
[HKEY_CLASSES_ROOT\*\shell\Move\command]
@="cmd /c move /y "%1" "D:\\data\\log""

then only the last context menu item is added.
How can I add more that one "Move" command?