mdm

How to access UWP application settings set by MDM?

徘徊边缘 提交于 2020-01-04 06:11:24
问题 I am using EnterpriseModernAppManagement CSP to install and set settings for some UWP app as defined here: https://msdn.microsoft.com/en-us/library/windows/hardware/dn904956(v=vs.85).aspx .../PackageFamilyName/AppSettingPolicy/SettingValue (only for ./User/Vendor/MSFT) Added in Windows 10, version 1511. The SettingValue and data represent a key value pair to be configured for the app. UWP app installs correctly and settings setup (via AppSettingPolicy) execute successfully. But how do I now

iOS MDM Enrollment SCEP Specification and PKIOperation and operation=PKIOperation &message=MMIC

我们两清 提交于 2020-01-03 05:55:08
问题 Following the issue in iOS MDM Enrollment Profile Request of /profile to sign the certificate using java Now I almost get some of the functionalities working. based on the OTA configuration provided at https://developer.apple.com/library/ios/documentation/networkinginternet/conceptual/iphoneotaconfiguration/Art/ota_developer_flow_chart.jpg I am currently on Phase 2 Step 3 where i am trying to pass a CA to the device. Below are the request calls made from the device: /enroll /profile /scep

Not able to send the mdm Payload and Command to device

旧城冷巷雨未停 提交于 2020-01-03 05:27:07
问题 I am developing mdm for iOS for testing purpose. I have installed the profile on the device and I have got the Device Token, PushMagic and now I want to send the mdm payload  {"mdm":"PushMagicValue"} and for this I am using the code from APNSWrapper import * wrapper = APNSNotificationWrapper('PushCert.pem', False) message = APNSNotification() message.token('CgeMZKRl2cqZAmGQ0VNCvySXAsaMPqeHga9ZUC3kqpM=') message.appendProperty(APNSProperty('mdm', 'D60DAB80-A41D-4689-9F14-004E29431742'))

Detecting iOS app with app lock MDM profile

狂风中的少年 提交于 2020-01-03 04:54:14
问题 We are doing an app where we apply app lock to the app.we need to check if the app lock profile is already installed or not.is there a way to check if it is already installed in the app.We need to do this as because when a new version of app is installed in device then app lock profile cannot be added to the new app as it is already installed in the older app.is there a way to detect if app lock is installed in the app or not programmatically. 回答1: IOS MDM has a command "Profile list". It

Google EMM APIs return The caller is not registered as an MDM

无人久伴 提交于 2020-01-02 14:48:41
问题 I'm now testing the Google EMM Apis and I'm trying to generate a signup url for enrolling an enterprise. scopes = ['https://www.googleapis.com/auth/androidenterprise'] credentials = ServiceAccountCredentials.from_json_keyfile_name( 'my_key.json', scopes) http_auth = credentials.authorize(Http()) API = 'androidenterprise' VERSION = 'v1' SERVICE = discovery.build(API, VERSION, http=http_auth) response = SERVICE.enterprises().generateSignupUrl(callbackUrl='http://www.my_site.com').execute()

Data transfer between application outside profile and inside profile in Android Lollipop

喜欢而已 提交于 2020-01-01 06:10:40
问题 Question related to Android for Work . My application was a device Admin privileged app and now I have modified the code which creates a managed work profile and sets itself as the profile owner. The question is, if I upgrade my application, it becomes a profile owner from device admin. Now there will be two copies of my application, one outside the profile and one inside (badged version). Is there a way if I need to transfer some data from the personal space app to the work profile app

Data transfer between application outside profile and inside profile in Android Lollipop

心不动则不痛 提交于 2020-01-01 06:10:39
问题 Question related to Android for Work . My application was a device Admin privileged app and now I have modified the code which creates a managed work profile and sets itself as the profile owner. The question is, if I upgrade my application, it becomes a profile owner from device admin. Now there will be two copies of my application, one outside the profile and one inside (badged version). Is there a way if I need to transfer some data from the personal space app to the work profile app

Provisioning Profiles Can Be Installed Using MDM

杀马特。学长 韩版系。学妹 提交于 2020-01-01 05:42:06
问题 Apple's Mobile Device Management Protocol Reference states on page 44 at the bottom Third-party enterprise applications require provisioning profiles in order to run them. You can use MDM to deliver up-to-date versions of these profiles so that users do not have to manually install these profiles, replace profiles as they expire, and so on. To do this, deliver the provisioning profiles through MDM instead of distributing them through your corporate web portal or bundled with the application.

Updating Configuration Profile installed in iOS device in MDM

為{幸葍}努か 提交于 2019-12-30 09:32:58
问题 I want to send a configuration payload to a device. Eg. I want to send a restriction payload (Disallow safari) to a particular device. i.e. I want to update the configuration profile installed on the device. Do I need to send this configuration profile payload same way as I send the query payloads? Do I need to include all the configuration payloads of the configuration profile which exists on the device? OR Just need to send the one I need to update. Please help!!! 回答1: It needs to be the

Update an expired iOS MDM profile

非 Y 不嫁゛ 提交于 2019-12-30 07:15:25
问题 So I set up the SCEP server to generate an iOS identity certificate which is only valid for a short time. When it expires the profile says "This profile has expired. Update this profile for a newer version", and presents an "Update Profile" button. However clicking this button simply tells me "Profile could not be updated. Please contact your networks Administrator". No attempt is made to contact either the MDM service or the SCEP service, and no indication of any MDM activity or errors