Copy Filename without Extension

You can use the new Clipboard REGEXP argument to do this:

Clipboard COPYNAMES=nopaths REGEXP "(.*)\.[^.]*" "\1"

Anything which doesn't match the regexp will be added to the list as-is so the above command works correctly both for file/folder names which do contain an extension and for those that don't.