### Example Prerequisite: Javaw.exe Process Source: https://www.ibm.com/docs/en/maas360?topic=windows-adding-executable-exe-files Use a running process like javaw.exe as a prerequisite for installing another application, such as Eclipse.exe. MaaS360 checks for this prerequisite before installation. ```powershell javaw.exe ``` -------------------------------- ### Launch App Command Source: https://www.ibm.com/docs/en/maas360?topic=actions-android-custom-commands Starts a specified app on the device. The target app must be installed. ```bash launch-app ``` ```bash launch-app com.google.android.gm ``` ```bash launch-app us.zoom.videomeetings ``` -------------------------------- ### Silent Installation Command for VLC Media Player Source: https://www.ibm.com/docs/en/maas360?topic=aeaw-downloading-windows-apps-from-local-file-share-distributing-devices Provides an example of a silent installation command for the VLC media player. Always consult the application vendor for specific silent installation switches. ```text vlc-2.0.1-win32.exe /L=1033 /S ``` -------------------------------- ### Get App IDs for All Installed Apps (Win32) Source: https://www.ibm.com/docs/en/maas360?topic=uwp-examples-obtaining-windows-app-ids-manually Use this PowerShell command to list the names and App IDs of all applications installed for the current user. ```powershell Get-StartApps ``` -------------------------------- ### FQDN Mapping File Example Source: https://www.ibm.com/docs/en/maas360?topic=megmm-using-cross-forest-cross-domain-authentication-mobile-enterprise-gateway-meg This is an example of the FQDNMap.txt file content. Each line maps a short domain name to its FQDN, and also includes the FQDN mapped to itself. Ensure both combinations are present for each domain. ```text domainA = domainA.rootDomain1.mycorp.com domainB = domainB.rootDomain1.mycorp.com domainC = domainC.rootDomain2.mycorp.com domainA.rootDomain1.mycorp.com = domainA.rootDomain1.mycorp.com domainB.rootDomain1.mycorp.com = domainB.rootDomain1.mycorp.com domainC.rootDomain2.mycorp.com = domainC.rootDomain2.mycorp.com ``` -------------------------------- ### Example UNC Paths for Local File Share Source: https://www.ibm.com/docs/en/maas360?topic=aeaw-downloading-windows-apps-from-local-file-share-distributing-devices Illustrates the format for specifying the network path to the application binaries on a local file share. Ensure the device can access this path. ```text \Someserver\somepath\test.exe ``` ```text \IPaddress\c$\somefolder\test.exe ``` -------------------------------- ### Intent Option: Add Category Source: https://www.ibm.com/docs/en/maas360?topic=actions-android-custom-commands Adds a category to an intent. Example: starting the Home screen. ```bash start-activity -c android.intent.category.HOME -a android.intent.action.MAIN ``` -------------------------------- ### Example Mail Sender Configuration Source: https://www.ibm.com/docs/en/maas360?topic=branding-advanced-options-email-sender-configuration This example shows how to configure a custom mail sender with a specific email address and display name for MaaS360 Mail communication. ```text Mail address=`support@abccorp.com` Display name=`ABC Mobility Team` ```