Download a zip file from the internet and extract using PowerShell.

Just a tip #4

The code below will download the .zip file from the internet, then extracts the files from the zip and opens the extracted folder…

$Url = '' 
$ZipFile = 'C:\ZipFolder\' + $(Split-Path -Path $Url -Leaf) 
$Destination= 'C:\Extracted\' 

Invoke-WebRequest -Uri $Url -OutFile $ZipFile 

$ExtractShell = New-Object -ComObject Shell.Application 
$Files = $ExtractShell.Namespace($ZipFile).Items() 
$ExtractShell.NameSpace($Destination).CopyHere($Files) 
Start-Process $Destination

 zip  
 unzip  
 tips  
Share it on     |   |   |   | 
  Prev:  

Create New Azure VM Using PowerShell(Az)

  :Next  

‘Clear-Recyclebin’ Is Not Recognized As The Name Of A Cmdlet In Powershell Core

comments powered by Disqus