extracting a .zip file into %AppData%\

732 Views Asked by At

I am looking to use the same Expand-Archive Powershell cmd to unzip the files but instead of using a local location for eg C:\Program Files\Folder\Folder\Folder\Folder" I am trying to extract the zip file into the logged on users profile so that the zip file will unpack it's payload into the users %APPDATA%\Folder\Folder\Folder\Folder\Folder

I have amended the -DestinationPath but it fails to unzip the contents into the users profile.but seems to just create a file named %APPDATA%

can anybody help ?

$SourcePath = "nameoffile.zip" $Destination = "C:\Program Files\Folder\Folder\Folder\Folder" Expand-Archive -Path $SourcePath -DestinationPath $Destination –Force write-host "nameofzipfile unzipped successfully"

1

There are 1 best solutions below

0
On

%appdata% is a environment variable used by batch (cmd). if you want to use the same reference in powershell you use $env:appdata

$Destination = "$env:appdata\Folder\Folder\Folder\Folder\Folder"