Powershell 사이트 응답 을 검사 하고 실행 시간 예 를 계산 합 니 다.

명령 의 실행 시간 을 알 아야 할 때 가 있 습 니 다.예 를 들 어 Invoke-webReques 를 사용 하여 사이트 의 응답 을 보고 Measure-Command 를 사용 하여 실행 시간 을 계산 할 수 있 습 니 다.

$url = 'http://www.powershell.com'
 
 
# track execution time:
$timeTaken = Measure-Command -Expression {
  $site = Invoke-WebRequest -Uri $url
}
 
$milliseconds = $timeTaken.TotalMilliseconds
 
$milliseconds = [Math]::Round($milliseconds, 1)
 
"This took $milliseconds ms to execute"
그 중에서 되 돌아 오 는 시간 간격 속성 에는'TotalMilliseconds'속성 이 포함 되 어 있 습 니 다.필요 하 다 면 Round()함 수 를 사용 하여 정리 할 수 있 습 니 다.이 예 에서 우 리 는 소수점 뒤의 첫 번 째 자 리 를 유지 할 것 입 니 다.

좋은 웹페이지 즐겨찾기