powershell - 从任务计划程序运行的 PowerShell 脚本中的 Msgbox 不起作用

标签 powershell scheduled-tasks msgbox

我有一个 PowerShell 脚本,它创建一个计划任务来启动该脚本。这个想法是脚本中有一些任务需要重新启动。在 PowerShell 的末尾,应有一个消息框提示用户,让用户知道所有任务均已完成。我究竟做错了什么?

Add-Type -AssemblyName PresentationFramework

TaskName = "Run Agents Install Script"
$TaskDescription = "Run Agents Install Script at logon"
$Action = New-ScheduledTaskAction -Execute 'Powershell.exe' `
  -Argument "-executionpolicy remotesigned -File $PSScriptRoot\AgentInstall.ps1"
$Trigger =  New-ScheduledTaskTrigger -AtLogOn

Register-ScheduledTask -Action $Action -Trigger $Trigger -TaskName $TaskName -Description $TaskDescription -User "System"


$MsgBoxInput =  [System.Windows.MessageBox]::Show('Installation completed successfully.','Agent Install','OK')
Switch  ($MsgBoxInput) {
    'OK' 
   {

$MsgBoxInput =  [System.Windows.MessageBox]::Show('WARNING! Please install Imprivata agent manually if applicable.','Agent Install','OK')
   }
}

最佳答案

一种选择是使用终端服务 API 向控制台发送消息。不幸的是,它是 native API,因此您需要使用 .NET 互操作来调用它,但在这种情况下它并不太棘手:

$typeDefinition = @"
using System;
using System.Runtime.InteropServices;

public class WTSMessage {
    [DllImport("wtsapi32.dll", SetLastError = true)]
    public static extern bool WTSSendMessage(
        IntPtr hServer,
        [MarshalAs(UnmanagedType.I4)] int SessionId,
        String pTitle,
        [MarshalAs(UnmanagedType.U4)] int TitleLength,
        String pMessage,
        [MarshalAs(UnmanagedType.U4)] int MessageLength,
        [MarshalAs(UnmanagedType.U4)] int Style,
        [MarshalAs(UnmanagedType.U4)] int Timeout,
        [MarshalAs(UnmanagedType.U4)] out int pResponse,
        bool bWait
     );

     static int response = 0;

     public static int SendMessage(int SessionID, String Title, String Message, int Timeout, int MessageBoxType) {
        WTSSendMessage(IntPtr.Zero, SessionID, Title, Title.Length, Message, Message.Length, MessageBoxType, Timeout, out response, true);

        return response;
     }

}
"@

Add-Type -TypeDefinition $typeDefinition

[WTSMessage]::SendMessage(1, "Message Title", "Message body", 30, 36)

这本质上是 WTSSendMessage 的薄包装。功能。

您需要通过查询等工具获取SessionID。此脚本可能会有所帮助:Get-UserSession .

这里的TimeOut值为30,这意味着弹出窗口将等待30秒,然后返回值“32000”。设置为“0”以永远等待。

MessageBoxType 是此处 uType 值的组合:MessageBox Function 。因此,示例中的“36”是“MB_YESNO”和“MB_ICONQUESTION”值的组合,因此将显示一 strip 有问号图标和"is"/“否”按钮的消息。请注意,文档提供了十六进制值,因此您需要对其进行转换。

我将此作为以管理员身份运行的计划任务进行测试,它能够在不同登录用户的桌面上显示一条消息。希望有帮助。

关于powershell - 从任务计划程序运行的 PowerShell 脚本中的 Msgbox 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54357542/

相关文章:

regex - Powershell RegEx - 捕获 "too much"(不遵守非贪婪指标?)

string - VB6 从资源中读取字符串

excel - 如果有任何失败,如何显示所有失败,如果没有,则显示没有失败框

inno-setup - 如何在运行时更改 MsgBox 消息标题?

powershell - 使用Power Shell阅读XAML

powershell - 如何在Powershell 4.0 API中将ExecutionPolicy配置为 “RemoteSigned”

javascript - 在 javascript 中使用文件名和计划函数调用

linux - 检查 Linux 中代码的两点之间是否发生抢占

python - 非特定时间一天一次的crontab?

powershell - 成员枚举在 PowerShell 3 中如何工作?