回答編集履歴

1

コード追加

2020/06/23 08:42

投稿

ku__ra__ge
ku__ra__ge

スコア4524

test CHANGED
@@ -1 +1,19 @@
1
1
  `Export-CSV`ではなく`ConvertTo-Csv`を使ってCSV文字列の出力を得てから、`Select-Object -skip 1`でその1行目をスキップして`Set-Content`でテキストファイルに保存すればokです。
2
+
3
+
4
+
5
+ ```powershell
6
+
7
+ $list = @(
8
+
9
+ [PSCustomObject]@{year="2020"; month="12"; day="11"},
10
+
11
+ [PSCustomObject]@{year="2020"; month="12"; day="24"}
12
+
13
+ )
14
+
15
+
16
+
17
+ $list | ConvertTo-Csv -NoTypeInformation | Select-Object -Skip 1 | Set-Content "no_title_csv.csv"
18
+
19
+ ```