2014-04-23 2 views
2

PowerShell에서 워크 플로우 세션을 사용할 때 가장 일반적인 명령이 사라 것으로 보인다 :명령 사라

PS P:\> $session = New-PSWorkflowSession -ThrottleLimit 3 
PS P:\> Invoke-Command $session {Write-Output "test"} 

The term 'Write-Output' is not recognized as the name of a cmdlet, function, script 
file, or operable program. Check the spelling of the name, or if a path was included, 
verify that the path is correct and try again. 
+ CategoryInfo   : ObjectNotFound: (Write-Output:String) [], CommandNotFoundException 
+ FullyQualifiedErrorId : CommandNotFoundException 
+ PSComputerName  : localhost 

나는 통해 사용할 수있는 워크 플로우에서 일반적으로 사용할 수있는 모든 일반적인 명령을 만들기 위해 할 수있는 일 세션?

답변