为什么不能将此日期转换为Unix DateTime:我遇到了语法错误

([DateTime]"2015.08.24 09:10") -UFormat %s

什么是正确的语法?

最佳答案

UFormatGet-Date的cmdlet参数,不是独立的运算符。试试这个:

 Get-Date '2015.08.24 09:10' -UFormat %s

关于powershell - 在Powershell中使用UFormat转换时为什么会出现语法错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32619741/

10-10 02:25