Every time I type in
date -d @1588560000
in the windows command prompt, I get the following message
C:\Users\msaad>date -d "@1588501800"
The system cannot accept the date entered.
Enter the new date: (mm-dd-yy)`
Can anyone help me with this?
Every time I type in
date -d @1588560000
in the windows command prompt, I get the following message
C:\Users\msaad>date -d "@1588501800"
The system cannot accept the date entered.
Enter the new date: (mm-dd-yy)`
Can anyone help me with this?
I set the unix timestamp date 0 and add it that number of seconds:
(Get-Date -Date "1970-01-01 00:00:00Z").toUniversalTime().addSeconds(1588560000)