以管理员身份执行程序时获取登录用户

时间:2012-10-31 12:08:37

标签: c# windows-installer msiexec

当我的程序使用msiexec.exe安装时,它会向任务调度程序添加一个任务,以检查它是否正在运行,如果不是,则启动它(这是一个自助服务终端场景)。

        WindowsIdentity windowsIdentity = WindowsIdentity.GetCurrent();
        string user = windowsIdentity.Name

不幸的是,我的任务被添加为SYSTEM,在运行时将无法访问UserEnvironment。有没有人知道一种方法来获取发起命令的用户而不是用户msiexec.exe正在运行?

1 个答案:

答案 0 :(得分:1)

如果您需要在安装过程中进行检查 - 您可以在VBScript上使用自定义操作,例如,它会在WMI的帮助下检查已记录的用户。

Option Explicit

Dim objReg, objWMI, colSessions

Set objReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")
Set objWMI = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\cimv2") 

Set colSessions = objWMI.ExecQuery("Select * from Win32_LogonSession Where LogonType = 2 Or LogonType = 10") 
If colSessions.Count <> 0 Then 
    'Some users are logged into Windows.
    'For example set property 
    'Session.Property("SOMEONELOGGED") = "1"
End If