Skip to content

Instantly share code, notes, and snippets.

@mystix
Last active February 7, 2018 17:11
Show Gist options
  • Save mystix/f0c195b32ef8cdfc48ac6c1f5234049a to your computer and use it in GitHub Desktop.
Save mystix/f0c195b32ef8cdfc48ac6c1f5234049a to your computer and use it in GitHub Desktop.
Powershell: Download Portable Apps Platform to Desktop
# adapted from https://blog.jourdant.me/post/3-ways-to-download-files-with-powershell
$version = "14.4.3"
$url = "http://download3.portableapps.com/portableapps/pacplatform/PortableApps.com_Platform_Setup_$version.paf.exe"
$output = "$home\Desktop\paf.exe"
Import-Module BitsTransfer
Start-BitsTransfer -Source $url -Destination $output
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment