powershell을 Background로 실행하기


참고: http://windowsitpro.com/powershell/powershell-background-jobs

Start-Job {Param($log,$newest) Get-EventLog $log -Newest $newest} -ArgumentList “system”,25

Start-Job -FilePath C:\scripts\Send-UptimeMail.ps1 -ArgumentList (Get-Credential jhicks@jdhitsolutions.com)

Get-Job 3 -IncludeChildJob

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s