Skip to content

Commit

Permalink
Merge pull request cloudbase#12 from virmitio/master
Browse files Browse the repository at this point in the history
updating winrm script to openssl 1.0.1i
  • Loading branch information
ociuhandu committed Aug 14, 2014
2 parents 664fad5 + 4477bb5 commit fcaafe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SetupWinRMAccessSelfSigned.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ function VerifyHash($filename, $expectedHash) {

function InstallOpenSSL() {
if (!(Test-Path $opensslPath)) {
$filename = "Win32OpenSSL_Light-1_0_1h.exe"
$filename = "Win32OpenSSL_Light-1_0_1i.exe"
Invoke-WebRequest -Uri "http://slproweb.com/download/$filename" -OutFile $filename

VerifyHash $filename "25B3B7023159793DD613575E275016D91C91B4A4"
VerifyHash $filename "303A6010192161C3BA103978DD4D6932CA9340DC"

Start-Process -Wait -FilePath $filename -ArgumentList "/silent /verysilent /sp- /suppressmsgboxes"
del $filename
Expand Down

0 comments on commit fcaafe4

Please sign in to comment.