mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-08-02 23:12:51 +02:00
7 lines
209 B
PowerShell
7 lines
209 B
PowerShell
# Copyright The OpenTelemetry Authors
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
$url=$args[0]
|
|
$arr=$args[0].Split("/")
|
|
$fileName=$arr[$arr.Count-1]
|
|
Invoke-WebRequest -Uri $url -OutFile $fileName -UseBasicParsing
|