麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 開發 > PowerShell > 正文

Powershell后臺作業、異步操作實例

2020-05-30 20:10:13
字體:
來源:轉載
供稿:網友

Powershell是單線程程序且一次只能做一件事情。后臺作業能額外增加Powershell進程在后臺處理作業。當需要程序同時運行且數據量不是很大時它能很好的解決問題。但從Powershell后臺回傳數據是一個非常麻煩的工作,它將浪費很多時間。將會導致腳本更慢。

這里有3個并發執行任務:
代碼如下:
$start = Get-Date

# get all hotfixes
$task1 = { Get-Hotfix }

# get all scripts in your profile
$task2 = { Get-Service | Where-Object Status -eq Running }

# parse log file
$task3 = { Get-Content -Path $env:windir/windowsupdate.log | Where-Object { $_ -like '*successfully installed*' } }

# run 2 tasks in the background, and 1 in the foreground task
$job1 =  Start-Job -ScriptBlock $task1
$job2 =  Start-Job -ScriptBlock $task2
$result3 = Invoke-Command -ScriptBlock $task3

# wait for the remaining tasks to complete (if not done yet)
$null = Wait-Job -Job $job1, $job2

# now they are done, get the results
$result1 = Receive-Job -Job $job1
$result2 = Receive-Job -Job $job2

# discard the jobs
Remove-Job -Job $job1, $job2

$end = Get-Date
Write-Host -ForegroundColor Red ($end - $start).TotalSeconds

上面執行全部的任務消耗了5.9秒。三個任務的結果將分別存入$result1, $result2, 和 $result3.
讓我們再繼續查看相繼在前臺執行完命令需要多長時間:

代碼如下:
$start = Get-Date

# get all hotfixes
$task1 = { Get-Hotfix }

# get all scripts in your profile
$task2 = { Get-Service | Where-Object Status -eq Running }

# parse log file
$task3 = { Get-Content -Path $env:windir/windowsupdate.log | Where-Object { $_ -like '*successfully installed*' } }

# run them all in the foreground:
$result1 = Invoke-Command -ScriptBlock $task1
$result2 = Invoke-Command -ScriptBlock $task2
$result3 = Invoke-Command -ScriptBlock $task3

$end = Get-Date
Write-Host -ForegroundColor Red ($end - $start).TotalSeconds

結果,這次只花費了5.05秒。與后臺作業幾乎同時完成,所以后臺作業更適合解決長時間執行的任務。從三個任務返回的數據觀察,好處是這種按順數在前臺獲得數據能減少了執行過程的開銷。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 国产日产精品久久久久快鸭 | 久久丝袜脚交足黄网站免费 | 日韩欧美激情视频 | 久久草草亚洲蜜桃臀 | 久久免费视频一区 | 精品一区二区久久久久久按摩 | 日本高清在线免费 | 日韩黄色免费电影 | 国产精品男女 | 黄色免费在线网址 | 久久免费视频在线 | 午夜在线成人 | 亚洲精品在线观看网站 | 久久小视频| 龙床上的呻吟高h | 久久精品国产精品亚洲 | 中文区永久区 | 国产成人网 | 羞羞的视频在线观看 | 在线播放av片 | 成人三级在线播放 | 精品黑人一区二区三区国语馆 | 97视频一二区 | 欧美成人三级视频 | 欧美77 | 免费香蕉成视频成人网 | 欧美成人免费 | 日本视频免费观看 | 国产视频在线观看免费 | 免费黄色入口 | 久草干 | 亚洲综合一区二区三区 | 免费高清一级欧美片在线观看 | 色婷婷a | 久久亚洲美女视频 | 免费看黄色一级大片 | 欧美一区二区三区不卡免费观看 | 亚洲视频成人在线 | 男女一边摸一边做羞羞视频免费 | 亚洲一级网站 | 国产视频精品在线 |