我正在尝试在我的 Windows 10 Azure VM 中运行 python 脚本。我已设法连接到 VM 并从自动化运行手册运行脚本,但运行手册完成后似乎没有输出 powershell 脚本中的任何内容。
我的 python 脚本存储在C:\Users\username\Desktop\test.py
:
print("Hello World.")
我的 powershell 脚本存储在C:\Users\username\Desktop\test.ps1
:
Write-Output "Starting Script..."
C:\Users\username\Python\python.exe C:\Users\username\Desktop\test.py
Write-Output "Shutting Down..."
我的 Azure Runbook 名为 VMRunTest:
$connectionName = "AzureRunAsConnection"
try
{
# Get the connection "AzureRunAsConnection "
$servicePrincipalConnection=Get-AutomationConnection -Name $connectionName
"Logging in to Azure..."
Add-AzureRmAccount `
-ServicePrincipal `
-TenantId $servicePrincipalConnection.TenantId `
-ApplicationId $servicePrincipalConnection.ApplicationId `
-CertificateThumbprint $servicePrincipalConnection.CertificateThumbprint
}
catch {
if (!$servicePrincipalConnection)
{
$ErrorMessage = "Connection $connectionName not found."
throw $ErrorMessage
} else{
Write-Error -Message $_.Exception
throw $_.Exception
}
}
$rgname ="ParcelTracking"
$vmname ="ParcelTracking-Scraper"
$ScriptToRun = "C:\Users\username\Desktop\test.ps1"
Out-File -InputObject $ScriptToRun -FilePath ScriptToRun.ps1
Invoke-AzureRmVMRunCommand -ResourceGroupName $rgname -Name $vmname -CommandId 'RunPowerShellScript' -ScriptPath ScriptToRun.ps1
Remove-Item -Path ScriptToRun.ps1
根据文档,它还要求我打开 VM 上的输出端口以允许443
带有AzureCloud
标签的端口。在下图中,您的设置是什么。
当我执行 Azure Runbook 时,我没有收到任何错误、警告和异常。这是以下输出:
Logging in to Azure...
Environments
------------
{[AzureChinaCloud, AzureChinaCloud], [AzureCloud, AzureCloud], [AzureGermanCloud, AzureGermanCloud], [AzureUSGovernme...
Value : {Microsoft.Azure.Management.Compute.Models.InstanceViewStatus,
Microsoft.Azure.Management.Compute.Models.InstanceViewStatus}
Name :
StartTime :
EndTime :
Status : Succeeded
Error :
Output :
Capacity : 0
Count : 0
Item :
因此,它似乎已经成功,但是我没有看到任何提及该Hello World.
语句或来自 powershell 脚本的任何输出语句。所以,我只能假设 python 脚本没有执行。我也通过在 python 脚本上尝试这个过程来知道这一点,这个过程大约需要 15 分钟才能运行,并且它会在 1 分钟内完成。
我想我已经接近了,只是在某处遗漏了一些小细节。任何帮助将不胜感激。