powershell

powershell で XML データを扱う

powershell で XML データを扱う方法をメモ。今回は [xml] でキャストする方法、Select-Xml を使う方法を試してみました。サンプルだけですが、以下の感じになります。 Select-Xml のほうは *****: みたいに取得結果にファイル名が表示されるので -split で …

powershell でファイル読み書き

最近、必要に迫られてちょくちょく触る powershell。とりあえず、ファイル読み書きサンプルを自分用にメモしておきます。 ■ FileReadWrite.ps1 $input = "C:\Users\test\Desktop\powershell\input.txt" $output1 = "C:\Users\test\Desktop\powershell\output…