Tagged Questions
The start-job tag has no wiki summary.
3
votes
1answer
467 views
Powershell Start-Job won't run
I'm trying to run a simple job process in powershell 2.0 and it doesn't seem to run.
$job = Start-Job { Return "Some string." }
When I call $job, the status says it's running. But the problem ...
3
votes
3answers
2k views
PowerShell Start-Job Working Directory
Is there a way to specify a working directory to the Start-Job command?
Use-case:
I'm in a directory, and I want to open a file using Emacs for editing. If I do this directly, it will block ...
3
votes
1answer
2k views
Start-job vs. Invoke-command -asjob
I'm trying to do basic background jobs in PowerShell 2.0, and I'm seeing different things with start-job and invoke-command -asjob.
If I do this:
start-job -scriptblock {get-process}
I get a job ...
2
votes
2answers
71 views
Background Job in Powershell
I'm trying to run a job in a background which is a .exe with parameters and the destination has spaces. For example:
$exec = "C:\Program Files\foo.exe"
and I want to run this with parameters:
...
1
vote
1answer
349 views
Remote Get-WmiObject call fails when within Start-Job scriptblock
Alright, I've tried to figure this out, but figured it's time to ask the interwebs. I'm wondering if this is a bug or what.
I'm trying to start jobs against multiple computers to determine which ...
1
vote
2answers
141 views
Why are script properties lost when passing pscustomobject to start-job script block?
On windows XP x64 (and I assume win2k3) powershell 2.0, passing an arraylist of pscustomobjects to start-job as argumentlist parameter passes the object in but scriptproperties just disappear from the ...
1
vote
1answer
384 views
Powershell Start-job new window run as administrator
I have script which write some COMMAND to another script and start them in new window with Start-Job command (I really need that). $cred is credential of local administrator. Main script started from ...
1
vote
1answer
540 views
Get-WmiObject with credential fails when within Start-Job scriptblock
I am successfully retrieving some information from Windows 2000 machines using the Get-WmiObjet cmdlet. These machines are not part of our domain so I am using the -Credential parameter to pass local ...
1
vote
1answer
660 views
PSExec never completes when run inside start-job
I'm trying to execute a cmd file on a list of 48 computers. I don't want to execute and wait for completion sequentially because each cmd takes about 10 minutes to complete. WinRM isn't an option. ...
0
votes
0answers
82 views
PowerShell Start-Job and Oracle
I have a ps script (say Set-Data.ps1) that calls a ps Run.ps1 with Start-Job as :
Start-Job -FilePath Run.ps1 -ArgumentList 1, 2
In Run.ps1 I have a line of code as:
$cs = ...;
Write-Output "1";
...