win_unzip hanging on overwrite

I’m new to ansible. I’m debugging a called to win_unzip that is hanging. I see other users having the same problem with no resolution. I’ve diagnosed it down to the generated powershell script calling Expand-Archive. If I pull the generated script and run it in powershell it pops up a dialog prompting me to merge the extract with the contents of the directory.

Is there an option I can pass in to force the overwrite?

what’s yor OS/PowerShell version?

I’d try and organise things so that there’s no need to merge the contents of the directory (probably by removing the contents of the directory first using win_file state: absent.)

Jon