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?

More than 1 year has passed since last update.

PowerShellで文字列出力(コマンドプロンプトのechoみたいなこと)

Posted at

やり方(固定の文字列)

Write-Output "えこーみたいなことしたい";

実行結果。
image.png

やり方(変数の中身確認)

$date_ = Get-Date -Format "yyyyMMdd_HHmmss";
Write-Output $date_;

実行結果。
image.png

参考サイトさん

バージョン

Microsoft Windows [Version 10.0.19045.3570]
PSVersion 5.1.19041.3570

0
0
2

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?