Button: @hidenosel with multiple "type" wildcards

I'm making button for my comic book reader that should only show when these conditions are met:

  1. Only one file selected
  2. Filetype must be either ZIP, RAR or 7z

I got it working with one file selection and with ZIP

@hidenosel:numfiles=1,type=*.zip
start "" %HOMEPATH%\Desktop\Ohjelmat\Portable\NeeView\NeeView.exe {allfilepath}

But I can't figure out how I can make it work with RAR and 7z too, unless there's better method for this.

Function is MS-DOS Batch.

*.(zip|rar|7z) would match all three extensions

That was fast, thank you!