我知道我可以使用
在PowerShell中为变量设置日期$a = Get-Date
效果很好,但在查看有关格式化日期的文档时,MMDDYY
没有。{/ p>
我如何做到这一点?
答案 0 :(得分:3)
因为$a
实际上是System.DateTime。你可以这样做:
$a = Get-Date
Write-Host $a.ToString('MMddyy')
自定义日期和时间格式字符串的完整详细信息位于 Custom Date and Time Format Strings 。
答案 1 :(得分:0)
您必须使用-UFormat
选项获得创意。为了得到你想要的东西,请运行:
(Get-Date -UFormat %m)+(Get-Date -UFormat %d)+(Get-Date -UFormat %y)
但是我认为这更容易阅读:
Get-Date -UFormat %D