Powershell 現在日時から日付だけを取得する方法
環境
Windows 11 pro 64bit
powershell 5.1.22000.282
操作方法
1.powershellを起動します
2.現在日時から日付だけを取得するには、以下のコマンドを実行します。
> Get-Date -DisplayHint Date
2024年5月25日
3.時刻だけを取得する場合は、以下のコマンドを実行します。
> Get-Date -DisplayHint Time
21:54:13