salt/pkg/windows/download_url_file.ps1
markuskramerIgitt 1cb0b5c6a7 Lesser logging
2018-07-19 20:04:06 +02:00

14 lines
214 B
PowerShell

#
# ps1 wrapper for psm1
#
#
Param(
[Parameter(Mandatory=$true)][string]$url,
[Parameter(Mandatory=$true)][string]$file
)
Import-Module ./Modules/download-module.psm1
DownloadFileWithProgress $url $file