Collections:
Other Resources:
"Invoke-Command -AsJob" - Remote Background Jobs in PowerShell
How to start a background job on a remote computer in Windows PowerShell?
✍: FYIcenter.com
You can use the "Invoke-Command -AsJob" cmdlet to start a background job on
a remote computer.
Actually, the "Invoke-Command -AsJob" cmdlet is creating a local background job that runs the specified command on a remote computer. So "Invoke-Command office-server -AsJob {...}" is similar to "Start-Job {Invoke-Command office-server {...}}".
Here is an example of using the "Invoke-Command -AsJob" cmdlet:
PS C:\fyicenter>Invoke-Command office-server -ScriptBlock {Get-EventLog system} -AsJob Id Name State HasMoreData Location Command --- ---- ----- ----- ----------- --------------- 1 Job1 Running True office-server Get-EventLog system
⇒ Introduction of Windows PowerShell ISE
⇐ "Remove-Job" Cmdlet in Windows PowerShell
2016-10-05, 5406🔥, 0💬
Popular Posts:
What is "Net.Msmq Listener Adapter" in my Windows 7 service list? And how is "Net.Msmq Listener Adap...
How to edit Mozilla FireFox configuration file? Mozilla FireFox has a configuration file that contro...
What is pdf.ocx - ActiveX - Adobe Acrobat Control Version 6.0 for ActiveX? ActiveX pdf.ocx is instal...
How to configure Mozilla FireFox to use Notepad to edit Web page source code? By default, when you u...
I just installed the Windows 8 Release Preview on the Samsung slate that we attendees got at the MIX...