Skip to content

Commit

Permalink
chore: add date information to windows startup logs (#12905)
Browse files Browse the repository at this point in the history
  • Loading branch information
Emyrk committed Apr 10, 2024
1 parent e266ecf commit 4dc293d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions provisionersdk/scripts/bootstrap_windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ while ($true) {
# executing shell to be named "sshd", otherwise it fails. See:
# https://github.com/microsoft/vscode-remote-release/issues/5699
$BINARY_URL="${ACCESS_URL}/bin/coder-windows-${ARCH}.exe"
Write-Output "Fetching coder agent from ${BINARY_URL}"
Write-Output "$(Get-Date) Fetching coder agent from ${BINARY_URL}"
Invoke-WebRequest -Uri "${BINARY_URL}" -OutFile $env:TEMP\sshd.exe
break
} catch {
Write-Output "error: unhandled exception fetching coder agent:"
Write-Output "$(Get-Date) error: unhandled exception fetching coder agent:"
Write-Output $_
Write-Output "trying again in 30 seconds..."
Write-Output "$(Get-Date) trying again in 30 seconds..."
Start-Sleep -Seconds 30
}
}

# Check if running in a Windows container
if (-not (Get-Command 'Set-MpPreference' -ErrorAction SilentlyContinue)) {
Write-Output "Set-MpPreference not available, skipping..."
Write-Output "$(Get-Date) Set-MpPreference not available, skipping..."
} else {
Set-MpPreference -DisableRealtimeMonitoring $true -ExclusionPath $env:TEMP\sshd.exe
}
Expand Down

0 comments on commit 4dc293d

Please sign in to comment.