Collections:
Other Resources:
"Get-Job" Cmdlet in Windows PowerShell
How to use "Get-Job" cmdlet in Windows PowerShell?
✍: FYIcenter.com
You can use the "Get-Job" cmdlet to display existing Windows PowerShell background job on the local computer.
Below is an example of "Get-Job" cmdlet displaying background jobs:
PS C:\fyicenter> start-job {get-process}
Id Name PSJobTypeName State HasMoreData Command
-- ---- ------------- ----- ----------- -------
2 Job2 BackgroundJob Running True get-process
PS C:\fyicenter> start-job {$now = get-date}
Id Name PSJobTypeName State HasMoreData Command
-- ---- ------------- ----- ----------- -------
4 Job4 BackgroundJob Running True $now = get-date
PS C:\fyicenter> get-job
Id Name PSJobTypeName State HasMoreData Command
-- ---- ------------- ----- ----------- -------
2 Job2 BackgroundJob Completed True get-process
4 Job4 BackgroundJob Completed False $now = get-date
⇒ "Receive-Job" Cmdlet in Windows PowerShell
⇐ "Start-Job" Cmdlet in Windows PowerShell
2016-10-08, ∼2956🔥, 0💬
Popular Posts:
What is service "AEADIFilters" and program "AEADISRV.EXE" on Windows Vista? "AEADIFilters" is a syst...
What is the HP Software Installation step doing during Windows 7 initial set up? If you bought a new...
Where to find information about what system services are running on Windows Server 2012? I want to k...
Can I disable Windows service "ASP.NET State Service" to speedup my computer? Windows service "ASP.N...
How to remove REFIEBAR.DLL - Microsoft Research Extra Toolbar Button and Extra Tools Menu Item for I...