Last active
February 7, 2018 17:11
-
-
Save mystix/f0c195b32ef8cdfc48ac6c1f5234049a to your computer and use it in GitHub Desktop.
Powershell: Download Portable Apps Platform to Desktop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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