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, ∼2806🔥, 0💬
Popular Posts:
What is the scheduled task "\OneDrive Standalone Update Task-S-1-..." on my Windows 7 computer? "\On...
Where to find tutorials on using Windows 10? I want to learn how to use Windows 10 more efficiently....
What is "Health Key and Certificate Management" in my Windows XP service list? And how is "Health Ke...
What is "Protexis Licensing V2" in my Windows 7 service list? And how is "Protexis Licensing V2" ser...
Signing in on my computer that doesn't run 8 works just fine. So must be windows eight that is causi...