1
私はpowershell_script料理ブックを使用しています。私が使用したいPowerShellスクリプトには、コマンドライン入力が必要です。シェフから変数を渡してpowershellスクリプトに渡す方法はありますか?シェフからpowershellに変数を渡す
だから、input1 = "input1"
input2 = "input2"
powershell_script 'example' do
code "...\example.ps1"
end
コマンドライン引数は、どのように私はにそれらを渡すように私example.ps1がINPUT1とINPUT2かかった場合:
code "...\example.ps1"
[PowerShellのコマンドライン引数を処理する方法]の可能な重複(http://stackoverflow.com/questions/2157554/how-to-handle-command-line-arguments-in-パワーシェル) –