Windows ISO 8601 timestamp

后端 未结 3 1320
长发绾君心
长发绾君心 2021-02-13 00:31

I need to convert a date in Windows PowerShell to the ISO 8601 format.

In Linux/Unix it was no problem with

TZ=0 date -d \"\"          


        
3条回答
  •  旧巷少年郎
    2021-02-13 01:21

    Get-Date supports Unix formatting strings with the -UFormat parameter. You can reuse it:

    Get-Date -UFormat '+%Y-%m-%dT%H:%M:%S.000Z'
    

提交回复
热议问题