Skip to content

Instantly share code, notes, and snippets.

@IISResetMe
Created April 2, 2025 13:29
Show Gist options
  • Select an option

  • Save IISResetMe/0168974181cf1527d049c8fecabb2db7 to your computer and use it in GitHub Desktop.

Select an option

Save IISResetMe/0168974181cf1527d049c8fecabb2db7 to your computer and use it in GitHub Desktop.
# start timer
$timer = [System.Diagnostics.Stopwatch]::StartNew()
# wait at least 100ms
Start-Sleep -Milliseconds (Get-Random -Minimum 100 -Maximum 1500)
# stop timer
$timer.Stop()
$time = $timer.Elapsed.TotalSeconds
# format seconds
$timestamp = '{0:00.000}' -f $time
# use resulting value in expandable string
"$($timestamp): Something happened"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment