Certificates and Application Resigning

Size: px
Start display at page:

Download "Certificates and Application Resigning"

Transcription

1 Certificates and Application Resigning Introduction In the following chapters we will be reviewing how to resign an application along with how to get the needed resources for the process. To successfully resign the application we have to check if the following resources: Apple Enterprise distribution certificate Distribution Profile.IPA file: This should be the application to be resigned ResourcesRules.plist file Entitlements.plist file Let s start describing how to obtain the distribution certificate and profile from the Apple Portal. This document assumes that your company is already enrolled in the ios Developer Enterprise Program. For more information about the program, visit the enterprise developer home at apple.com How to get Distribution Certificate and Profile Once you enroll your company in the Apple s Enterprise Program, you need to get a couple of files from the apple s portal to sign the application for enterprise distribution. These files are: Distribution Certificate Distribution Profile The Certificates: To get the distribution certificate from the portal, first we have to create a client request, which will be uploaded to the portal in order to generate the certificate. The following are the complete steps in order to get the Certificate correctly: Launch the Keychain Access app. In the Preferences menu, set Online Certificate Status Protocol (OSCP) and Certificate Revocation List (CRL) to Off.

2 Choose Keychain Access - > Certificate Assistant - > Request a Certificate from a Certificate Authority. Note: If you have a non- compliant private key highlighted in the Keychain during this process, the resulting Certificate Request will not be accepted by the Provisioning Portal. Confirm that you are selecting Request a Certificate From a Certificate Authority... and not selecting Request a Certificate From a Certificate Authority with <Private Key> In the User Address field, enter your address. Please ensure that the address entered matches the information that was submitted when you registered as an ios Developer. In the Common Name field enter your name. Please ensure that the name entered matches the information that was submitted when you registered as an ios Developer. No CA (Certificate Authority) Address is required. The Required message will be removed after completing the following step.

3 Select the Saved to Disk radio button and if prompted, select Let me specify key pair information and click Continue. If Let me specify key pair was selected, specify a file name and click Save. In the following screen select 2048 bits for the Key Size and RSA for the Algorithm. Click Continue.

4 The Certificate Assistant will create a CSR file on your desktop. After creating a CSR, log in to the ios Provisioning Portal and navigate to Certificates > Distribution and click Add Certificate. Click the Choose file button, select your CSR and click Submit. If the Key Size was not set to 2048 bits during the CSR creation process, the Portal will reject the CSR. Once approved you should be able to download certificate. Certificate Installation: Now that we are done with the certificate, we have to install the certificate locally: In the Certificates > Distribution section of the Portal, control- click the WWDR Intermediate Certificate link and select Saved Linked File to Downloads to initiate download of the certificate.

5 On your local machine, double- click the WWDR Intermediate certificate to launch Keychain Access and install. Upon CSR approval, Team Members and Team Admins can download their certificates via the Certificates section of the Provisioning Portal. Click Download next to the certificate name to download your ios Development Certificate to your local machine.

6 On your local machine, double- click the downloaded.cer file to launch Keychain Access and install your certificate. Saving the Certificate Assuming that you already have the distribution/development certificate, you can also export it from your computer in order to save it as back up or to use it i another computer. To export the certificate from your computer following these steps: Open the keychain access application Locate the certificate under login keychain for My Certificates category, and check that it has an identity key associated

