我有几个 powershell 脚本,我从一个 powershell 脚本运行。
我正在使用 try-catch 来停止错误。但这不适用于我正在调用的外部脚本。我不能使用点源,因为某些脚本需要 32 位版本的 PowerShell(与需要 32 位的 QuickBooks API 调用有关)
所以我目前使用完整的路径名来调用它,所以我有这样的东西:
try {
# QB API requires powershell 32 bit: Open Sales Order by Item Report Call
& C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Unrestricted -file $ScriptDir\QB_API_Open_Sales_Orders_by_Item.ps1
# QB API requires powershell 32 bit: Inventory List Call
& C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Unrestricted -file $ScriptDir\QB_API_Inventory_List.ps1
# x64bit powershell: Convert QB_API Sales and Inventory Fiels from XML to CSV using XSLT
& C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Unrestricted -file $ScriptDir\transform_xml.ps1
# x64bit powershell: run vendor vs sales file to get final output
& C:\WINDOWS\system32\WindowsPowerShell\v1.0\powershell.exe -ExecutionPolicy Unrestricted -file $ScriptDir\Create_Sales_order_MPN_using_join.ps1
}
catch
{
Write-Warning $Error[0]
}
如果我对脚本进行点源,它可以正常工作,但是外部调用它,它不会。关于如何捕获错误并停止脚本的建议?