This commit is contained in:
Adam Roben 2012-07-11 16:07:56 -04:00
Родитель 5ae8147017
Коммит c5ac3888e0
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -13,6 +13,11 @@ function Install-Cygwin {
}
}
function Create-RootDirectory {
# Our bootstrapping scripts rely on /root existing in a bash shell.
New-Item C:\cygwin\root -Type Directory | Out-Null
}
function Register-Sshd {
Add-Type -Assembly System.Web
$password = [Web.Security.Membership]::GeneratePassword(16, 4)
@ -22,4 +27,5 @@ function Register-Sshd {
}
Install-Cygwin
Create-RootDirectory
Register-Sshd