1

我已按策略将应用程序强制安装到我注册的设备中。如何从我注册的设备远程卸载该应用程序。

4

4 回答 4

1

要远程卸载应用程序,您只需从策略中删除该应用程序即可。

例如,您有一个安装了 Dropbox force 的策略:

policy_json = '''
{
  "applications": [
    {
      "packageName": "com.google.samples.apps.iosched",
      "installType": "FORCE_INSTALLED"
    },
    {
      "packageName": "com.dropbox.android",
      "installType": "FORCE_INSTALLED"
    },
  ],
  "debuggingFeaturesAllowed": true
}
'''

并且您决定要删除保管箱,只需将其从应用程序策略中删除,然后应将其从设备中卸载。

policy_json = '''
{
  "applications": [
    {
      "packageName": "com.google.samples.apps.iosched",
      "installType": "FORCE_INSTALLED"
    }
  ],
  "debuggingFeaturesAllowed": true
}
'''
于 2021-02-02T17:35:12.860 回答
0

将应用程序的 InstallType 设置为 BLOCKED

https://developers.google.com/android/management/reference/rest/v1/enterprises.policies?hl=en#installtype

于 2020-12-24T13:15:10.833 回答
0

尝试从策略中删除应用程序部分,在某些设备上它可以工作,有些则不能。

ApplicationPolicy 下有 disabled 属性,尝试使用它而不是卸载它肯定会起作用。

于 2020-12-05T09:58:49.920 回答
0

修补应用程序策略删除要卸载的应用程序并将策略推送到该设备,这将根据策略卸载应用程序

于 2021-01-18T10:17:26.293 回答