1
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 3 years have passed since last update.

Powershellで待機時間を設定する方法

Posted at

Powershellで待機時間でメッセージを標準出力で出力する方法です。

## Sleepクラスを定義する
class Sleep {
    [int]$wait=10
    [String]$msg1="START"
    [String]$msg2="END"
}
# インスタンスを呼び出す
$sl = [Sleep]::new()

# wait処理を行う
for($i=0;$i -lt 2;$i++){
    Write-Host $sl.msg1
    Start-Sleep $sl.wait
    Write-Host $sl.msg2
}

このスクリプトで10秒待機してから処理が進むようにスクリプトを作成しています。

1
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
1
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?