What is the command to unzip a file using 7z in powershell?
set-alias sz \"$env:ProgramFiles\\7-Zip\\7z.exe\" sz x $zipfilePath $destinationUnzipPath -aoa -
This finally worked for me sz x -o$destinationUnzipPath $zipfilePath -r ;
sz x -o$destinationUnzipPath $zipfilePath -r ;