Start-Job Problems
- by laerte-junior
Hi all,
Why this code not works ?
function teste
{
begin
{
function lala {
while ($true){
"JJJJ" | Out-File c:\Testes\teste.txt -Append
}
}
}
process {
Start-Job -ScriptBlock {lala}
}
}