metasploitable3/scripts/installs/install_chocolatey.ps1

5 lines
194 B
PowerShell
Raw Normal View History

2016-08-30 17:53:02 +02:00
$ChocoInstallPath = "$env:SystemDrive\ProgramData\Chocolatey\bin"
if (!(Test-Path $ChocoInstallPath)) {
iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
}