7 After that, send us the p12 file, this file should embed the identity key along with the certificate Note: the certificate must have an identity key associated, otherwise the certificate will not work. Application ID and Distribution Profile To get the distribution profile, you need to follow a few steps: First you need to create a new application ID (unless you already got one for the application you are trying to distribute), so go to your developer center home ( Login in dev center and enter the ios provisioning portal. Click on the App IDs section and then the New App ID button:

8 Once there you will see a form like the following, so fill the blanks with the corresponding data. Basically you have three fields Description: Name or description for the app id for further recognition around the portal Bundle Seed ID: Option Generate New recommended. Choosing one of possible existing seeds are useful for suit of application that shares certain private information

9 Bundle Identifier: A unique identifier for your App ID. The use of a reverse- domain name style string is the best practice for the Bundle Identifier portion of the App ID. i.e.: com.mycompany.appname Finally click the submit button. Getting the Profile: Go to the Provisioning section, and under the distribution tab click New Profile Now you should see a form like the following, so fill the blanks with the needed information.

10 Fields that you need to fill are: o Distribution Method: Ad Hoc is for internal distribution for testing purposes and specific device IDs are needed; the In House option let you create a profile that helps you to distribute the release build of the application internally and no device IDs are needed. o Profile Name: A name for the profile file. o Distribution Certificate: Tick the certificate that matches the profile, this should be the certificate that we exported in the first section o App ID: The application identifier we created above. After filling the fields, click the submit button. Once you have created the profile, go back to the Provisioning section under the Distribution tab. There you will find a list of the profiles that you already have, so locate the one we just created and download it. Note: Sometimes the profile takes just a minute to be available for download, in case you are not able to download the profile, just refresh the page after a few seconds and the download button should appear next to the profile name.

11 Application Resigning Once we have the needed certificate and profile from the Apple portal, it s time to resign the application. To resign the application we are going to follow these steps: Gather the needed resources to the resign process Open the IPA package and make changes when needed Resign the application. Close the IPA package Gather the needed resources to the resign process Assuming that you have the distribution certificate installed, we will need the following files to perform the resigning: 1. Distribution Profile: You should have this file already if you followed the steps of the previous chapter. 2. ResourcesRules.plist file: Create a plain text file and paste the following text in it. Make sure there are no additional characters, it is important not to break the plist structure. After that save the file as ResourcesRules and change its extension to.plist. <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" " <plist version="1.0"> <dict> <key>rules</key> <dict> <key>.*</key> <true/> <key>info.plist</key> <dict> <key>omit</key> <true/> <key>weight</key> <real>10</real> </dict> <key>resourcerules.plist</key> <dict> <key>omit</key> <true/> <key>weight</key> <real>100</real> </dict> </dict> </dict> </plist>

12 3. Entitlements.plist file: The same as the ResourcesRules.plist file, create an empty plain text file and paste the following. <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" " <plist version="1.0"> <dict> <key>application-identifier</key> <string>prefix.bundle.id</string> <key>get-task-allow</key> <false/> </dict> </plist> But this time, we have to replace the value for the <key> entry with the corresponding bundle identifier specified in the profile. So instead of PREFIX.bundle.id you should specify something like EQ84GUVU7D.com.mycompany.myapp. (check appendix I to learn how to get this value from the distribution profile). After making the changes, save the file as Entitlements and change its extension to.plist. 4. app.ipa file: Application file to be modify and resign. The name of this file may change depending on the application At this point you should have the following files in a folder in order to proceed with this steps.

13 Opening an IPA and perform modifications When modifying any part of an application's bundle, the target application must be in the app format. If the target application is in the ipa file format, it must be decompressed into the app file format in order to perform any code signature operations. The ipa format is just a renamed zip file which can be easily decompressed with any compression tool. To open the ipa file follow this instructions: 1. Locate the target file. 2. Change its extension to zip by renaming it. For instance, if the target is app.ipa change the file name to app.zip. 3. Decompress the new zip file. 4. Open the "Payload" folder that is in MyApplication.zip. 5. myapp.app is inside of the Payload folder. Once the.app package is unveiled, let s make the needed modifications in order to match this application to the certificate and profile of your company. Provisioning Profile The embedded provisioning profile is just a copy of the profile with which you sign the application for archive in a developer environment. In most distribution and re- signing scenarios this needs to be removed or changed. When removed, the user has to manually install the profile in the device in order to install the application from a remote location successfully; this is a way of control of which user has access to the application. The most common scenario when resigning for internal distribution is to change the profile with a new one, which is the one related to the certificate used to resign de build

14 Removing/Changing an Embedded Provisioning Profile 1. Assuming the target IPA has been decompressed, the myapp.app should be inside the Playload folder. 2. Control click (or right click) over the.app file, and select Show Package Contents 3. Once there, locate the embedded.mobileprovision file and delete it. 4. If you want to embed a new profile, rename your profile the same way (embedded.mobileprovision), and drop it in the same place.

15 In addition, if you are about to resign an application with new certificates, the following changes must be done in order to suceed the resigning: a. Locate the Info.plist file inside of the target's bundle (this means it is in the same place as the embedded.mobileprovision we deleted/replaced above). Open Info.plist with the Property List Editor application. b. Change the bundle identifier's value (CFBundleIdentifier) to the new app ID's bundle identifier. In this case com.mycompany.myapp c. Change the bundle name (CFBundleName) to the last component of the boundle identifier. In this case myapp. d. Save the plist and close the Property List Editor.

16 You can optionally change the CFBundleDisplayName to change the name of the application (which is the text that will be displayed under the icon in the device s home screen; can be different than the app name) or the CFBundleIconFile to change the icon file name, but its important not to do changes over the Info.plist file without certain information about the keys that are being changed. Resign the Application Now it s time to resign the package. To resign the build, the codesign command line tool is used, and it is executed as follows: /usr/bin/codesign -f -s "{SIGNER IDENTITY}" --resourcerules={resource RULES PATH} --entitlements {ENTITLEMENTS FILE PATH} {APPLICATION BUNDLE PATH} Parameters to be replaced: A. {SIGNER IDENTITY}: The signer identity of the certificate. For example "iphone Distribution: MyCompany". To get this value, you can launch the Keychain Access app, and find the correct certificate. The name of the certificate is the value you need to specify in the command. B. {RESOURCES RULES PATH}: Path to the ResourcesRules.plist we created above. C. {ENTITLEMENTS FILE PATH} Path of the Entitlements.plist file we also generated in previous steps.

17 D. {APPLICATION BUNDLE PATH} needs to be the path to the target application's bundle, such as myapp.app. For this example, the command should look as follows: /usr/bin/codesign -f -s "iphone Distribution: Southlabs S.R.L." --resourcerules=/users/myuser/desktop/resigning/resourcerules.plist --entitlements /Users/myUser/Desktop/Resigning/Entitlements.plist /Users/myUser/Desktop/Resigning/Playload/myApp.app Once you have all the parameters in place, just open the Terminal application and paste the command. If everything is ok, you should get the following message if the app was previously signed with a different certificate: replacing invalid existing signature Or the following message if the app was previously signed with the same certificate: replacing existing signature Note: The certificate used for the resigning process must be installed in Mac OS X, and must have an identity key associated. You can check this using the Keychain Access application under the login Keychains and My Certificates category. If the certificate doesn t have an identity key associated, the resigning process will fail.

18 Closing package an IPA To finish the process, we have to re- pack the.app file into an ipa file. To do this you have to follow these instructions: 1. Locate the target application's Payload folder. 2. Compress the Payload folder. a. In Mac OS X, this can be accomplished by secondary clicking (control- click or right- click) on the Payload folder and choosing "Compress 'Payload'". 3. Rename Payload.zip to app.ipa again. Important: Before zipping the Playload folder, make sure there are no additional files inside the folder. Any additional file in the folder, even hidden files like the common.ds_store file will make the application to return errors when trying to install the ipa file generated by re- zipping Playload folder. Conclusion After these steps the application is resigned with the appropriate certificate and ready for distribution. This method works for In- House distribution scenarios and also when dealing with MDM servers. To test the new resigned application you can use itunes or iphone Configuration Utility in order to install the application locally in a device before updating it to your distribution environment.

19 Apendix I How to get application identifier from the distribution profile To get the application identifier from the provisioning profile, follow these steps: Locate the corresponding distribution profile. Open the profile with a simple text editor such as TextEdit. Scroll through the file until find the Entitlements section: The value for the <key>application- identifier</key> key represent your application identifier. From there you will also have your bundle identifier, which is the application identifier without the seed number: o App identifier: EQ84GUVU7D.com.mycompany.myapp o Bundle Identifier : com.mycompany.myapp

APNS Certificate generating and installation

APNS Certificate generating and installation APNS Certificate generating and installation Quick Guide for generating and installing an Apple APNS Certificate Version: x.x MobiDM Quick Guide for APNS Certificate Page 1 Index 1. APPLE APNS CERTIFICATE...

More information

CA Mobile Device Management. How to Create Custom-Signed CA MDM Client App

CA Mobile Device Management. How to Create Custom-Signed CA MDM Client App CA Mobile Device Management How to Create Custom-Signed CA MDM Client App This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as

More information

How to generate an APNs Certificate to use the Apple MDM protocol via the portal

How to generate an APNs Certificate to use the Apple MDM protocol via the portal How to generate an APNs Certificate to use the Apple MDM protocol via the portal Introduction Before you can manage ios devices with your device management portal you will need an Apple Push Notification

More information

ios Team Administration Guide (Legacy)

ios Team Administration Guide (Legacy) ios Team Administration Guide (Legacy) Contents About ios Development Team Administration 5 At a Glance 6 Team Admins Manage Team Membership and Assign Roles in the Member Center 6 Development Devices

More information

Engage ios App Administrator s Guide

Engage ios App Administrator s Guide Engage ios App Administrator s Guide Contents Contents... 1 Introduction... 2 Target Audience... 2 Devices Supported... 2 SharePoint Platforms Supported... 2 SharePoint Security & Privileges... 2 Deploying

More information

Colligo Briefcase Enterprise. Administrator s Guide

Colligo Briefcase Enterprise. Administrator s Guide Enterprise Administrator s Guide CONTENTS Introduction... 2 Target Audience... 2 Overview... 2 Key Features... 2 Platforms Supported... 2 SharePoint Security & Privileges... 2 Deploying Colligo Briefcase...

More information

Mobile Secure Cloud Edition Document Version: 2.0-2014-06-26. ios Application Signing

Mobile Secure Cloud Edition Document Version: 2.0-2014-06-26. ios Application Signing Mobile Secure Cloud Edition Document Version: 2.0-2014-06-26 Table of Contents 1 Introduction.... 3 2 Apple Team Membership....4 3 Building a Team by Adding Team Admins and Team Members.... 5 4 App Protection

More information

Generating an Apple Enterprise MDM Certificate

Generating an Apple Enterprise MDM Certificate Good Mobile Control Server Generating an Apple Enterprise MDM Certificate Updated 09/30/11 Overview... 1 Generating Your Apple Certificate Using a Mac... 1 Generating Your Apple Certificate Using Windows...

More information

How to Obtain an APNs Certificate for CA MDM

How to Obtain an APNs Certificate for CA MDM How to Obtain an APNs Certificate for CA MDM Contents How to Obtain an APNs Certificate for CA MDM Verify Prerequisites Obtaining Root and Intermediate Certificates Create a Certificate Signing Request

More information

Zenprise Device Manager 6.1

Zenprise Device Manager 6.1 Zenprise Device Manager 6.1 APPLE APNS CERTIFICATE SETUP GUIDE Rev 6.10.00 2 ZENPRISE DEVICE MANAGER 6.1 APPLE APNS CERTIFICATE SETUP GUIDE 2011 Zenprise, Inc. All rights reserved. This manual, as well

More information

Guide for Generating. Apple Push Notification Service Certificate

Guide for Generating. Apple Push Notification Service Certificate Guide for Generating Apple Push Notification Service Certificate Contents Generating and Using APNs Certificate... 5 Understanding APNs Certificate... 6 Generating an APNs Certificate... 7 Initial Steps...

More information

Everything is Terrible

Everything is Terrible Everything is Terrible A deep dive into provisioning and code signing Hello and welcome to Everything is Terrible. This is a deep dive talk into the processes behind provisioning and code signing on Apple

More information

Knappsack ios Build and Deployment Guide

Knappsack ios Build and Deployment Guide Knappsack ios Build and Deployment Guide So you want to build and deploy an ios application to Knappsack? This guide will help walk you through all the necessary steps for a successful build and deployment.

More information

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29 I. Before Publishing 1. System requirements Requirements for ios App publishing using FlyingCatBuilder Mac running OS X version 10.9.4 or later Apple Development Account Enrollment in ios Developer Program

More information

ios App for Mobile Website! Documentation!

ios App for Mobile Website! Documentation! ios App for Mobile Website Documentation What is IOS App for Mobile Website? IOS App for Mobile Website allows you to run any website inside it and if that website is responsive or mobile compatible, you

More information

Your First App Store Submission

Your First App Store Submission Your First App Store Submission Contents About Your First App Store Submission 4 At a Glance 5 Enroll in the Program 5 Provision Devices 5 Create an App Record in itunes Connect 5 Submit the App 6 Solve

More information

Automating client deployment

Automating client deployment Automating client deployment 1 Copyright Datacastle Corporation 2014. All rights reserved. Datacastle is a registered trademark of Datacastle Corporation. Microsoft Windows is either a registered trademark

More information

How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365

How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365 How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365 1 Contents Purpose... 3 Office 365 Mail Connections... 3 Finding IMAP server... 3 Desktop computers... 4

More information

Creating an Apple APNS Certificate

Creating an Apple APNS Certificate Creating an Apple APNS Certificate 4/20/2012 Creating an Apple APNS Certificate Created by Britt Womelsdorf Edited by Mark S. Ciminello, MBA, PMP The purpose of this document is to outline the steps necessary

More information

App Distribution Guide

App Distribution Guide App Distribution Guide Contents About App Distribution 10 At a Glance 11 Enroll in an Apple Developer Program to Distribute Your App 11 Generate Certificates and Register Your Devices 11 Add Store Capabilities

More information

Generating and Renewing an APNs Certificate. Technical Paper May 2012

Generating and Renewing an APNs Certificate. Technical Paper May 2012 Generating and Renewing an APNs Certificate Technical Paper May 2012 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate.

More information

Remote Configuration for FileBrowser

Remote Configuration for FileBrowser Remote Configuration for FileBrowser Page 1 Remote Configuration for FileBrowser Introduction The ability to create and read settings files is built into all versions of FileBrowser. At its simplest, this

More information

Getting Started Guide: Getting the most out of your Windows Intune cloud

Getting Started Guide: Getting the most out of your Windows Intune cloud Getting Started Guide: Getting the most out of your Windows Intune cloud service Contents Overview... 3 Which Configuration is Right for You?... 3 To Sign up or Sign in?... 4 Getting Started with the Windows

More information

Windows Intune Walkthrough: Windows Phone 8 Management

Windows Intune Walkthrough: Windows Phone 8 Management Windows Intune Walkthrough: Windows Phone 8 Management This document will review all the necessary steps to setup and manage Windows Phone 8 using the Windows Intune service. Note: If you want to test

More information

1 от 6 8.01.2012 22:45

1 от 6 8.01.2012 22:45 Welcome, Yuriy Donev Edit Profile Log out Provisioning Portal : Astea Solutions AD Go to ios Dev Center Manage History How To Assigning Apple Devices to your Team The Devices section of the ios Provisioning

More information

Networking & Internet 2010-07-06

Networking & Internet 2010-07-06 Wireless Enterprise App Distribution Networking & Internet 2010-07-06 Apple Inc. 2010 Apple Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted,

More information

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios Devices

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios Devices GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios Devices GO!Enterprise MDM for ios Devices, Version 3.x GO!Enterprise MDM for ios Devices 1 Table of Contents GO!Enterprise

More information

QMX ios MDM Pre-Requisites and Installation Guide

QMX ios MDM Pre-Requisites and Installation Guide QMX ios MDM Pre-Requisites and Installation Guide QMX System Requirements The following requirements apply to the system that QMX will be installed on. This system will host the QMX MDM Service. These

More information

BuzzTouch ios Push Notifications

BuzzTouch ios Push Notifications BuzzTouch ios Push Notifications Niraj Shah January 27, 2013 Version 1.1 BuzzTouch ios Push Notifications 1 Introduction 1.1 An overview of Apple's Push Notifications 5 2 On the Mac with Keychain Access

More information

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios with TouchDown

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios with TouchDown GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios with TouchDown GO!Enterprise MDM for ios Devices, Version 3.x GO!Enterprise MDM for ios with TouchDown 1 Table of

More information

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion Initial Setup of Microsoft Outlook Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access Protocol

More information

HRC Advanced Citrix Troubleshooting Guide. Remove all Citrix Instances from the Registry

HRC Advanced Citrix Troubleshooting Guide. Remove all Citrix Instances from the Registry HRC Advanced Citrix Troubleshooting Guide Advanced Troubleshooting procedures: 1. Add https://mobile.hrc.army.mil to Internet Explorer s trusted sites list. Click on Tools Internet Options Security. Click

More information

Download and Install the Citrix Receiver for Mac/Linux

Download and Install the Citrix Receiver for Mac/Linux Download and Install the Citrix Receiver for Mac/Linux NOTE: WOW can only be used with Internet Explorer for Windows. To accommodate WOW customers using Mac or Linux computers, a Citrix solution was developed

More information

Booth Gmail Configuration

Booth Gmail Configuration Student email is accessed via a Booth branded Gmail service. Student mailboxes will be accessed via Gmail. Configure Gmail Settings Before you connect Gmail to send and receive Booth Gmail on your mobile

More information

Export / Import using itunes File Sharing

Export / Import using itunes File Sharing Export to itunes File Sharing Access Edit Mode Tap the pencil button on the bottom toolbar to access Edit Mode. Select a Button or a Folder Select to the button(s) you want to export/ import. A checkmark

More information

Global Image Management System For epad-vision. User Manual Version 1.10

Global Image Management System For epad-vision. User Manual Version 1.10 Global Image Management System For epad-vision User Manual Version 1.10 May 27, 2015 Global Image Management System www.epadlink.com 1 Contents 1. Introduction 3 2. Initial Setup Requirements 3 3. GIMS-Server

More information

Cloud Services MDM. Control Panel Provisioning Guide

Cloud Services MDM. Control Panel Provisioning Guide Cloud Services MDM Control Panel Provisioning Guide 10/24/2014 CONTENTS Overview... 2 Accessing MDM in the Control Panel... 3 Create the MDM Instance in the Control Panel... 3 Adding a New MDM User...

More information

Kony MobileFabric Messaging. Demo App QuickStart Guide. (Building a Sample Application

Kony MobileFabric Messaging. Demo App QuickStart Guide. (Building a Sample Application Kony MobileFabric Kony MobileFabric Messaging Demo App QuickStart Guide (Building a Sample Application Apple ios) Release 6.5 Document Relevance and Accuracy This document is considered relevant to the

More information

Technical Support Set-up Procedure

Technical Support Set-up Procedure Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and it

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

QuickStart Guide for Mobile Device Management

QuickStart Guide for Mobile Device Management QuickStart Guide for Mobile Device Management Version 8.5 Inventory Configuration Security Management Distribution JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made

More information

Microsoft Entourage 2008 / Microsoft Exchange Server 2010. Installation and Configuration Instructions

Microsoft Entourage 2008 / Microsoft Exchange Server 2010. Installation and Configuration Instructions Microsoft Entourage 2008 / Microsoft Exchange Server 2010 Installation and Configuration Instructions Table of Contents How to connect Microsoft Entourage 2008 EWS to the Exchange Server... 3 Important

More information

Remote Access Enhancements

Remote Access Enhancements Remote Access Enhancements Citrix/Epic Set-up Instructions Provided By: Akron Children s IT Department Date: 7/11/2012 Version: v6 2012 Children s Hospital Medical Center of Akron Table of Contents 1.

More information

Mobile Device Management Fleet manager s guide. Philippe CAJET Admin Guide MDM R1.6_2013 August 1 st _V 1

Mobile Device Management Fleet manager s guide. Philippe CAJET Admin Guide MDM R1.6_2013 August 1 st _V 1 Mobile Device Management Fleet manager s guide Philippe CAJET Admin Guide MDM R1.6_2013 August 1 st _V 1 2 Summary Pages Pages Mobile Device Management Fleet manager s guide 1 SUMMARY 2 SUMMARY 3 0. connection

More information

Copyright Notice. Mobile Testing Enterprise 7.3. September 2015. Copyright 1995-2015 Keynote LLC. All rights reserved.

Copyright Notice. Mobile Testing Enterprise 7.3. September 2015. Copyright 1995-2015 Keynote LLC. All rights reserved. Mobile Testing Enterprise UIAutomation Compatibility Mobile Testing Enterprise 7.3 September 2015 Copyright Notice Copyright 1995-2015 Keynote LLC. All rights reserved. THE INFORMATION CONTAINED IN THIS

More information

Allianz Global Investors Remote Access Guide

Allianz Global Investors Remote Access Guide Allianz Global Investors Remote Access Guide Web Address: http://remote.allianzgi-us.com/ Page 1 of 34 pages Please contact the Service Desk at Table of Contents 1. Introduction to the Remote Access Page

More information

EasyPush Push Notifications Extension for ios

EasyPush Push Notifications Extension for ios EasyPush Push Notifications Extension for ios Copyright 2012 Milkman Games, LLC. All rights reserved. http://www.milkmangames.com For support, contact info@milkmangames.com To View full AS3 documentation,

More information

educ Office 365 email: Remove & create new Outlook profile

educ Office 365 email: Remove & create new Outlook profile Published: 29/01/2015 If you have previously used Outlook the with the SCC/SWO service then once you have been moved into Office 365 your Outlook will need to contact the SCC/SWO servers one last time

More information

QuickStart Guide for Mobile Device Management. Version 8.6

QuickStart Guide for Mobile Device Management. Version 8.6 QuickStart Guide for Mobile Device Management Version 8.6 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF

More information

Generating an Apple Push Notification Service Certificate for use with GO!Enterprise MDM. This guide provides information on...

Generating an Apple Push Notification Service Certificate for use with GO!Enterprise MDM. This guide provides information on... Generating an Apple Push Notification Service Certificate for use with GO!Enterprise MDM This guide provides information on...... APNs Requirements Tips on Enrolling in the ios Developer Enterprise Program...

More information

Dwebs IIS Log Archiver Installation and Configuration Guide for Helm 4

Dwebs IIS Log Archiver Installation and Configuration Guide for Helm 4 Dwebs IIS Log Archiver Installation and Configuration Guide for Helm 4 Dwebs Ltd http://www.dwebs.ltd.uk January 2009 Doc: Helm 4.1.0.0 Mod Ver: 1.0.0.0 The names of actual companies and products mentioned

More information

Apple Mac VPN Service Setting up Remote Desktop

Apple Mac VPN Service Setting up Remote Desktop Apple Mac VPN Service Setting up Remote Desktop After you have successfully connected via the VPN client to the University network you will then need to make the connection to your machine. To do this

More information

NetPortal All your documents, direct to your iphone

NetPortal All your documents, direct to your iphone Copyright Stratospherix 2010 Apple, the Apple logo, ipod, ipod touch, and itunes are trademarks of Apple Inc., registered in the U.S. and other countries. iphone is a trademark of Apple Inc. App Store

More information

SJRWMD Cloud-Based Email Quick-Start Guide

SJRWMD Cloud-Based Email Quick-Start Guide SJRWMD Cloud-Based Email Quick-Start Guide Your email account is now in the Microsoft cloud, also known as Office 365. This change from onpremise email provisioning to the cloud allows the agency to provide

More information

Montefiore Portal Quick Reference Guide

Montefiore Portal Quick Reference Guide Montefiore Portal Quick Reference Guide Montefiore s remote portal allows users to securely access Windows applications, file shares, internal web applications, and more. To use the Portal, you must already

More information

Wazza s QuickStart 1. Leopard Server - Install & Configure DNS

Wazza s QuickStart 1. Leopard Server - Install & Configure DNS Wazza s QuickStart 1. Leopard Server - Install & Configure DNS About this Document This document is the first in a series of documents describing the process of installing and configuring a Mac OS X 10.5

More information

Swisscom Mobile Device Services Quick Start Guide: Set-up Remote Management basic. Mobile Device Services Februar 2014

Swisscom Mobile Device Services Quick Start Guide: Set-up Remote Management basic. Mobile Device Services Februar 2014 Swisscom Mobile Device Services Quick Start Guide: Set-up Remote Management basic Mobile Device Services Februar 2014 Contents 2 Login «Welcome to Swisscom MDS» First steps Step 1: Installing the MDM certificate

More information

Connecting to Remote Desktop Windows Users

Connecting to Remote Desktop Windows Users Connecting to Remote Desktop Windows Users How to log into the College Network from Home 1. Start the Remote Desktop Connection For Windows XP, Vista and Windows 7 this is found at:- Star t > All Programs

More information

Mercury VirtualTerminal ios Application

Mercury VirtualTerminal ios Application Mercury VirtualTerminal ios Application Quick Reference Guide v2.1 Contents Introduction... 3 Downloading the application from itunes:... 3 Launching the application:... 4 Login and configuration:... 5

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

How to use FTP Commander

How to use FTP Commander FTP (File Transfer Protocol) software can be used to upload files and complete folders to your web server. On the web, there are a number of free FTP programs that can be downloaded and installed onto

More information

Generating an Apple Push Notification Service Certificate for use with GO!Enterprise MDM. This guide provides information on...

Generating an Apple Push Notification Service Certificate for use with GO!Enterprise MDM. This guide provides information on... Generating an Apple Push Notification Service Certificate for use with GO!Enterprise MDM This guide provides information on...... APNs Requirements Tips on Enrolling in the ios Developer Enterprise Program...

More information

Sophos Mobile Control Installation guide. Product version: 3.5

Sophos Mobile Control Installation guide. Product version: 3.5 Sophos Mobile Control Installation guide Product version: 3.5 Document date: July 2013 Contents 1 Introduction...3 2 The Sophos Mobile Control server...4 3 Set up Sophos Mobile Control...10 4 External

More information

How do I use Push Notifications with ios?

How do I use Push Notifications with ios? How do I use Push Notifications with ios? This lesson describes how to set up Push Notifications for ios devices, using a LiveCode and PHP. There are numerous steps involved in this process that touch

More information

Virtual Office Remote Installation Guide

Virtual Office Remote Installation Guide Virtual Office Remote Installation Guide Table of Contents VIRTUAL OFFICE REMOTE INSTALLATION GUIDE... 3 UNIVERSAL PRINTER CONFIGURATION INSTRUCTIONS... 12 CHANGING DEFAULT PRINTERS ON LOCAL SYSTEM...

More information

This manual provides information and instructions for Mac SharePoint Users at Fermilab. Using Sharepoint from a Mac: Terminal Server Instructions

This manual provides information and instructions for Mac SharePoint Users at Fermilab. Using Sharepoint from a Mac: Terminal Server Instructions Using SharePoint from a Mac: Terminal Server Instructions This manual provides information and instructions for Mac SharePoint Users at Fermilab. Page 0 Contents Fermilab Terminal Server Introduction...2

More information

VIRTUAL SOFTWARE LIBRARY REFERENCE GUIDE

VIRTUAL SOFTWARE LIBRARY REFERENCE GUIDE VIRTUAL SOFTWARE LIBRARY REFERENCE GUIDE INTRODUCTION The Virtual Software Library (VSL) provides remote and on-campus access to lab/course software. This approach is intended to simplify access for all

More information

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users

Tool Tip. SyAM Management Utilities and Non-Admin Domain Users SyAM Management Utilities and Non-Admin Domain Users Some features of SyAM Management Utilities, including Client Deployment and Third Party Software Deployment, require authentication credentials with

More information

Create an ios App using Adobe Flash Side by Side Training, 2013. And without using a Mac

Create an ios App using Adobe Flash Side by Side Training, 2013. And without using a Mac Create an ios App using Adobe Flash And without using a Mac Contents 1 Become an Apple ios Developer... 2 2 Add a Development Certificate... 4 3 Create a Certificate Signing Request (CSR)... 6 4 Register

More information

Remote Desktop Services

Remote Desktop Services Remote Desktop Services AMERICAN INSTITUTES FOR RESEARCH AIR REMOTE DESKTOP SERVICES (RDS) GUIDE Overview Welcome to AIR Remote Desktop Services! AIR Remote Desktop Services can be accessed from a Windows

More information

XenMobile Logs Collection Guide

XenMobile Logs Collection Guide XenMobile Logs Collection Guide 1 Contents Summary... 3 Background... 3 How to Collect Logs from Server Components... 4 Support Bundle Contents... 4 Operations Supported for Server Components... 5 Configurations

More information

Getting Started. with VitalSource Bookshelf. How to Access your ebooks Using VitalSource Bookshelf

Getting Started. with VitalSource Bookshelf. How to Access your ebooks Using VitalSource Bookshelf Getting Started with VitalSource Bookshelf How to Access your ebooks Using VitalSource Bookshelf Table of Contents Step 1: Accessing VitalSource Bookshelf Online... 1 Step 2: Configuring Your Account for

More information

Check current version of Remote Desktop Connection for Mac.. Page 2. Remove Old Version Remote Desktop Connection..Page 8

Check current version of Remote Desktop Connection for Mac.. Page 2. Remove Old Version Remote Desktop Connection..Page 8 CONTENTS SECTION 1 Check current version of Remote Desktop Connection for Mac.. Page 2 SECTION 2 Remove Old Version Remote Desktop Connection..Page 8 SECTION 3 Download and Install Remote Desktop Connection

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Share Drive Frequently Asked Questions Table of Contents How do I change my password?... How do I reset my password if I forgot it?... How do I share files/folders with Groups

More information

SHC Client Remote Access User Guide for Citrix & F5 VPN Edge Client

SHC Client Remote Access User Guide for Citrix & F5 VPN Edge Client SHC Client Remote Access User Guide for Citrix & F5 VPN Edge Client Version 1.1 1/15/2013 This remote access end user reference guide provides an overview of how to install Citrix receiver (a required

More information

How to configure Mac OS X Server

How to configure Mac OS X Server How to configure Mac OS X Server By Rob Buckley In the previous article in this series, we showed you how to secure a Mac using the functions built into its operating system, OS X. See photo story here

More information

WHAT IS VIRTUAL DESKTOP? WHAT YOU NEED LOG IN TO VIRTUAL DESKTOP SET UP CITRIX RECEIVER REMOTE ACCESS GUIDE

WHAT IS VIRTUAL DESKTOP? WHAT YOU NEED LOG IN TO VIRTUAL DESKTOP SET UP CITRIX RECEIVER REMOTE ACCESS GUIDE WHAT IS VIRTUAL DESKTOP? Virtual Desktop is an online environment that allows you to access NSF applications and a virtual desktop that mimics a Windows 7 environment. You can use Virtual Desktop to use

More information

EM L12 Symantec Mobile Management and Managed PKI Hands-On Lab

EM L12 Symantec Mobile Management and Managed PKI Hands-On Lab EM L12 Symantec Mobile Management and Managed PKI Hands-On Lab Description Building and Managing a Certficate Authority infrastructure to support your Mobile Management infrastructure can be time consuming

More information

itunes Connect Developer Guide

itunes Connect Developer Guide itunes Connect Developer Guide Contents Introduction 9 How to Use This Document 9 See Also 10 Before You Begin 11 Following Apple Guidelines 11 Creating Assets with the Correct Specifications 11 App Icons,

More information

Freshservice Discovery Probe User Guide

Freshservice Discovery Probe User Guide Freshservice Discovery Probe User Guide 1. What is Freshservice Discovery Probe? 1.1 What details does Probe fetch? 1.2 How does Probe fetch the information? 2. What are the minimum system requirements

More information

Installation Instructions

Installation Instructions Avira Secure Backup Installation Instructions Trademarks and Copyright Trademarks Windows is a registered trademark of the Microsoft Corporation in the United States and other countries. All other brand

More information

It is recommended that you use a clean installation of Lion client before upgrading to Lion Server.

It is recommended that you use a clean installation of Lion client before upgrading to Lion Server. Wazza s Lion Server QuickStart 1. Installing Lion Server About this Document This document is the first in a series of documents describing the process of installing and configuring a Mac OS X 10.7 Server

More information

Migrating documents from Business Objects Reporter to Web Intelligence XI R2

Migrating documents from Business Objects Reporter to Web Intelligence XI R2 Migrating documents from Business Objects Reporter to Web Intelligence XI R2 1. This document describes how to migrate documents from Business Objects Reporter to Web Intelligence documents. They can then

More information

Sophos Mobile Control Startup guide. Product version: 3.5

Sophos Mobile Control Startup guide. Product version: 3.5 Sophos Mobile Control Startup guide Product version: 3.5 Document date: July 2013 Contents 1 About this guide...3 2 What are the key steps?...5 3 Log in as a super administrator...6 4 Activate Sophos Mobile

More information

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp

Live@edu User Guide. Please visit the Helpdesk website for more information: http://www.smu.edu.sg/iits/helpdesk_support/index.asp IITS Main Office SINGAPORE MANAGEMENT UNIVERSITY Administration Building, Level 11 81, Victoria Street Singapore 188065 Phone: 65-6828 1930 Email: iits@smu.edu.sg Please visit the Helpdesk website for

More information

Preparing for GO!Enterprise MDM On-Demand Service

Preparing for GO!Enterprise MDM On-Demand Service Preparing for GO!Enterprise MDM On-Demand Service This guide provides information on...... An overview of GO!Enterprise MDM... Preparing your environment for GO!Enterprise MDM On-Demand... Firewall rules

More information

ithenticate User Manual

ithenticate User Manual ithenticate User Manual Updated November 20, 2009 Contents Introduction 4 New Users 4 Logging In 4 Resetting Your Password 5 Changing Your Password or Username 6 The ithenticate Account Homepage 7 Main

More information

Configuring an ios App Store application

Configuring an ios App Store application Chapter 138 Configuring an ios App Store application You can deploy a free ios mobile application or deploy ios mobile applications purchased in bulk through the Apple Volume Purchase Plan. (You cannot

More information

Turnitin Blackboard 9.0 Integration Instructor User Manual

Turnitin Blackboard 9.0 Integration Instructor User Manual Turnitin Blackboard 9.0 Integration Instructor User Manual Version: 2.1.3 Updated December 16, 2011 Copyright 1998 2011 iparadigms, LLC. All rights reserved. Turnitin Blackboard Learn Integration Manual:

More information

Initial Setup of Mozilla Thunderbird with IMAP for OS X Lion

Initial Setup of Mozilla Thunderbird with IMAP for OS X Lion Initial Setup of Mozilla Thunderbird Concept This document describes the procedures for setting up the Mozilla Thunderbird email client to download messages from Google Mail using Internet Message Access

More information

Simplifying Device Enrollment and Content Distribution Using the Device Enrollment Program, the Volume Purchase Program, and the Casper Suite

Simplifying Device Enrollment and Content Distribution Using the Device Enrollment Program, the Volume Purchase Program, and the Casper Suite Simplifying Device Enrollment and Content Distribution Using the Device Enrollment Program, the Volume Purchase Program, and the Casper Suite Technical Paper Casper Suite v9.6 or Later 14 August 2015 JAMF

More information

Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Palm Treo Installation

Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Palm Treo Installation Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Palm Treo Installation Thank you for your interest in Mechanics Bank Mobile Banking. This guide will help you get started with Mechanics

More information

Sophos Mobile Control Installation guide. Product version: 3

Sophos Mobile Control Installation guide. Product version: 3 Sophos Mobile Control Installation guide Product version: 3 Document date: January 2013 Contents 1 Introduction...3 2 The Sophos Mobile Control server...4 3 Set up Sophos Mobile Control...16 4 External

More information

Installation Guide: Delta Module Manager Launcher

Installation Guide: Delta Module Manager Launcher Installation Guide: Delta Module Manager Launcher Overview... 2 Delta Module Manager Launcher... 2 Pre-Installation Considerations... 3 Hardware Requirements... 3 Software Requirements... 3 Virtualisation...

More information

WHITE PAPER Citrix Secure Gateway Startup Guide

WHITE PAPER Citrix Secure Gateway Startup Guide WHITE PAPER Citrix Secure Gateway Startup Guide www.citrix.com Contents Introduction... 2 What you will need... 2 Preparing the environment for Secure Gateway... 2 Installing a CA using Windows Server

More information

Installing Microsoft Outlook on a Macintosh. This document explains how to download, install and configure Microsoft Outlook on a Macintosh.

Installing Microsoft Outlook on a Macintosh. This document explains how to download, install and configure Microsoft Outlook on a Macintosh. Reference : USER184 Issue date : December 2002 Revision date : September 2007 Classification : Software Originator : Hugh Burt REVISED DOCUMENT Installing Microsoft Outlook on a Macintosh This document

More information

Moxa Device Manager 2.3 User s Manual

Moxa Device Manager 2.3 User s Manual User s Manual Third Edition, March 2011 www.moxa.com/product 2011 Moxa Inc. All rights reserved. User s Manual The software described in this manual is furnished under a license agreement and may be used

More information

Sophos Mobile Control Startup guide. Product version: 3

Sophos Mobile Control Startup guide. Product version: 3 Sophos Mobile Control Startup guide Product version: 3 Document date: January 2013 Contents 1 About this guide...3 2 What are the key steps?...5 3 Log in as a super administrator...6 4 Activate Sophos

More information

Vantage RADIUS 50. Quick Start Guide Version 1.0 3/2005

Vantage RADIUS 50. Quick Start Guide Version 1.0 3/2005 Vantage RADIUS 50 Quick Start Guide Version 1.0 3/2005 1 Introducing Vantage RADIUS 50 The Vantage RADIUS (Remote Authentication Dial-In User Service) 50 (referred to in this guide as Vantage RADIUS)

More information