次のようにtxtファイルを作成する単純なpowershellスクリプトがあります:-
set-executionpolicy unrestricted -force
$MyVar = 'My Content'
$MyVar | out-file -FilePath "C:\_Testing\test.txt"
これは、ColdFusion スクリプトから呼び出されます:-
<cfexecute name="C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe"
arguments="C:\ColdFusion9\wwwroot\testsite\wwwroot\_Testing\powershellTest.ps1"/>
そして、それは機能します-txtファイルを作成してコンテンツを入れますが、私がやりたいことは、cfexecuteを介して変数を$ MyVarに渡して、コンテンツが動的になるようにすることです。
どんな助けでも大歓迎です
ポール