I know there is package like go-ps to give us active running process in Windows, but this package doesn't have process start time and other information of process.
And I know in Windows power shell with this command I can get process start time.
Get-Process | select name, starttime
I don't want to execute command and get result the parse it, actually the main Idea is how to get process time with main Go packages like os.