
get-date
List of commands for get-date:
-
get-date:tldr:10488 get-date: Convert a Unix timestamp.$ Get-Date -UnixTimeSeconds ${1577836800}try on your machineexplain this command
-
get-date:tldr:921ac get-date: Display the current date and time.$ Get-Datetry on your machineexplain this command
-
get-date:tldr:9d1c5 get-date: Display the current date and time with a .NET format specifier.$ Get-Date -Format "${yyyy-MM-dd HH:mm:ss}"try on your machineexplain this command
-
get-date:tldr:e452d get-date: Display the current date and time in UTC and ISO 8601 format.$ (Get-Date).ToUniversalTime()try on your machineexplain this command