I have an Azure Pipeline PowerShell 5.1 step that installs the .Net SDK on an array of servers. Is there a way to mark start and finish times of the installs for each server?
Install sdk on each server
Invoke-Command -ComputerName $computers -Credential $credential {
c:tempdotnet-sdk-8.0.303-win-x64.exe /install /quiet /norestart | Out-Null
}