This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Check if Erlang is installed | |
# | |
$erlangkey = Get-ChildItem HKLM:\SOFTWARE\Wow6432Node\Ericsson\Erlang -ErrorAction SilentlyContinue | |
if ( $erlangkey -eq $null ) { | |
Write-Host "Erlang not found, need to install it" | |
Start-Process -Wait otp_win64_R16B03.exe /S | |
} | |
# |