mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
11 lines
259 B
PowerShell
11 lines
259 B
PowerShell
[CmdletBinding()]
|
|
param ()
|
|
$web = New-Object System.Net.WebClient
|
|
if( -not ( Test-Path $env:APPDATA\.lokinet -PathType Container ) )
|
|
{
|
|
lokinet.exe -g
|
|
}
|
|
|
|
|
|
$web.DownloadFile("https://seed.lokinet.org/lokinet.signed", "$env:APPDATA\.lokinet\bootstrap.signed")
|