# 后台运行
Start-Job -ScriptBlock {ping 8.8.8.8}
# 查看后台任务
Get-Job
# 停止运行ID为1的后台任务
Stop-Job -Id 1
# 将ID为1的后台任务从后台移除
Remove
2023-03-17