5 lines
338 B
PowerShell
5 lines
338 B
PowerShell
$client = new-object System.Net.WebClient
|
|
$client.DownloadFile("http://mapocrt.egalware.com:8085/maposrv.pfx","C:\Windows\Temp\maposrv.pfx")
|
|
|
|
$secureString = convertto-securestring "viadante16" -asplaintext -force
|
|
Import-PfxCertificate -FilePath C:\Windows\Temp\maposrv.pfx -CertStoreLocation Cert:\LocalMachine\My -Password $secureString |