Mesurer le temps de chargement et la taille d’une page web avec PowerShell
Code testé avec la version 5.1.16299.98 de powerShell ISE sur windows 10
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#pour autoriser Invoke-WebRequest #Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass try{ $site_url = "http://www.zenbien.com" $time = Measure-Command {$wr = Invoke-WebRequest -Uri $site_url} }catch{ write-host "Pb " $site_url return } write-host "time TotalMilliseconds:" $time.TotalMilliseconds write-host "StatusCode :" $wr.StatusCode write-host "RawContent.Length :" $wr.RawContent.Length |