11.1 is six months old now, so you may need to install the latest update for this to work.
If you use this as a button or hotkey, it will paste the clipboard contents into each selected folder:
Here's the button code. See How to add buttons from this forum to your toolbars if you're not familiar with how to use it to add a toolbar button.
<?xml version="1.0"?>
<button backcol="none" display="both" label_pos="right" textcol="none">
<label>Paste Into</label>
<tip>Paste into each selected folder</tip>
<icon1>#default:clippaste</icon1>
<function type="script">
<instruction>@script vbscript</instruction>
<instruction />
<instruction>Function OnClick(ClickData)</instruction>
<instruction> Set cmd = ClickData.Func.Command</instruction>
<instruction> For Each SelDir In ClickData.Func.sourcetab.selected_dirs</instruction>
<instruction> cmd.ClearFiles</instruction>
<instruction> cmd.AddFile SelDir</instruction>
<instruction> cmd.RunCommand "Clipboard PASTE USESEL"</instruction>
<instruction> Next</instruction>
<instruction>End Function</instruction>
</function>
</button>