mirror of
https://github.com/massgravel/get.activated.win.git
synced 2024-11-09 13:28:33 +01:00
Fix $RandomURL2
This commit is contained in:
parent
fc2bb7be70
commit
de6bdbf67f
1 changed files with 2 additions and 2 deletions
2
get
2
get
|
@ -9,7 +9,7 @@ $DownloadURL2 = 'https://bitbucket.org/WindowsAddict/microsoft-activation-script
|
|||
|
||||
$URLs = @($DownloadURL1, $DownloadURL2)
|
||||
$RandomURL1 = Get-Random -InputObject $URLs
|
||||
$RandomURL2 = $URLs -ne $RandomURL1
|
||||
$RandomURL2 = ($URLs -ne $RandomURL1)[0]
|
||||
|
||||
try {
|
||||
$response = Invoke-WebRequest -Uri $RandomURL1 -UseBasicParsing
|
||||
|
|
Loading…
Reference in a new issue