REQUEST: Script to unzip a file

Can I get this converted to a script procedure?
Add-Type -AssemblyName System.IO.Compression.FileSystem

function Unzip
{
param([string]$zipfile, [string]$outpath)
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath)
}

Unzip “C:\a.zip” “C:\a”

Hi @smartnetworks

We have completed and published below-mentioned python script for this request,

https://scripts.comodo.com/frontend/web/topic/extract-zip-file

Let us know your feedback.

Thanks
Kannan