PowerShell で日本語の出力結果が化ける。
回避策
コマンドプロンプト(cmd.exe) から PowerShell (powershell.exe) を実行する。
PowerShell で日本語の出力結果が化ける。
コマンドプロンプト(cmd.exe) から PowerShell (powershell.exe) を実行する。
1 |
Set-ItemProperty <ファイル名> -Name <プロパティ名> -value <年月日 時分秒> |
1 |
Set-ItemProperty MySample.c -Name CreationTime -value "2023/11/13 17:35:00" |
CreationTime
: 作成日時LastWriteTime
: 更新日時MS-DOS互換のショートファイル名(short filename ; SFN)/8.3形式を表示させる方法
エイリアス | コマンドレット |
---|---|
? |
Where-Object |
%, foreach |
ForEach-Object |
gci, dir, ls |
Get-ChildItem |
select |
Select-Object |
cat |
Get-Content |
sc |
Set-Content |
echo |
Write-Output |
ft |
Format-Table |
fw |
Format-Wide |
epcsv |
Export-Csv |
measure |
Measure-Object |
PowerShellをつかったgrep-likeな正規表現スクリプト
続きを読む
*.Count
続きを読む
1 |
Get-ChildItem -File -Recurse | Get-ACL | Where-Object {$_.Owner -like"*chihaya"} | Format-Table -property Owner, Path -Wrap |
1 |
ls -file -recurse | get-acl | ? {$_.Owner -like "*chihaya"} | format-table -property owner, path -wrap |
1 |
PS > gci -recurse -file -include *.c, *.h | % { (cat $_) -join "`r`n" | sc $_ } |