Use Start-Sleep instead of Sleep

This commit is contained in:
Chiyuan Ma 2018-01-22 16:05:34 -08:00
Родитель ed4d983993
Коммит 8d190ae0d5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -10,7 +10,7 @@ RUN dism.exe /online /add-package /packagepath:c:\install\Microsoft-NanoServer-I
rd /s /q c:\install & \
Powershell -NoProfile -Command \
Start-Service Was; \
While ((Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Services\WAS\Parameters\ -Name NanoSetup -ErrorAction Ignore) -ne $null) {Sleep 1}
While ((Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Services\WAS\Parameters\ -Name NanoSetup -ErrorAction Ignore) -ne $null) {Start-Sleep 1}
EXPOSE 80