mdm

How to develop mobile device management application in iOS

假如想象 提交于 2019-11-30 01:55:27
I have many iOS devices in my company and I have to manage them centrally, so we tried to use third party MDM applications for eg: airwatch but it is very costly. We decided not to use it and are thinking of creating a MDM from scratch. We tried all solutions available online but I didn't get any solution. Can anyone please help me with this. Durai Amuthan.H iOS MDM is clientless protocol. So, you develop a server, but you don't develop a client application for it. Actually, there is a client app, but it's developed by Apple and built into operation system. So, your server will send a command,

iOS Enterprise developer Account: get device token

£可爱£侵袭症+ 提交于 2019-11-29 21:08:50
I have used the iOS development account for creating APNS SSL certificate for sending the push notification to an iOS device for development purpose. I can get the device token using objective c sample code in iOS device.Then I can use that device token to send push notification for that specific iOS device. Now I am going to implement MDM and for MDM iOS Enterprise account is required. There are some questions, which I want to confirm if someone has already done. So I want to know can I use iOS Enterprise account for creating "apns ssl certificate" for development purpose? Can I get device

How to generate development MDM/APNS certificate?

泪湿孤枕 提交于 2019-11-29 20:21:11
We have taken iOS developer Enterprise account and we have received the MDM certificate which is in .pem format.We have download this mdm certificate from the portal https://identity.apple.com/pushcert/ But we don't have idea that this is production MDM certificate or development MDM certificate. First we want to test MDM commands using development certificate and after getting MDM payloads,we can can continue for production. So my question is how to create MDM/APNS certificate which can be used for getting MDM push notification from gateway.sandbox.push.apple.com , if this is possible. I have

Using autonomousSingleAppModePermittedAppIDs and UIAccessibilityRequestGuidedAccessSession together with Meraki as MDM to enter single app mode

烈酒焚心 提交于 2019-11-29 20:03:28
问题 I have a small number of devices I've set as supervised using Apple Configurator. However I'm unable to get the app to successfully enter single app mode using the UIAccessibilityRequestGuidedAccessSession API. I created a configuration profile with restrictions set in the Meraki console, in particular I've set the "Allowed Single App Mode" field in the Meraki console to my app bundle id. I'm assuming this field in Meraki maps to the autonomousSingleAppModePermittedAppIDs configuration key. I

iOS MDM profile signing, which certificate to use?

和自甴很熟 提交于 2019-11-29 15:18:13
问题 Okay, so look at this diagram. There are two little boxes, that signify how a given profile should be signed. In Phase 2, step 1, it says "Apple issued certificate", but it doesn't say which apple issued certificate (they issue more than one). I have tried my developer certificate and the MDM (APNS) certificate. It wasn't one of those. Is there a third magic certificate I somehow need (and how do I get it)? In Phase 3, step 2, it says "Identity certificate", but again it's a little sketchy on

Can I prevent an iOS user from changing the date and time?

本小妞迷上赌 提交于 2019-11-29 02:49:06
问题 I want to deploy managed iOS devices to employees of the company, and the app they will use will timestamp data that will be recorded locally, then forwarded. I need those timestamps to be correct, so I must prevent the user from adjusting the time on the device, recording a value, then resetting the date and time. Date and time will be configured to come from the network automatically, but the device may not have network connectivity at all times (otherwise I would just read network time

iOS: MDM Check-in samples

懵懂的女人 提交于 2019-11-28 20:39:58
问题 I am in early stage of Mobile Device Management implementation. I am in process to get iOS Enterprise developer account.I have already started exploring MDM Server implementation. I need some iOS sample Check-in data which is received from iOS device. These samples are required to understand to write APIs in server side,because these APIs should be common for Blackberry,Android and other mobile platforms. 回答1: You can get step by step all the sample plist in the MDM_Protocol document also.

Apple MDM Vendor CSR Signing

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-28 17:39:53
I hit ' Invalid Certificate Signing Request ' when uploading plist to https://identity.apple.com/pushcert/ , and below are steps I used to generate plist : As a vendor, create vendor CSR using KeyChain Access of the MacBook to upload to member centre to generate MDM signing certificate, and export private key from KeyChain Access in p12 format, say vendor.p12 Create customer CSR, using Openssl : - openssl genrsa -des3 -out customerPrivateKey.pem 2048 - openssl req -new -key customerPrivateKey.pem -out customer.csr As a vendor, download MDM signing certificate, WWDR intermediate certificate

MDM workflow in Android

那年仲夏 提交于 2019-11-28 17:33:59
Can any one help me out how to do MDM Integration in Android from client and server prespective? I want to do an enterprise application which having lock and wipe functionality. I have no any clue of workflow of MDM in Android. Thanks. Pankaj Kumar Android Device Admin API will do both things what you want to do (lock/wipe device and even more). An example is given and also you can find this complete source code in your Android SDK directory. Now as client server perspective: You have to implement your task (lock and wipe) in your android application (in client, i.e. known as agent). Now your

iOS Enterprise developer Account: get device token

北城余情 提交于 2019-11-28 17:17:46
问题 I have used the iOS development account for creating APNS SSL certificate for sending the push notification to an iOS device for development purpose. I can get the device token using objective c sample code in iOS device.Then I can use that device token to send push notification for that specific iOS device. Now I am going to implement MDM and for MDM iOS Enterprise account is required. There are some questions, which I want to confirm if someone has already done. So I want to know can I use