I've got a problem with unzipping 7z file with Powershell although much needed information is here: unzip file using 7z in powershell
When i use same approach:
$7zipPath = "$env:ProgramFiles\7-Zip\7z.exe"
Set-Alias 7zip $7zipPath
$ZipFilePath = "C:\Users\lpiech\Documents\Lukasz\PowerShell\Test\20200113.7z"
$DestinationUzipPath = "C:\Users\lpiech\Documents\Lukasz\PowerShell\Test\"
7zip x -o$DestinationUzipPath $ZipFilePath -r;
i get this answer ResultsScreen but in destination i don't have any files in "Test" folder and script isn't finished it stops i "Running" mode. What should i do to get unzipped files?