我通过使用计划任务在用户登录时为用户安装应用程序解决了这个问题。这是我的计划任务的 xml - 随时将此 xml 导入任务计划程序以查看格式化版本:
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2016-08-11T15:22:07.0657007</Date>
<Author>YourNameHere</Author>
<Description>This task installs and updates the app</Description>
<URI>\app_install_task</URI>
</RegistrationInfo>
<Triggers>
<LogonTrigger>
<Enabled>true</Enabled>
</LogonTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<GroupId>S-1-5-32-545</GroupId>
<RunLevel>HighestAvailable</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>true</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>false</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>true</Enabled>
<Hidden>false</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>PT1H</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions>
<Exec>
<Command>C:\Windows\System32\GroupPolicy\User\Scripts\Logon\your_app_bundle\install.exe</Command>
</Exec>
</Actions>
</Task>
为了使其尽可能无缝,我必须采取一些额外的步骤:
- 我将应用程序的安装包移动到 C:\Windows\System32\GroupPolicy\User\Scripts\Logon\ 以便任务调度程序始终可以访问它
- 我使用 PowerGUI(可在线免费获得)将我的 Powershell 安装脚本编译为 .exe,以便安装在后台运行 - 安装运行时不会弹出 Powershell 窗口
- 我还添加了一些 Powershell 代码来检查应用程序是否已安装,这样安装程序就不会在用户每次登录时运行 - 它仅在未安装应用程序或应用程序版本不同时安装应用程序(这表明应用程序需要更新)
如果其他人遇到更简单的方法来完成此操作,请告诉我——我很想在未来简化此过程。