0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

format-tableの出力カラム数

Posted at

概要

format-tableは通常は10までのcolumnしか出せないが、-property *をつけると10を超えて表示できる。

詳細

まあ、概要がすべてなんだが、昨日はChatGPTにも聞いたんだが、カラムが10は「知らない」と言われた。

・・ということは、まだWEBに蔓延している情報ではないのだということで公開

以下の内容だとp10まで出さないが、Format-Tableに-property *つけるとp11までいく

test.ps1
[pscustomobject] @{
  'p1'=1;
  'p2'=1;
  'p3'=1;
  'p4'=1;
  'p5'=1;
  'p6'=1;
  'p7'=1;
  'p8'=1;
  'p9'=1;
  'p10'=1;
  'p11'=1;
  } | Format-Table

けっこうググったが確かにあまり情報はなかったなあ

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?