如何在已部署的 Windows 映像上为所有用户旁加载 Windows 应用程序?
How do I Sideload a Windows App for All Users on Already Deployed Windows Images?
我们有一个面向 Windows 8.1 和 Windows 10 的企业 Windows 商店应用程序。我们目前正在使用旁加载来部署该应用程序。我们需要能够为特定设备上的所有用户部署应用程序。
根据这篇 technet 文章:
https://technet.microsoft.com/en-us/library/dn613833(v=ws.11).aspx
您可以使用 DISM 为设备上的所有用户配置应用程序,但仅限于尚未登录该设备的用户:
Provisioned apps are injected in the image and are installed for every
user the first time the user logs on.
我想做的是为特定设备上的所有当前用户安装我们的应用程序,无论他们之前是否登录过该设备。
我做了很多研究,但没有找到任何详细说明如何完成此操作的内容。
Windows 商店应用目前可以做到这一点吗?
我通过使用计划任务在用户登录时为他们安装应用程序解决了这个问题。这是我的计划任务的 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,以便在后台安装 运行s - 安装时不会弹出 Powershell window 运行s
- 我还添加了一些 Powershell 代码来检查应用程序是否已经安装,这样安装程序就不会 运行 每次用户登录时 - 它只会在应用程序未安装时安装应用程序, 或者如果应用版本不同(这表明应用需要更新)
如果其他人遇到更简单的方法来完成此操作,请告诉我 - 我很乐意在将来简化此过程。
我们有一个面向 Windows 8.1 和 Windows 10 的企业 Windows 商店应用程序。我们目前正在使用旁加载来部署该应用程序。我们需要能够为特定设备上的所有用户部署应用程序。
根据这篇 technet 文章:
https://technet.microsoft.com/en-us/library/dn613833(v=ws.11).aspx
您可以使用 DISM 为设备上的所有用户配置应用程序,但仅限于尚未登录该设备的用户:
Provisioned apps are injected in the image and are installed for every user the first time the user logs on.
我想做的是为特定设备上的所有当前用户安装我们的应用程序,无论他们之前是否登录过该设备。
我做了很多研究,但没有找到任何详细说明如何完成此操作的内容。
Windows 商店应用目前可以做到这一点吗?
我通过使用计划任务在用户登录时为他们安装应用程序解决了这个问题。这是我的计划任务的 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,以便在后台安装 运行s - 安装时不会弹出 Powershell window 运行s
- 我还添加了一些 Powershell 代码来检查应用程序是否已经安装,这样安装程序就不会 运行 每次用户登录时 - 它只会在应用程序未安装时安装应用程序, 或者如果应用版本不同(这表明应用需要更新)
如果其他人遇到更简单的方法来完成此操作,请告诉我 - 我很乐意在将来简化此过程。