在 Kiosk 模式下更新由 Windows 商店提供的 UWP 应用
Updating a UWP app, in Kiosk Mode, delivered by the Windows Store
我想编写一个托管在 Windows Store for Business 中的 UWP 应用程序,这样我就可以将更新推送到我们所有 运行 使用该应用程序的 PC。
我也希望应用程序 运行 作为 Kiosk 应用程序,我认为它被称为 "Assigned access method"。
谁能告诉我当我将应用更新推送到 Windows 商店时会发生什么?该应用程序是自动更新并强制更新给 Kiosk 应用程序的用户,还是用户可以选择拒绝更新?
Can someone tell me what happens when I push an update to the app to
the Windows Store? Is the app automatically updated and forced upon
the user of the Kiosk app, or does the user get the option to reject
the update?
当您的更新通过认证后,用户将无法通过分配的访问方法更新您的应用,他们需要退出 kiosk 模式。更新可以在后台下载并在他们关闭并重新启动您的应用程序时完成。
没有直接拒绝更新的选项。但是,如果用户关闭 Update apps automatically
in Store 应用程序设置,他们可以决定是否手动更新您的应用程序:
对于 mandatory update,您可以在创建提交时通过勾选 Make this update mandatory
来启用它。但此功能要求开发人员使用强制设置在他们自己的代码中强制执行强制应用程序更新。例如,您可以在安装强制更新之前禁用某些功能。
我想编写一个托管在 Windows Store for Business 中的 UWP 应用程序,这样我就可以将更新推送到我们所有 运行 使用该应用程序的 PC。
我也希望应用程序 运行 作为 Kiosk 应用程序,我认为它被称为 "Assigned access method"。
谁能告诉我当我将应用更新推送到 Windows 商店时会发生什么?该应用程序是自动更新并强制更新给 Kiosk 应用程序的用户,还是用户可以选择拒绝更新?
Can someone tell me what happens when I push an update to the app to the Windows Store? Is the app automatically updated and forced upon the user of the Kiosk app, or does the user get the option to reject the update?
当您的更新通过认证后,用户将无法通过分配的访问方法更新您的应用,他们需要退出 kiosk 模式。更新可以在后台下载并在他们关闭并重新启动您的应用程序时完成。
没有直接拒绝更新的选项。但是,如果用户关闭 Update apps automatically
in Store 应用程序设置,他们可以决定是否手动更新您的应用程序:
对于 mandatory update,您可以在创建提交时通过勾选 Make this update mandatory
来启用它。但此功能要求开发人员使用强制设置在他们自己的代码中强制执行强制应用程序更新。例如,您可以在安装强制更新之前禁用某些功能。