Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を含む変数$dateがあり24 June 2012 00:00:00ます。
24 June 2012 00:00:00
これをに変換するにはどうすればよい24/06/2012ですか?
24/06/2012
Get-Dateコマンドレットを Format パラメーターと共に使用します。
Get-Date
PS> $date = '24 June 2012 00:00:00' PS> Get-Date $date -Format 'dd/MM/yyyy' 24/06/2012