1

リモート マシンで Powershell v2.0 を使用しており、次のコードを使用してそこでワークフローを作成しました。

workflow install {
Param(
[Parameter(Mandatory=$True, Position=1)]
[string]$currentLocation
)
... 
}

Powershell v3.0 を使用しているローカル マシンでテストしましたが、動作していますが、リモート マシンでは次のエラーが発生します。

The term 'workflow' 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.
At C:\Install\Longitude\Longitude Components\Install.ps1:6 char:9
+ workflow <<<<  install {
    + CategoryInfo          : ObjectNotFound: (workflow:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
4

1 に答える 1