我有一个简单的 powershell 脚本,可以创建一个 txt 文件,因此:-
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 以便内容是动态的。
非常感谢任何帮助
保罗