Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I Start a job of a function i just defined?

function FOO { write-host "HEY" } Start-Job -ScriptBlock { FOO } |
Receive-Job

Receive-Job: The term 'FOO' is not recognized as the name of cmdlet,
function ,script file or operable program.

What do I do? Thanks.

share|improve this question

3 Answers

up vote 7 down vote accepted

As @Shay points out, FOO needs to be defined for the job. Another way to do this is to use the -InitializationScript parameter to prepare the session.

For your example:

$functions = {
    function FOO { write-host "HEY" }
}

Start-Job -InitializationScript $functions -ScriptBlock {FOO}|
    Wait-Job| Receive-Job

This can be useful if you want to use the same functions for different jobs.

share|improve this answer

@Rynant's suggestion of InitializationScript is great

I thought the purpose of (script) blocks is so that you can pass them around. So depending on how you are doing it, I would say go for:

$FOO = {write-host "HEY"}

Start-Job -ScriptBlock $FOO | wait-job |Receive-Job

Of course you can parameterize script blocks as well:

$foo = {param($bar) write-host $bar}

Start-Job -ScriptBlock $foo -ArgumentList "HEY" | wait-job | receive-job
share|improve this answer
I agree that if all @Alex58 wants to do is run a single function a parameterized ScriptBlock is the way to go. But if he is defining multiple functions or an advanced function, InitializationScript can be very helpful. For example: you could define functions FOO and BAR in the initialization script, then run a job with scriptblock {FOO; BAR} and another job with {BAR; FOO} – Rynant Aug 23 '11 at 15:37
@Rynant - I agree. That is why I said "depending on how you are doing it". PS: Got the name wrong in my answer. Meant Rynant and not Matt. – manojlds Aug 23 '11 at 15:44

The function needs to be inside the scriptblock:

Start-Job -ScriptBlock { function FOO { write-host "HEY" } ; FOO } | Wait-Job | Receive-Job
share|improve this answer
In all two cases the job remain in 'running' state! Don't know why... – C.B. Aug 23 '11 at 14:27
Mine is completed, not sure why yours is still running. Can you test this again in a fresh instance? – Shay Levy Aug 23 '11 at 18:27
I think there's an issue with xp sp3 and posh 2.0. Now I'm on a windows 7 and backgroudjobs work great. I've googled but found nothing. Maybe just my personal issue on xp sp3. Some similar was start-job with import-module with w2k3 or xp sp3... On w2k8 and w2k8r2 no problems. – C.B. Aug 23 '11 at 18:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.