System Grab Bag

View all TLDR pages from Windows (or from all pages)

Get-Date

Gets the current date and time. This command can only be used through PowerShell. More information: https://learn.microsoft.com/powershell/module/microsoft.powershell.utility/get-date.
  • Display the current date and time:
    Get-Date
  • Display the current date and time with a .NET format specifier:
    Get-Date -Format "{{yyyy-MM-dd HH:mm:ss}}"
  • Display the current date and time in UTC and ISO 8601 format:
    (Get-Date).ToUniversalTime()
  • Convert a Unix timestamp:
    Get-Date -UnixTimeSeconds {{1577836800}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.