From 5534b15d82427bc6236e901a9705e3741710765a Mon Sep 17 00:00:00 2001 From: flofreud Date: Sat, 10 May 2014 09:37:26 +0200 Subject: [PATCH] changed flags for zip-file extraction to show windows progress popup because unzip takes a while --- Utils.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utils.ps1 b/Utils.ps1 index 667773c..1de9f6e 100644 --- a/Utils.ps1 +++ b/Utils.ps1 @@ -316,7 +316,7 @@ function Install-Remote-Version($Candidate, $Version) { # unzip downloaded archive $shell = New-Object -com shell.application - $shell.namespace($Script:PGVM_TEMP_PATH).copyhere($shell.namespace($archive).items(), 0x14) + $shell.namespace($Script:PGVM_TEMP_PATH).copyhere($shell.namespace($archive).items(), 0x10) # check if unzip successfully if ( !(Test-Path "$Script:PGVM_TEMP_PATH\*-$Version") ) {