2011-12-21 13 views

答えて

13

Windows PowerShellは、常に答えです!これは優れた

+0

を支援

# Cycle IIS if it's not running Get-Service W3SVC | Where-Object {$_.Status -ne 'Running' } | Start-Service Import-Module WebAdministration # Cycle websites that are not started Get-Website | Where-Object { $_.State -ne 'Started' } | ForEach-Object { $_.Start() } 

希望:これはあなたの特定の質問のためにそれを行う必要があります!ありがとう。 – strum

関連する問題