尝试使用sendkey

时间:2019-01-31 15:57:33

标签: powershell powerbi sendkeys

第一个SendKeys "%H"被识别。我在报告中看到了结果。但是“ R”不是。

Reports\Templates\Sensor_Exporter\Master8.pbix

Start-Sleep -s 15
$wshell = New-Object -ComObject WScript.Shell

[void][System.Reflection.Assembly]::LoadWithPartialName("'Microsoft.VisualBasic");

[Microsoft.VisualBasic.Interaction]::AppActivate("Master8 - Power BI Desktop");

Start-Sleep -s 5

$wshell.SendKeys("%H")
$wshell.SendKeys("R")

1 个答案:

答案 0 :(得分:0)

只需要在两个sendkey之间放置start-sleep -s 2 现在正在工作。