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?

Powershellで他のスクリプトを読み込ませたい

Posted at

1 背景

他のpowershellスクリプトを読み込み実行する方法を確認したかったので備忘録として書きます。

2 他のpowershellスクリプトを読み込ませる方法

スクリプト内に以下のように実行したいスクリプトを記載します。

test.ps1
./yomikomi.ps1

読み込みたい内容は以下の通りです。

yomikomi.ps1
Write-Host "静岡県は温暖な気候です"

実行結果は以下の通りです。

test.ps1実行結果
静岡県は温暖な気候です

文の数が多くなり、スクリプト本体を直接編集することは余計なミスが増える恐れが出てきます。
本体を編集することなく内容を変更できるようになることがメリットです。

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?