Azure Python CLI:在使用 @ 但不使用内联命令传递脚本文件时,使用 运行-command 调用的启动脚本失败
Azure Python CLI: launch script with run-command invoke fails when passing the script file with @ but not with inline commands
我有一个项目旨在使用具有以下结构的 AZCLI 在 Azure VM 中将 PowerShell 脚本启动到 运行
* /myAPP
* /main (package)
* main.py
* /util (package)
* auth.py
* launchscript.py
* testscript.ps1
main.py 从 launchscript.py 调用 class 以启动脚本本身。
- 如果我使用内联选项将 PS 脚本启动到 VM,它就可以工作
import azure.cli.core as azclicor
output = azclicor.get_default_cli().invoke(['vm','run-command','invoke','--command-id','RunPowerShellScript','--name','VM1','-g','VM_RG','--scripts','hostname'])
- 当我使用模块内的脚本启动它时失败
import azure.cli.core as azclicor
output = azclicor.get_default_cli().invoke(['vm','run-command','invoke','--command-id','RunPowerShellScript','--name','VM1','-g','VM_RG','--scripts','`@testscript.ps1'])
错误:“术语 'testscript.ps1' 未被识别为 cmdlet、函数、脚本文件或可运行程序的名称。”就像我使用的一样不存在的脚本的另一个名称。所以它似乎找不到脚本,即使它与调用它的模块位于同一文件夹中。
然而,在另一个测试项目中我有:
* /myAPPTest
* /util (package)
* main.py
* auth.py
* launchscript.py
* testscript.ps1
使用@的方法有效,代码完全相同。我认为问题可能出在模块以及 Python 如何加载它们,但我真的很困惑,不知道要测试什么才能使第一个(更多嵌套的)版本工作
问题请参考以下代码
我的项目结构
* /cli (package)
* main.py
* /util (package)
* test.ps1
我的 powershell 文件
Get-Process | Out-File -FilePath C:\Process.txt
我的代码
import azure.cli.core as azclicor
import os.path as path
t=path.dirname(path.abspath(__file__))+'/until/test.ps1'
file_path=t.replace('\','/')
output = azclicor.get_default_cli().invoke(['vm','run-command','invoke','--command-id',
'RunPowerShellScript','--name','worker','-g','worker_group',
'--scripts', f'@{file_path}'])
结果
我有一个项目旨在使用具有以下结构的 AZCLI 在 Azure VM 中将 PowerShell 脚本启动到 运行
* /myAPP
* /main (package)
* main.py
* /util (package)
* auth.py
* launchscript.py
* testscript.ps1
main.py 从 launchscript.py 调用 class 以启动脚本本身。
- 如果我使用内联选项将 PS 脚本启动到 VM,它就可以工作
import azure.cli.core as azclicor
output = azclicor.get_default_cli().invoke(['vm','run-command','invoke','--command-id','RunPowerShellScript','--name','VM1','-g','VM_RG','--scripts','hostname'])
- 当我使用模块内的脚本启动它时失败
import azure.cli.core as azclicor
output = azclicor.get_default_cli().invoke(['vm','run-command','invoke','--command-id','RunPowerShellScript','--name','VM1','-g','VM_RG','--scripts','`@testscript.ps1'])
错误:“术语 'testscript.ps1' 未被识别为 cmdlet、函数、脚本文件或可运行程序的名称。”就像我使用的一样不存在的脚本的另一个名称。所以它似乎找不到脚本,即使它与调用它的模块位于同一文件夹中。
然而,在另一个测试项目中我有:
* /myAPPTest
* /util (package)
* main.py
* auth.py
* launchscript.py
* testscript.ps1
使用@的方法有效,代码完全相同。我认为问题可能出在模块以及 Python 如何加载它们,但我真的很困惑,不知道要测试什么才能使第一个(更多嵌套的)版本工作
问题请参考以下代码
我的项目结构
* /cli (package)
* main.py
* /util (package)
* test.ps1
我的 powershell 文件
Get-Process | Out-File -FilePath C:\Process.txt
我的代码
import azure.cli.core as azclicor
import os.path as path
t=path.dirname(path.abspath(__file__))+'/until/test.ps1'
file_path=t.replace('\','/')
output = azclicor.get_default_cli().invoke(['vm','run-command','invoke','--command-id',
'RunPowerShellScript','--name','worker','-g','worker_group',
'--scripts', f'@{file_path}'])
结果