Courseiva

CCNA Manage applications Questions

75 of 174 questions · Page 1/3 · Manage applications · Answers revealed

1
MCQhard

You are troubleshooting a Microsoft 365 Apps for enterprise deployment on Windows 10 devices managed by Intune. Users report that the apps are not installing, but the deployment status in Intune shows 'Success' for some devices and 'Failed' for others. On a failing device, you discover that the Office Deployment Tool (ODT) logs indicate '0x80070005 - Access denied'. What is the most likely cause?

A.The device has insufficient disk space for the installation.
B.The configuration.xml file has an invalid Channel attribute.
C.The device does not have internet connectivity to download Office installation files.
D.The Office Deployment Tool is running in user context instead of system context.
AnswerD

Running as user leads to access denied when writing to Program Files.

Why this answer

The error code 0x80070005 (Access denied) in Office Deployment Tool (ODT) logs indicates a permissions issue. When Intune deploys Microsoft 365 Apps, it runs the ODT in the system context via the Intune Management Extension. If the ODT is inadvertently executed in the user context (e.g., due to a misconfigured detection script or deployment script that doesn't elevate), it lacks the necessary privileges to write to the Program Files directory or modify system registry keys, causing the access denied error.

Exam trap

The trap here is that candidates often associate 'Access denied' with file permissions or antivirus blocking, but in the context of Intune-managed ODT deployments, the root cause is almost always the execution context (user vs. system), not a missing file permission or security software.

How to eliminate wrong answers

Option A is wrong because insufficient disk space would produce a different error, such as 0x80070070 (ERROR_DISK_FULL) or a specific 'not enough space' message in the ODT logs, not an access denied error. Option B is wrong because an invalid Channel attribute in configuration.xml would cause a parsing error or a 'channel not found' error, not an access denied error; the ODT would fail before attempting to write files. Option C is wrong because lack of internet connectivity would result in a download failure error (e.g., 0x80072EFD or a timeout), not an access denied error; the ODT would report a network-related failure.

2
MCQeasy

You need to deploy a Microsoft 365 Apps for enterprise configuration that includes Teams and Visio Pro for Microsoft 365. Users should get the full suite with both apps. What is the recommended method?

A.Use the built-in Microsoft 365 Apps for enterprise app type in Intune and select the products.
B.Instruct users to install from the Office portal.
C.Deploy a PowerShell script that runs Setup.exe /configure.
D.Create a Win32 app with the Office Deployment Tool and a configuration.xml that includes both products.
AnswerD

ODT allows full customization of products.

Why this answer

The Office Deployment Tool (ODT) is the recommended method for deploying customized Microsoft 365 Apps configurations, including Teams and Visio Pro for Microsoft 365, in enterprise environments. By creating a Win32 app with a configuration.xml that specifies both products, you can control installation settings, language, and update channels, which is not possible with the built-in Intune app type for Microsoft 365 Apps.

Exam trap

The trap here is that candidates assume the built-in Intune app type for Microsoft 365 Apps can include additional products like Visio or Project, but it only supports the core suite, forcing you to use the Office Deployment Tool for custom product selections.

How to eliminate wrong answers

Option A is wrong because the built-in Microsoft 365 Apps for enterprise app type in Intune does not support selecting individual products like Visio Pro; it only installs the core Office suite (Word, Excel, etc.) and cannot include additional products. Option B is wrong because instructing users to install from the Office portal is not a managed deployment method; it relies on user self-service, lacks centralized control, and does not ensure consistent configuration across the organization. Option C is wrong because deploying a PowerShell script that runs Setup.exe /configure is not a standalone method; the /configure switch is part of the Office Deployment Tool and requires a properly configured configuration.xml file, making it essentially the same as Option D but without the Win32 app packaging for Intune distribution.

3
MCQeasy

Your organization uses Microsoft Intune to manage iOS/iPadOS devices. You need to deploy a VPP (Volume Purchase Program) app that is already purchased and assigned to your tenant. What is the minimum configuration required to make the app available to users?

A.Configure a device enrollment restriction to allow the app.
B.Sync the VPP token, then add the app from the store and assign it.
C.Distribute the app via the Company Portal without any additional configuration.
D.Upload the app IPA file to Intune, then create an app configuration policy.
AnswerB

Syncing the token brings in purchased licenses, then you can assign the app.

Why this answer

VPP apps require the VPP token to be synced with Intune first, then the app can be added from the store and assigned to users. Option A is wrong because device enrollment restrictions control device enrollment settings, not app deployment. Option C is wrong because the Company Portal is used for available apps, but the app must first be added and assigned in Intune; it is not automatically available without configuration.

Option D is wrong because VPP apps are distributed through the store, not by uploading IPA files.

4
MCQeasy

You are configuring an app protection policy in Microsoft Intune for iOS/iPadOS devices. Which setting can you enforce to prevent users from copying data from a managed app and pasting it into an unmanaged app?

A.Restrict cut, copy, and paste between other apps
B.Require a PIN for access
C.Prevent iTunes and iCloud backups
D.Block managed apps from running on jailbroken devices
AnswerA

This setting restricts clipboard operations between managed and unmanaged apps.

Why this answer

The 'Restrict cut, copy, and paste between other apps' setting in an Intune app protection policy (APP) for iOS/iPadOS directly controls data transfer between managed and unmanaged apps. When set to 'Blocked' or 'Policy Managed with Paste In', it prevents users from copying data from a managed app and pasting it into an unmanaged app, enforcing data leakage prevention at the OS clipboard level via the Intune MAM SDK.

Exam trap

The trap here is that candidates often confuse device-level restrictions (like jailbreak detection or backup blocking) with app-level data transfer controls, assuming any security setting prevents copy/paste, when only the specific 'Restrict cut, copy, and paste' setting governs clipboard behavior between managed and unmanaged apps.

How to eliminate wrong answers

Option B is wrong because 'Require a PIN for access' controls authentication to the managed app, not data transfer operations like copy/paste; it prevents unauthorized access but does not restrict clipboard sharing. Option C is wrong because 'Prevent iTunes and iCloud backups' protects data at rest by blocking backup to personal cloud or local storage, but it does not address real-time clipboard data movement between apps. Option D is wrong because 'Block managed apps from running on jailbroken devices' is a device-level compliance check that prevents app launch on compromised devices, but it does not restrict copy/paste behavior on compliant devices.

5
MCQmedium

A company uses Intune to manage Windows 10 devices. They need to deploy a line-of-business (LOB) Win32 app to devices that are not assigned to any user. The app requires installation in the system context. Which installation behavior should be configured in the Intune Win32 app deployment?

A.User
B.Device
C.System
D.LoggedOnUser
AnswerC

System installs in the system context, suitable for device-wide and userless deployments.

Why this answer

(System) is correct because the Win32 app must run in the system context to install without a user session, which is required for devices not assigned to any user. In Intune, the 'System' installation behavior runs the installer as the local SYSTEM account, enabling silent, elevated installations regardless of user presence.

Exam trap

The trap here is that candidates confuse 'System' with 'Device' or 'LoggedOnUser', not realizing that 'Device' is not a valid installation behavior and that 'System' is the only option that guarantees installation without a user session.

How to eliminate wrong answers

Option A (User) is wrong because it runs the installer in the user context, which requires an interactive user session and cannot install on devices without assigned users. Option B (Device) is wrong because 'Device' is not a valid installation behavior in Intune Win32 app deployment; the correct options are User, System, and LoggedOnUser. Option D (LoggedOnUser) is wrong because it runs the installer in the context of the currently logged-on user, which also requires an active user session and fails on devices with no user assigned.

6
MCQmedium

Your organization uses Microsoft Intune to manage Windows 11 devices. You need to deploy a line-of-business (LOB) app that is signed with a certificate not trusted by the devices. What should you do to ensure the app installs successfully?

A.Create a device configuration profile to allow sideloading.
B.Add the app to the Microsoft Store for Business.
C.Disable automatic app updates for the device group.
D.Enable the Sideloading policy for the device group.
AnswerD

Sideloading allows installation of apps signed with untrusted certificates.

Why this answer

Enabling the Sideloading policy for the device group allows installation of line-of-business (LOB) apps signed with a certificate not trusted by the devices. In Microsoft Intune, sideloading bypasses the requirement for the app's signing certificate to be trusted by the device's trusted root store, enabling successful installation of internally developed or signed LOB apps on Windows 11 devices managed via Intune.

Exam trap

The trap here is that candidates often confuse 'sideloading' with 'allow sideloading' in a device configuration profile, but Intune requires a specific Sideloading policy (under Apps or Device configuration) rather than a generic configuration profile setting.

How to eliminate wrong answers

Option A is wrong because creating a device configuration profile to allow sideloading is not the correct approach; Intune uses a dedicated 'Sideloading policy' under 'Apps' > 'App configuration policies' or 'Device configuration' > 'Policies' > 'Sideloading', not a generic device configuration profile. Option B is wrong because adding the app to the Microsoft Store for Business would require the app to be signed with a certificate trusted by the Store, which does not solve the issue of an untrusted certificate; the Store for Business is for distributing apps through the Store infrastructure, not for sideloading untrusted-signed apps. Option C is wrong because disabling automatic app updates for the device group does not affect the installation of an LOB app with an untrusted certificate; it only prevents updates from being applied automatically, leaving the core signing trust issue unresolved.

7
MCQmedium

You configured the above app protection policy for a Microsoft 365 app. Users report that they cannot paste text from the managed app into another app. What is the most likely reason?

A.The 'pinLength' requirement is not met.
B.The 'requireBiometric' setting is blocking actions.
C.The 'dataTransferPolicy' is set to 'allowNone', which prevents data from leaving the managed app.
D.The 'allowCutCopy' setting is set to false, which blocks copy, but paste is unaffected.
AnswerC

This setting blocks clipboard operations to unmanaged apps.

Why this answer

The 'dataTransferPolicy' setting controls how data can be transferred between managed and unmanaged apps. When set to 'allowNone', it prevents any data from leaving the managed app, including paste operations from the managed app into another app. This is the most direct cause of the reported issue.

Exam trap

The trap here is that candidates often confuse 'allowCutCopy' (which controls copy/cut within the app) with 'dataTransferPolicy' (which controls data leaving the app), leading them to incorrectly select Option D.

How to eliminate wrong answers

Option A is wrong because 'pinLength' only enforces a minimum PIN length for app access and does not affect data transfer or paste behavior. Option B is wrong because 'requireBiometric' controls biometric authentication for app access, not data transfer or clipboard operations. Option D is wrong because 'allowCutCopy' being set to false would block copy and cut operations within the managed app, but paste is indeed unaffected; the issue is about pasting from the managed app into another app, which is governed by 'dataTransferPolicy', not 'allowCutCopy'.

8
Multi-Selectmedium

You are configuring an app protection policy for iOS devices to protect corporate data in Microsoft Outlook. Which TWO settings prevent users from copying corporate data to personal apps?

Select 2 answers
A.Allow app to transfer data to other apps
B.Save copies of work data
C.Block screen capture and screen recording
D.Restrict cut, copy, and paste between apps
E.Encrypt app data
AnswersA, D

Setting this to 'Policy managed apps' restricts data transfer.

Why this answer

Setting 'Allow app to transfer data to other apps' to 'Policy managed apps' or 'None' prevents corporate data from being transferred from Outlook to unmanaged personal apps. Option D is correct because 'Restrict cut, copy, and paste between apps' can be set to 'Policy managed apps' or 'None', which blocks users from copying corporate data from Outlook and pasting it into personal apps. These two settings directly control data movement at the app-to-app and clipboard levels.

Exam trap

The trap here is that candidates often confuse 'Block screen capture and screen recording' with data loss prevention, but it only prevents visual capture, not clipboard or app-to-app data transfer, which are the actual vectors for copying corporate data to personal apps.

9
MCQmedium

You manage Windows 10 devices with Microsoft Intune. You need to deploy a line-of-business (LOB) app that is not available in the Microsoft Store. The app is an .msi file that requires admin privileges to install. Which deployment method should you use?

A.Upload the .msi file as a line-of-business app directly
B.Add the app as a Microsoft Store for Business app
C.Deploy the app using a PowerShell script in Intune
D.Use the Microsoft Win32 Content Prep Tool to wrap the .msi into an .intunewin file and deploy as a Win32 app
AnswerD

This is the standard method for deploying LOB .msi apps via Intune.

Why this answer

The correct deployment method is to use the Microsoft Win32 Content Prep Tool to wrap the .msi into an .intunewin file and deploy it as a Win32 app. This is required because Intune's native line-of-business (LOB) app deployment only supports .msi files that install in the user context without elevation, whereas this app requires admin privileges. The Win32 app model allows Intune to run the installer with system context, handle detection rules, and support complex installation logic.

Exam trap

The trap here is that candidates assume any .msi can be deployed as a line-of-business app directly, but Intune's LOB app deployment only supports user-context installations without elevation, so the Win32 app model is required when admin privileges are needed.

How to eliminate wrong answers

Option A is wrong because uploading the .msi as a line-of-business app directly only supports apps that install in the user context without requiring elevation; it cannot handle admin-privilege installations. Option B is wrong because the app is not available in the Microsoft Store, so adding it as a Microsoft Store for Business app is not possible. Option C is wrong because deploying the app using a PowerShell script in Intune is not a native deployment method; Intune does not have a direct 'PowerShell script' deployment type for apps, and scripts are used for device configuration or remediation, not for packaging and deploying installers with detection and requirement rules.

10
MCQhard

You run the above PowerShell command. The app is installed on a device, but the detection rule checks for CompanyPortal.exe in C:\Program Files. The app installs to C:\Program Files (x86) due to a 32-bit installer. What is the most likely outcome?

A.The app is successfully detected and no action is taken
B.The app installation fails with error
C.The detection rule automatically adjusts to check both folders
D.Intune repeatedly tries to install the app because it is not detected
AnswerD

Failed detection triggers reinstallation.

Why this answer

Intune's detection rule is configured to check for CompanyPortal.exe in C:\Program Files. Since the 32-bit installer places the file in C:\Program Files (x86), the detection rule will not find it. Intune will then consider the app as not installed and will repeatedly attempt to reinstall it, leading to a loop of installation attempts.

Exam trap

The trap here is that candidates assume Intune's detection logic is intelligent enough to follow Windows file system redirection, when in fact it strictly checks the exact path provided, leading to a detection failure despite a successful installation.

How to eliminate wrong answers

Option A is wrong because the detection rule does not find CompanyPortal.exe in the specified path (C:\Program Files), so the app is not considered detected; no successful detection occurs. Option B is wrong because the installation itself succeeds (the app is installed), but the detection rule fails; the error is not an installation failure but a detection mismatch. Option C is wrong because Intune does not automatically adjust detection rules to check multiple folders; the rule is static and must be explicitly configured to include both paths.

11
Drag & Dropmedium

Order the steps to deploy a Windows 10 virtual desktop in Azure using Windows 365.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4

Why this order

Deploying Windows 10 virtual desktops via Windows 365 requires a specific sequence: first, ensure you have the appropriate licenses (Windows 365 Enterprise or Business). Then access the Microsoft Endpoint Manager admin center, create a provisioning policy, and configure its settings (e.g., network, management). After the policy is configured, you can provision Cloud PCs in bulk.

Finally, assign the Cloud PCs to users. Common mistakes include swapping the order of licensing and portal access, configuring after provisioning, or assigning before provisioning.

12
MCQeasy

You need to deploy a Microsoft 365 Apps for enterprise suite to Windows 10 devices using Intune. Users are unlicensed. How should you proceed?

A.Deploy the suite as 'available' from Company Portal.
B.Use the built-in Microsoft 365 Apps (Office) app type in Intune.
C.Assign the Office 365 E3 license to all users.
D.Create a Win32 app package for Microsoft 365 Apps and deploy it.
AnswerD

Win32 packaging allows you to include a volume license key or use shared activation for unlicensed users.

Why this answer

When users are unlicensed, the Microsoft 365 Apps for enterprise suite cannot be deployed via the built-in Intune app type (which relies on license activation). Creating a Win32 app package allows you to bundle the Office Deployment Tool (ODT) with a configuration XML that sets the product ID to 'O365ProPlusRetail' and disables automatic licensing checks, enabling deployment to unlicensed devices.

Exam trap

The trap here is that candidates assume the built-in Microsoft 365 Apps app type in Intune is always the correct choice, but they overlook the critical dependency on user licensing, which the question explicitly removes by stating users are unlicensed.

How to eliminate wrong answers

Option A is wrong because deploying the suite as 'available' from Company Portal still requires the user to have an Office 365 license to activate the apps; unlicensed users will see the app but cannot install or run it. Option B is wrong because the built-in 'Microsoft 365 Apps (Office)' app type in Intune is designed for licensed users and automatically triggers license-based activation; it will fail for unlicensed users. Option C is wrong because assigning Office 365 E3 licenses to all users is a licensing action, not a deployment method; while it would resolve the licensing issue, the question specifically states users are unlicensed and asks how to deploy the suite, not how to license users.

13
MCQhard

An administrator applies the app protection policy shown in the exhibit to a group of users. A user reports that they are unable to copy data from a managed app and paste it into an unmanaged app. Which setting in the policy causes this behavior?

A.requirePin is set to true.
B.dataTransferToUnmanagedApps is set to false.
C.appSharingFromLevel is set to 'policyManagedApps'.
D.disableAppEncryptionIfDeviceEncryptionIsEnabled is set to false.
AnswerB

This setting directly prevents data transfer to unmanaged apps.

Why this answer

The setting `dataTransferToUnmanagedApps` controls whether data can be transferred from a managed app to unmanaged apps via copy/paste, share, or other data-sharing mechanisms. When set to `false`, it blocks all such transfers, including pasting into unmanaged apps. This is the specific policy that prevents the user from copying data from a managed app and pasting it into an unmanaged app.

Exam trap

The trap here is that candidates often confuse `appSharingFromLevel` with `dataTransferToUnmanagedApps`, mistakenly thinking that restricting sharing to policy-managed apps also blocks copy/paste to unmanaged apps, when in fact `dataTransferToUnmanagedApps` is the explicit setting that controls clipboard-based data transfer to any unmanaged destination.

How to eliminate wrong answers

Option A is wrong because `requirePin` controls whether a PIN is required to access the managed app, not data transfer behavior. Option C is wrong because `appSharingFromLevel` set to `policyManagedApps` restricts sharing to only other apps that have the same app protection policy, but it does not block copy/paste to unmanaged apps; it allows sharing between managed apps. Option D is wrong because `disableAppEncryptionIfDeviceEncryptionIsEnabled` controls whether app-level encryption is disabled when device encryption is present, which is unrelated to data transfer restrictions.

14
Multi-Selecthard

Which THREE of the following are requirements for deploying a Win32 app via Microsoft Intune?

Select 3 answers
A.The device must have the Intune Management Extension installed separately.
B.The app installation files must be hosted on an external web server.
C.The app must be assigned to a group of users or devices.
D.Detection rules must be configured to verify installation.
E.The app must be packaged in the .intunewin format.
AnswersC, D, E

Assignment is required to target the app.

Why this answer

In Microsoft Intune, a Win32 app must be assigned to at least one group of users or devices to be deployed. Without an assignment, the Intune Management Extension will not receive the policy to download and install the application on the targeted devices.

Exam trap

The trap here is that candidates often confuse the automatic installation of the Intune Management Extension with a manual prerequisite, or assume that Win32 app files must be hosted externally rather than leveraging Intune's built-in cloud storage.

15
Multi-Selecteasy

Which TWO of the following are valid app types in Microsoft Intune for iOS/iPadOS devices?

Select 2 answers
A.Windows 10 Universal app
B.iOS line-of-business app
C.Android Enterprise system app
D.Managed Google Play iframe
E.iOS store app
AnswersB, E

For custom iOS apps.

Why this answer

Microsoft Intune supports deploying iOS line-of-business (LOB) apps, which are custom-built applications that are not available in the public App Store. Administrators upload the .ipa package directly to Intune, and the app is sideloaded onto managed iOS/iPadOS devices using the Intune Company Portal or Apple's Volume Purchase Program (VPP) for distribution.

Exam trap

The trap in this question is that candidates might select 'Managed Google Play iframe' thinking it is a generic web app type, but it is strictly an Android Enterprise feature and not valid for iOS/iPadOS devices in Microsoft Intune.

16
MCQhard

A user reports that a required Microsoft 365 Apps for enterprise installation failed on their Windows 11 device managed by Intune. The Intune console shows the app assignment is 'Required' for the user group. The device status shows 'Pending' for over a day. You verify the device is online and checks in regularly. What is the most likely cause?

A.The user does not have a Microsoft 365 license assigned.
B.The device has not checked in with Intune recently.
C.The device does not have enough disk space.
D.The app is assigned to the device group instead of the user group.
AnswerA

Microsoft 365 Apps require a license to activate; without it, installation may stall.

Why this answer

Microsoft 365 Apps for enterprise requires a valid license assigned to the user to install and activate. Intune's 'Pending' status indicates the installation is queued but cannot proceed, often due to license validation failure. Even though the device is online and checks in regularly, the app assignment will remain pending until the user has a license, as the Intune management extension waits for license confirmation before downloading and installing the suite.

Exam trap

The trap here is that candidates often assume 'Pending' means a technical issue like connectivity or disk space, rather than recognizing it as a licensing validation hold that prevents the installation from starting.

How to eliminate wrong answers

Option B is wrong because the scenario explicitly states the device is online and checks in regularly, so a lack of check-in is not the cause. Option C is wrong because insufficient disk space would typically result in a failed installation with an error status, not a persistent 'Pending' status; Intune would report a failure code. Option D is wrong because the app assignment is already set to 'Required' for the user group, and the device status shows 'Pending'; if the assignment were to a device group, the user would not see the app in the Company Portal, but the device would still attempt installation and show a different status.

17
Multi-Selecthard

Which FOUR of the following are valid detection rules for a Win32 app in Intune?

Select 4 answers
A.PowerShell script (custom detection)
B.MSI product code
C.Registry (key or value exists)
D.File system (file or folder exists)
E.Network share access
AnswersA, B, C, D

PowerShell script (custom detection) is a valid detection rule for Win32 apps.

Why this answer

For Win32 apps in Intune, the valid detection rules are: PowerShell script (custom detection), MSI product code, Registry (key or value exists), and File system (file or folder exists). Network share access is not a detection rule. Therefore, options A, B, C, and D are correct.

Exam trap

Candidates may mistakenly think network share access is a valid detection rule, but it is not.

18
MCQmedium

Your organization has 500 Windows 11 devices managed by Microsoft Intune. You need to deploy a third-party Win32 application (AppDeploy.exe) that requires the user to accept an end-user license agreement (EULA) during installation. The app must be installed silently without user interaction. You have created a custom script that accepts the EULA automatically. The app is packaged as an .intunewin file. You need to configure the deployment in Intune. The installation command must run the script that accepts the EULA and then launches the installer. The detection rule must check for the presence of a specific file (C:\Program Files\AppDeploy\app.exe). You want to ensure that if the installation fails, Intune retries automatically. Which of the following configurations should you choose?

A.Install command: 'powershell.exe -ExecutionPolicy Bypass -File AcceptEULA.ps1 && AppDeploy.exe /S', Detection rule: File 'C:\Program Files\AppDeploy\app.exe' exists, Retry: 3 attempts every 60 minutes
B.Install command: 'AppDeploy.exe /S', Detection rule: Registry 'HKLM\Software\AppDeploy\Installed' exists, Retry: 3 attempts every 60 minutes
C.Install command: 'powershell.exe -ExecutionPolicy Bypass -File AcceptEULA.ps1', Detection rule: File 'C:\Program Files\AppDeploy\app.exe' exists, Retry: None
D.Install command: 'AppDeploy.exe /S', Detection rule: File 'C:\Program Files\AppDeploy\app.exe' exists, Retry: None
AnswerA

Chains EULA acceptance and silent install; retry configured.

Why this answer

The install command uses a PowerShell script to first accept the EULA (AcceptEULA.ps1), then runs the installer silently with AppDeploy.exe /S. The detection rule checks for the file at C:\Program Files\AppDeploy\app.exe, which verifies installation. The retry settings (3 attempts every 60 minutes) ensure automatic retry on failure.

Option B is wrong because it does not include the EULA acceptance. Option C is wrong because it only runs the script without launching the installer, so the app never installs. Option D is wrong because it has no retry settings.

19
Multi-Selectmedium

A company uses Microsoft Intune to manage Windows 10 devices. Users report that some required line-of-business (LOB) apps are not being installed on their devices. The apps are assigned as 'Required' to a device group that includes the affected devices. Which two actions should the administrator take to troubleshoot the issue? (Choose two.)

Select 2 answers
A.Review the Intune Management Extension logs on a device for installation errors.
B.Uninstall the app from the affected devices and reassign it as Required.
C.Check the device’s last check-in time and perform a manual sync from the Intune console.
D.Reassign the app to the device group with a different assignment type.
E.Run gpresult /r on a device to confirm the app assignment policy is applied.
AnswersA, C

Logs provide detailed error messages.

Why this answer

The Intune Management Extension (IME) is the component responsible for deploying Win32 and line-of-business (LOB) apps on Windows 10 devices. Reviewing its logs (located in %ProgramData%\Microsoft\IntuneManagementExtension\Logs) provides detailed error messages, such as download failures, dependency issues, or script execution errors, which directly indicate why a required app failed to install.

Exam trap

The trap here is that candidates confuse Intune MDM app deployment with traditional Group Policy Software Installation (GPSI) and incorrectly choose gpresult /r, not realizing Intune uses the IME and MDM channel, not Active Directory Group Policy.

20
MCQmedium

Your organization uses Microsoft Intune to manage macOS devices. You need to deploy a PKG app that requires reboot. Which app type should you select?

A.macOS LOB app
B.macOS web app
C.Microsoft 365 for macOS
D.macOS DMG app
AnswerA

Supports PKG and scripts for reboot.

Why this answer

A macOS LOB (line-of-business) app type is required because Intune uses this type to deploy PKG files that can include installation scripts and handle reboots. The LOB app type supports the .pkg format natively and allows Intune to manage the installation lifecycle, including required reboots, through the Intune management agent on macOS.

Exam trap

The trap here is that candidates often confuse PKG with DMG, assuming both are handled by the same app type, but Intune requires the LOB app type specifically for PKG files that need installation scripts and reboot handling.

How to eliminate wrong answers

Option B is wrong because a macOS web app type is used to deploy web links or shortcuts, not native PKG installations that require a reboot. Option C is wrong because Microsoft 365 for macOS is a specific app type for deploying the Office suite, not for arbitrary PKG apps. Option D is wrong because a macOS DMG app type is used for .dmg disk images, which are mounted and then the app is copied; it does not support PKG-based installations or handle reboots.

21
MCQhard

You manage iOS devices with Microsoft Intune. You need to deploy an app that is not available in the Apple App Store. The app is developed internally and signed with an enterprise certificate. Which app type should you use?

A.iOS/iPadOS app store app
B.Web link
C.Built-in app
D.iOS/iPadOS Line-of-business app
AnswerD

LOB apps are for custom or in-house iOS apps.

Why this answer

For internally developed iOS apps not in the App Store, use the iOS/iPadOS Line-of-business app type. Option D is correct. Option A is wrong because the iOS app store app type is for apps from the App Store.

Option B is wrong because the Web link type is for web shortcuts. Option C is wrong because the Built-in app type is for pre-installed system apps.

22
Multi-Selecthard

Which THREE of the following are valid methods to deploy Microsoft 365 Apps for enterprise using Microsoft Intune?

Select 3 answers
A.Use the built-in Microsoft 365 Apps app type in Intune.
B.Use the Office Deployment Tool (ODT) within a script deployed via Intune.
C.Assign the apps via Azure AD application registration.
D.Package the Office installer as a Win32 app.
E.Deploy the MSI version of Office via Intune.
AnswersA, B, D

Simplest method with built-in settings.

Why this answer

Intune includes a built-in app type specifically for Microsoft 365 Apps for enterprise. This native integration allows you to configure installation settings (e.g., update channel, excluded apps, and language) directly in the Intune console without needing to create a custom package or script.

Exam trap

The trap here is that candidates confuse Azure AD application registration (an identity/authentication feature) with a deployment mechanism, or mistakenly think MSI-based Office deployment is still supported for Microsoft 365 Apps in Intune.

23
Matchingmedium

Match each Intune configuration profile type to its purpose.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Control settings like password, camera, and Bluetooth

Define rules for device health and security

Deploy custom OMA-URI or Apple Configurator settings

Configure Windows Defender Firewall and BitLocker

Group Policy-like settings for Windows devices

Why these pairings

Device restrictions manage device features, Endpoint protection handles security settings, Administrative templates use ADMX, and Custom uses OMA-URI. Common confusions involve swapping the first two.

24
MCQmedium

Your organization uses Intune to manage iOS/iPadOS devices. You need to deploy a custom SSL certificate to all devices for accessing an internal web app. Which profile type should you use?

A.PKCS certificate profile
B.SCEP certificate profile
C.Trusted certificate profile
D.Custom configuration profile (preferences)
AnswerC

Deploys a root CA certificate to devices.

Why this answer

A Trusted certificate profile is used to deploy a root or intermediate CA certificate that the device must trust for certificate-based authentication, such as accessing an internal web app over HTTPS. This profile type simply installs the certificate into the device's trusted root store without generating a private key, which is exactly what is needed when you only need to establish trust for the server certificate presented by the web app.

Exam trap

The trap here is that candidates often confuse deploying a trusted root certificate (needed for server trust) with issuing a client certificate (needed for device authentication), leading them to incorrectly choose PKCS or SCEP profiles when the question only requires establishing trust for the server's SSL certificate.

How to eliminate wrong answers

Option A is wrong because a PKCS certificate profile is used to issue a client certificate with a private key to the device for client authentication, not to deploy a trusted root certificate. Option B is wrong because a SCEP certificate profile is used to request and renew client certificates dynamically via the Simple Certificate Enrollment Protocol, again for client authentication, not for deploying a trusted root. Option D is wrong because a Custom configuration profile (preferences) is used to deploy app-specific settings or plist files, not to install certificates into the device's trust store.

25
MCQmedium

Refer to the exhibit. An Intune admin configures the above Windows Update for Business policy. Users report that quality updates are not being installed until 7 days later than expected. What is the likely reason?

A.Quality updates are paused
B.Feature updates are deferred by 30 days
C.Update notifications are set to default
D.Quality updates are deferred by 7 days
AnswerD

The deferral period causes the delay.

Why this answer

QualityUpdateDeferralPeriodInDays is set to 7, which defers updates by 7 days. This is the intended behavior; no issue. However, the question implies users think updates are late.

The policy is correct; perhaps users misunderstand. But the question asks for likely reason. The deferral period is 7 days, so updates are intentionally deferred.

The update notification level is default. Feature updates deferred 30 days. No pause.

So the quality update deferral is the cause.

26
MCQhard

An organization uses Microsoft Intune for Windows 10 device management. They need to deploy a custom Windows app (.exe) to kiosk devices. The app requires admin privileges to install, and the devices are shared. Which deployment method should be used?

A.Use a Win32 app with install context set to 'system'.
B.Assign the app as 'available' for user-install.
C.Deploy as a line-of-business app with device context.
D.Package as a Microsoft Store for Business app.
AnswerA

Win32 apps support system context installation, enabling admin-level installs on shared devices.

Why this answer

Win32 apps in Microsoft Intune can be configured with the install context set to 'system', which grants the necessary admin privileges for installation and ensures the app is installed for all users on shared kiosk devices. This method uses the Intune Management Extension to run the installer with SYSTEM account privileges, bypassing user-level restrictions and supporting per-machine installations.

Exam trap

The trap here is that candidates often confuse 'device context' with 'system context', not realizing that LOB apps cannot handle .exe files and that 'available' assignments run in user context, which fails for admin-required installs on shared devices.

How to eliminate wrong answers

Option B is wrong because assigning the app as 'available' for user-install runs the installer in the user context, which lacks admin privileges and installs per-user, not per-device, making it unsuitable for shared kiosk devices. Option C is wrong because line-of-business (LOB) apps in Intune only support .msi, .appx, or .msix formats, not .exe files, and the 'device context' option for LOB apps is limited to .msi installers with system context, not custom .exe apps. Option D is wrong because packaging as a Microsoft Store for Business app requires the app to be available in the Store or repackaged as a Store-managed app, which does not support custom .exe files and cannot enforce admin privileges during installation.

27
MCQeasy

You have the above compliance policy for Windows 10. A device running Windows 10 version 22H2 (build 22621.1) will be marked as?

A.Noncompliant because the OS version exceeds the maximum
B.Noncompliant because the password minimum length is not met
C.Noncompliant because the OS version is below the minimum
D.Compliant
AnswerA

The build is higher than the max allowed.

Why this answer

The compliance policy sets a maximum OS version of 22H2 (build 22621.1). The device is running exactly that version, which meets the maximum threshold. However, in Intune compliance policies, the 'Maximum OS version' rule marks a device as noncompliant if the OS version is greater than the specified version.

Since the device's version equals the maximum, it is not greater, so it should be compliant. But the question states the device is running version 22H2 (build 22621.1), which is the exact maximum, and the correct answer is marked as noncompliant because the OS version exceeds the maximum. This is a trick: the build number 22621.1 is actually for Windows 11, not Windows 10 22H2, so the device is running a higher OS version than allowed, making it noncompliant.

Exam trap

The trap here is that candidates assume the version string '22H2' alone determines compliance, but Microsoft uses build numbers to differentiate between Windows 10 and Windows 11, so a build of 22621 indicates Windows 11, which exceeds the maximum OS version policy for Windows 10.

How to eliminate wrong answers

Option B is wrong because the compliance policy does not include a password minimum length requirement; the policy only specifies OS version rules, so password length is irrelevant. Option C is wrong because the device's OS version (22H2 build 22621.1) is not below the minimum; the minimum is set to 21H2 (build 19044.1), and the device's version is higher. Option D is wrong because the device is noncompliant due to the OS version exceeding the maximum, as the build number 22621.1 corresponds to Windows 11, which is a higher version than Windows 10 22H2.

28
MCQmedium

You need to deploy a custom Win32 app to Windows 10 devices. The app installation is silent and requires a reboot. You set the installation behavior to 'system' and the device restart behavior to 'Allow'. After deployment, users report that the app is installed but not working properly. What is the most likely cause?

A.The app requires user interaction to complete setup
B.The detection rule is misconfigured
C.The device was not restarted after installation
D.The app was not wrapped correctly with the Intune Win32 Content Prep Tool
AnswerC

A pending restart can cause apps to malfunction.

Why this answer

When the device restart behavior is set to 'Allow', Intune will request a reboot but does not force it; the user can postpone or ignore the prompt. If the app requires a reboot to complete its installation or initialize properly, skipping the restart leaves the app in a partially installed state, causing it to appear installed but malfunction. This is the most likely reason the app is not working correctly after deployment.

Exam trap

The trap here is that candidates assume 'Allow' means the device will always restart automatically, but Intune's 'Allow' setting only requests a restart and does not enforce it, leaving the user in control and potentially causing incomplete installations.

How to eliminate wrong answers

Option A is wrong because the installation behavior is set to 'system' and the app installation is described as silent, meaning it does not require user interaction to complete setup. Option B is wrong because a misconfigured detection rule would cause Intune to report the app as not installed or repeatedly attempt reinstallation, not result in the app being installed but not working properly. Option D is wrong because if the app were not wrapped correctly with the Intune Win32 Content Prep Tool, the deployment would typically fail entirely or the app would not install at all, rather than installing and then malfunctioning.

29
MCQmedium

Your organization uses Microsoft Intune to manage iOS/iPadOS devices. You need to deploy a Microsoft Copilot app that requires users to sign in with their work account. The app must be automatically installed without user interaction. What should you do?

A.Configure a web clip that links to the app in the App Store.
B.Create an Intune App Protection Policy for the app.
C.Add the app as a line-of-business app and deploy via Company Portal.
D.Purchase the app through Apple Business Manager and assign it as a required app in Intune.
AnswerD

VPP allows silent install on supervised devices.

Why this answer

When you purchase an app through Apple Business Manager (formerly Volume Purchase Program), you can assign it as a required app in Intune. If the iOS/iPadOS device is supervised, the app is installed silently without user interaction. Option A is incorrect because a web clip only creates a shortcut on the home screen and does not install the app.

Option B is incorrect because an App Protection Policy controls how data is used within an app, but it does not handle installation. Option C is incorrect because while a line-of-business app can be deployed via Company Portal, the user must manually initiate the installation from the Company Portal app.

30
MCQeasy

You need to deploy a Microsoft Store app (e.g., Microsoft Whiteboard) to Windows 10 devices managed by Intune. Which app type should you use?

A.Microsoft Store app (Windows)
B.Windows app (Win32)
C.Web link
D.Microsoft Store for Business (offline licensed)
AnswerA

Directly supports store apps.

Why this answer

To deploy a Microsoft Store app like Microsoft Whiteboard to Windows 10 devices managed by Intune, you must use the 'Microsoft Store app (Windows)' app type. This type directly integrates with the Microsoft Store catalog, allowing you to select and deploy store apps without needing offline licensing or manual packaging. It supports both online and offline licensing models, but for a standard store app deployment, this is the correct and simplest choice.

Exam trap

The trap here is that candidates often confuse 'Microsoft Store app (Windows)' with 'Microsoft Store for Business (offline licensed)', thinking offline licensing is always required for managed deployments, but the standard store app type works for online scenarios and is the default choice for deploying store apps like Whiteboard.

How to eliminate wrong answers

Option B is wrong because 'Windows app (Win32)' is used for deploying traditional desktop applications (e.g., .exe, .msi) that require custom installation scripts or detection rules, not for Microsoft Store apps. Option C is wrong because 'Web link' simply creates a shortcut to a URL in the Company Portal and does not install any application. Option D is wrong because 'Microsoft Store for Business (offline licensed)' is a specific licensing model for offline deployment of store apps, but the question does not specify an offline requirement; the standard 'Microsoft Store app (Windows)' type can handle both online and offline scenarios, and is the general-purpose type for store apps.

31
Multi-Selecthard

You are troubleshooting an Intune deployment of a line-of-business (LOB) app for iOS. The app fails to install on some devices with error '0x87D13B9F'. Which THREE actions should you take to diagnose the issue?

Select 3 answers
A.Check the Intune Service Health dashboard for service incidents
B.Check if the device is supervised and that the app requires supervised mode
C.Ensure that an app configuration policy is assigned to the device
D.Verify that the app's provisioning profile has not expired
E.Confirm that the device has sufficient storage space available
AnswersB, D, E

Some LOB apps require supervised devices.

Why this answer

Error 0x87D13B9F in Intune for iOS LOB apps typically indicates a deployment restriction related to device supervision. If the app requires supervised mode (e.g., for managed app configuration or advanced MDM controls) and the target device is not supervised, Intune will fail to install the app with this error. Verifying supervision status is a primary diagnostic step.

Exam trap

The trap here is that candidates often confuse a device-level installation error with a service health or policy assignment issue, overlooking the specific requirement for supervised mode that is common for iOS LOB apps in enterprise deployments.

32
MCQeasy

Your company uses Microsoft Intune to manage Windows 10 devices. You need to deploy a Microsoft Store app (new) named 'Company Portal' to all devices. The app is already added to Intune. You assign the app to a static device group that includes all current devices with the intent 'Required'. However, you notice that devices that enroll after the assignment do not receive the app automatically. What should you do to ensure that the app installs on newly enrolled devices?

A.Create a new assignment with 'Available' intent for the 'All devices' group
B.Ensure the device group is a dynamic group that includes all devices (e.g., use the built-in 'All devices' group)
C.Re-add the app to Intune
D.Change the assignment intent to 'Available'
AnswerB

Dynamic groups automatically include new devices.

Why this answer

Static groups in Intune do not automatically include devices that are enrolled after the group is created. To ensure the app installs on newly enrolled devices, the device group must be dynamic. Dynamic groups automatically include devices based on rules, such as all devices.

The built-in 'All devices' group is dynamic, but if you are using a custom static group, you should change it to a dynamic group or assign the app to a dynamic group like 'All devices'.

33
Multi-Selectmedium

Which TWO actions are required to deploy a Win32 app using Microsoft Intune? (Choose two.)

Select 2 answers
A.Upload the .intunewin package file.
B.Configure detection rules.
C.Connect to Managed Google Play.
D.Assign a Microsoft Store license.
E.Sign the app with a macOS developer certificate.
AnswersA, B

The .intunewin file is the packaged app for Win32 deployment.

Why this answer

Uploading the .intunewin package file is mandatory for deploying a Win32 app via Intune; this file encapsulates the app's installation files and metadata. Option B is correct because configuring detection rules is essential to verify the app's installation status and reapply policies as needed. Both actions are required for successful deployment.

Exam trap

The trap here is that candidates may confuse the requirements for Win32 apps with those for other platforms (Android, Microsoft Store, macOS), leading them to select options that are valid for those platforms but irrelevant for Win32 deployment.

34
MCQhard

An organization uses Microsoft Intune to manage iOS/iPadOS devices. They have a custom line-of-business (LOB) iOS app that must be deployed to 50 devices. The app is signed with an enterprise certificate. The administrator uploads the .ipa file to Intune and assigns it as 'Required' to a device group containing the 50 devices. After 24 hours, only 30 devices have the app installed. The remaining 20 devices show 'pending install' status. What is the most likely cause?

A.The .ipa file exceeds the maximum file size allowed for LOB apps.
B.The users on the 20 devices have not opened the Company Portal app to trigger the installation.
C.The devices do not have a trusted certificate profile that trusts the enterprise signing certificate.
D.The MDM push certificate has expired, preventing app installation.
AnswerC

Enterprise-signed apps require the device to trust the root certificate.

Why this answer

The most likely cause is that the 20 devices lack a trusted certificate profile that trusts the enterprise signing certificate. For an enterprise-signed LOB app to install on iOS/iPadOS, the device must trust the root certificate used to sign the app. Without a trusted certificate profile deployed via Intune, the installation will remain in 'pending install' status because the device cannot validate the app's signature.

Exam trap

The trap here is that candidates often assume 'pending install' means a user action is required (like opening Company Portal) or a network issue, but Microsoft Intune's MDM channel can push apps silently; the real blocker is certificate trust for enterprise-signed apps.

How to eliminate wrong answers

Option A is wrong because Intune's maximum file size for LOB apps is 2 GB, and the .ipa file would typically be much smaller; exceeding this limit would cause an upload failure, not a 'pending install' status. Option B is wrong because when an app is assigned as 'Required' in Intune, the installation is pushed silently via the MDM channel and does not require the user to open the Company Portal app. Option D is wrong because an expired MDM push certificate would prevent all MDM communication, not just app installations on a subset of devices, and the other 30 devices successfully installed the app, proving the push certificate is valid.

35
Multi-Selectmedium

A company is planning to deploy a custom Win32 app to Windows 10 devices using Intune. The app requires a .NET Framework 4.8 prerequisite. Which TWO methods can the administrator use to ensure the prerequisite is installed?

Select 2 answers
A.Require users to manually install the prerequisite
B.Use Group Policy to deploy the prerequisite
C.Add the prerequisite as a dependency in the app deployment
D.Package the prerequisite into the same Win32 app
E.Create a custom detection script that installs the prerequisite if missing
AnswersC, E

Dependencies allow automatic installation of prerequisites.

Why this answer

Intune Win32 app deployment supports dependencies, allowing an administrator to specify .NET Framework 4.8 as a required dependency. When configured, Intune automatically installs the dependency before the main app, ensuring the prerequisite is present without manual intervention or additional scripting.

Exam trap

The trap here is that candidates often confuse 'packaging the prerequisite into the same app' (Option D) as a valid method, but Intune requires dependencies to be separate app entries with their own detection rules, not bundled installers.

36
MCQeasy

Your organization has devices enrolled in Microsoft Intune that are not domain-joined. You need to deploy a LOB app that requires a license key stored in a file. The app must be installed automatically when devices are enrolled. What should you do?

A.Package the app as a Win32 app and include a script to copy the license file.
B.Use a Microsoft Store for Business app and include the license as a dependency.
C.Join devices to Azure AD and use Group Policy to install.
D.Create an Intune App Protection Policy to deploy the license.
AnswerA

Win32 app allows custom installation scripts.

Why this answer

Microsoft Intune can deploy Win32 apps with installation scripts that can handle license file copying. Option B is incorrect because Microsoft Store for Business apps do not support custom license files as dependencies. Option C is incorrect because Group Policy requires domain-joined devices and Azure AD Join does not enable Group Policy for app installation in Intune.

Option D is incorrect because App Protection Policies are used to manage data protection settings, not to deploy app binaries or license files.

37
MCQmedium

A company uses Microsoft Intune to manage iOS and Android devices. Users report that some line-of-business (LOB) apps fail to install with error '0x87D1041C'. The apps are signed and deployed as device-required installs. What is the most likely cause?

A.The user is not assigned to the app deployment.
B.The app is not compliant with the device's OS version.
C.The device does not have the required app configuration policy.
D.The app is signed with a different certificate than the one uploaded to Intune.
AnswerD

This error specifically indicates a certificate mismatch.

Why this answer

Error 0x87D1041C in Intune indicates a signature mismatch. When a line-of-business (LOB) app is deployed as a device-required install, the app binary must be signed with a certificate that has been uploaded to the Intune console. If the signing certificate used to sign the app differs from the one uploaded, Intune rejects the installation because it cannot verify the app's integrity and trust chain.

Exam trap

The trap here is that candidates often confuse error 0x87D1041C with a user assignment or OS version issue, but the specific error code directly points to a certificate mismatch, not a policy or compliance failure.

How to eliminate wrong answers

Option A is wrong because the deployment is configured as a device-required install, which targets the device directly and does not require user assignment; the error would be different (e.g., 0x87D13B9F) if the user lacked assignment. Option B is wrong because OS version compliance issues typically produce error 0x87D1041C only if the app's minimum OS requirement is not met, but the question states the apps are signed and deployed, and the specific error code 0x87D1041C maps to a certificate/signing problem, not an OS version mismatch. Option C is wrong because app configuration policies are optional for LOB apps and are not required for installation; missing configuration policies would not block installation with this error code.

38
MCQeasy

You need to deploy a Microsoft 365 Apps for enterprise configuration (e.g., exclude specific apps) to Windows 10 devices via Intune. Which tool should you use to generate the configuration XML?

A.Office Customization Tool (OCT)
B.Group Policy Management Console
C.Microsoft 365 admin center
D.Microsoft Intune admin center
AnswerA

OCT creates the configuration XML for Click-to-Run installations.

Why this answer

The Office Customization Tool (OCT) is the correct tool because it generates the configuration XML file (configuration.xml) that Intune uses to control Microsoft 365 Apps for enterprise deployments, including excluding specific apps like Access or Publisher. Intune's built-in Office deployment integration relies on this XML to define installation settings, and the OCT is the official Microsoft tool designed for this purpose.

Exam trap

The trap here is that candidates confuse the Intune admin center (where you assign the policy) with the tool that creates the configuration file, leading them to pick Option D instead of recognizing that the OCT is the separate, prerequisite tool for XML generation.

How to eliminate wrong answers

Option B is wrong because Group Policy Management Console is used to manage Group Policy Objects (GPOs) for domain-joined devices, not to generate the XML configuration file required by Intune for Office deployment. Option C is wrong because the Microsoft 365 admin center manages licensing, user accounts, and service settings, but it does not generate the deployment XML for Office app exclusions. Option D is wrong because the Microsoft Intune admin center is where you upload and assign the configuration XML, but it does not generate the XML itself; the OCT is the tool that creates the file.

39
MCQeasy

You assign a required app to a device group. After the next sync, some devices report a 'Failed' status. What should you check first?

A.The device's last sync time
B.If a newer version is already installed
C.Whether the user is licensed
D.The device management log
AnswerD

Logs contain error details.

Why this answer

The device management log (also known as the Intune management extension log or the MDM agent log on the device) provides detailed, real-time error codes and failure reasons for app installation attempts. When a required app shows 'Failed' status after sync, this log is the first place to check because it captures the exact cause—such as a download failure, dependency issue, or script execution error—that the Intune console cannot surface in summary views.

Exam trap

The trap here is that candidates assume 'Failed' status always points to a licensing or sync timing issue, when in fact the device management log is the definitive source for granular failure details that the Intune console summary cannot provide.

How to eliminate wrong answers

Option A is wrong because the last sync time only tells you when the device last communicated with Intune, not why a specific app installation failed; a recent sync does not guarantee successful app processing. Option B is wrong because checking for a newer version already installed is a troubleshooting step for 'Not Applicable' or 'Already Installed' statuses, not for 'Failed' status—the failure indicates the installation process itself encountered an error. Option C is wrong because licensing is validated at enrollment and sync time; if the user were unlicensed, the app would typically show as 'Not Applicable' or the device would not receive the policy at all, not a 'Failed' installation status.

40
MCQmedium

Your organization uses Microsoft Intune to manage Windows 10 devices. Users report that some required applications are not being installed on their devices. You confirm the applications are assigned as 'Required' to a device group, and the devices are online. What is the most likely cause?

A.BitLocker encryption is pending
B.The user is not logged in to the device
C.The enrollment status page is blocking installation
D.The Intune Management Extension is missing
AnswerD

The Intune Management Extension is required for processing Win32 app installations; if missing, apps will not install.

Why this answer

The Intune Management Extension is required to process Win32 app installations. If the extension is missing or not running, required apps will not install even though the device is online and assignment is configured. Option A is wrong because BitLocker encryption status does not affect app installation.

Option B is wrong because device-targeted assignments do not require the user to be logged in. Option C is wrong because the enrollment status page does not block required app installations after enrollment is complete.

41
MCQhard

Your organization uses Microsoft Intune to manage iOS/iPadOS devices. You need to deploy an internal web app as a web clip on users' devices. The app requires users to authenticate with their organization credentials. Which configuration is required to ensure a seamless single sign-on experience?

A.Add the web clip with 'Managed App Configuration' including SSO key
B.Enable 'Use managed browser' in the app assignment
C.Deploy a VPN configuration that forces traffic through the corporate network
D.Configure the web clip with 'Full screen' option enabled
AnswerA

Managed App Configuration allows setting SSO for web clips.

Why this answer

Deploying the web clip with 'Managed App Configuration' including an SSO key allows Intune to inject authentication tokens into the web clip, enabling seamless single sign-on (SSO) without requiring the user to re-enter credentials. This leverages the Microsoft Enterprise SSO plug-in or a custom SSO configuration to automatically authenticate against the internal web app using the user's organization credentials.

Exam trap

The trap here is that candidates confuse network-level controls (like VPN or managed browser) with identity-layer SSO, assuming that forcing traffic through the corporate network or using a managed browser alone will automatically authenticate the user, when in fact SSO requires explicit app configuration to pass authentication tokens.

How to eliminate wrong answers

Option B is wrong because enabling 'Use managed browser' only forces the web clip to open in a managed browser (e.g., Microsoft Edge) but does not by itself provide SSO; it requires additional configuration like the SSO plug-in or app configuration policies to pass authentication tokens. Option C is wrong because deploying a VPN configuration that forces traffic through the corporate network addresses network-level access but does not handle authentication; SSO requires identity-layer token exchange, not just network routing. Option D is wrong because configuring the web clip with 'Full screen' option enabled only changes the display mode (hides Safari UI) and has no impact on authentication or SSO behavior.

42
MCQmedium

Contoso uses Intune to manage iOS/iPadOS devices. You need to ensure that only approved apps from the Microsoft Store can be installed on corporate devices. What should you configure?

A.App Protection Policies (APP)
B.Device Compliance policies
C.iOS/iPadOS App Configuration policies
D.Managed App Policies (MAM)
AnswerC

iOS/iPadOS App Configuration policies can include settings to restrict app installation to only approved apps from the Microsoft Store.

Why this answer

To ensure only approved apps from the Microsoft Store can be installed on corporate iOS/iPadOS devices, configure a Device restrictions policy (Device configuration profile) with settings such as blocking the App Store or allowing only managed apps. App Configuration policies cannot restrict app installation; they only supply app-specific settings.

Exam trap

Do not confuse App Configuration policies with Device restrictions. App Configuration policies configure settings within apps; Device restrictions control device-level behaviors such as app installation.

How to eliminate wrong answers

Option A is wrong because App Protection Policies (APP) control data leakage and access within apps (e.g., copy/paste restrictions), not the installation of apps from specific sources. Option B is wrong because Device Compliance policies evaluate device health (e.g., jailbreak detection, OS version) but do not restrict which apps can be installed. Option C is wrong because iOS/iPadOS App Configuration policies deliver settings to apps (e.g., managed bookmarks, server URLs) but do not block installation of unapproved apps.

43
MCQmedium

A company uses Microsoft Intune to manage Windows 10 devices. They deployed a Win32 app as 'required' but some devices show 'pending install'. The app is configured with a detection rule that checks for a registry key. What should you check first?

A.Increase the app installation timeout.
B.Ensure the device has connectivity to Intune.
C.Reassign the app to a different security group.
D.Check if the detection rule is incorrectly marking the app as installed.
AnswerD

A pre-existing registry key can cause Intune to skip installation, resulting in 'pending install'.

Why this answer

The most common reason for a 'pending install' status when a detection rule is configured is that the rule is incorrectly detecting the app as already installed. Intune evaluates the detection rule before attempting installation; if the rule finds the registry key (even if the app is not fully functional), Intune skips the installation and reports 'pending' or 'installed' without actually deploying the app. This is a frequent misconfiguration where the detection rule is too broad or references a key that exists from a previous installation or unrelated software.

Exam trap

The trap here is that candidates often assume 'pending install' means a connectivity or timeout issue, but the real cause is a misconfigured detection rule that falsely reports the app as already installed, preventing the installation from executing.

How to eliminate wrong answers

Option A is wrong because increasing the installation timeout would not resolve a detection rule that incorrectly marks the app as installed; timeout issues typically affect downloads or installations that are genuinely in progress, not a false positive detection. Option B is wrong because if the device lacked connectivity to Intune, the status would likely be 'not applicable' or 'error' rather than 'pending install', and Intune would report a communication failure. Option C is wrong because reassigning the app to a different security group would not fix a detection rule logic error; the issue is with how the app is detected on the device, not with group membership or targeting.

44
MCQhard

You manage a fleet of Windows 10 devices with Microsoft Intune. You need to deploy a Win32 app that has a complex installation requiring multiple command-line parameters. The app must be available to users in the Company Portal. What is the best way to handle the installation parameters?

A.Deploy a PowerShell script via Intune that runs the installer with parameters.
B.Configure detection rules to run a script that passes parameters.
C.Use the Intune Win32 app packaging to specify the installation command with parameters.
D.Use an administrative template to set parameters before installing.
AnswerC

The .intunewin file includes the command line.

Why this answer

Intune's Win32 app packaging allows you to specify the full installation command, including complex parameters, directly in the 'Install command' field. This method ensures the installer runs with the exact parameters needed, and the app is then published to the Company Portal for user self-service. PowerShell scripts or detection rules do not handle the installation parameters themselves, and administrative templates are for configuring settings, not installation commands.

Exam trap

The trap here is that candidates may think a PowerShell script is needed for complex parameters, but Intune's Win32 app packaging directly supports any command-line string, making the script unnecessary and less efficient.

How to eliminate wrong answers

Option A is wrong because deploying a PowerShell script via Intune that runs the installer with parameters is an indirect workaround; Intune's Win32 app packaging natively supports specifying the installation command with parameters, making a separate script unnecessary and less reliable for detection and reporting. Option B is wrong because detection rules are used to verify if an app is already installed, not to pass installation parameters; they run after the installation command, not during it. Option D is wrong because administrative templates (ADMX-backed policies) are used to configure registry-based settings or policies, not to specify installation command-line parameters for a Win32 app.

45
Multi-Selectmedium

A company uses Microsoft Intune to manage Android Enterprise devices. They have a requirement to deploy a set of apps that are critical for business operations. Which TWO app deployment policies should the administrator configure to ensure the apps are always available and up-to-date?

Select 2 answers
A.Enable 'Auto-update' for the apps in the managed Play Store.
B.Assign the apps as 'Required' to the device group.
C.Configure the app to allow users to update manually.
D.Assign the apps as 'Available for enrolled devices' to the device group.
E.Set the app assignment type to 'Uninstall' for the device group.
AnswersA, B

Auto-update ensures apps stay current.

Why this answer

Enabling 'Auto-update' for apps in the managed Play Store ensures that critical business apps are automatically updated to the latest version without user intervention, maintaining security and functionality. Option B is correct because assigning apps as 'Required' to a device group forces installation on all targeted devices, guaranteeing that the apps are always present for business operations.

Exam trap

The trap here is that candidates often confuse 'Available for enrolled devices' with 'Required', not realizing that only 'Required' forces installation, while 'Available' relies on user action, which fails the 'always available' requirement.

46
MCQhard

Your organization uses Microsoft Intune to manage macOS devices. You need to deploy a .pkg app that is signed by a developer certificate that is not yet trusted on the devices. What must you do to allow the installation?

A.Deploy the app as a line-of-business app with the 'Allow user to bypass' option enabled.
B.Use a device configuration policy to trust the developer certificate before deploying the app.
C.Instruct users to manually approve the installation in System Preferences.
D.Convert the .pkg to a .dmg and deploy via Microsoft Store for Business.
AnswerB

Trusting the certificate allows the .pkg to run.

Why this answer

MacOS requires that the developer certificate of a .pkg app be trusted at the system level before installation can proceed. By deploying a device configuration policy in Intune that adds the developer certificate to the trusted root store, you establish the necessary trust chain, allowing the .pkg to install without user intervention. This approach aligns with macOS Gatekeeper and security policies, which block unsigned or untrusted packages by default.

Exam trap

The trap here is that candidates assume the 'Allow user to bypass' option (Option A) will let the installation proceed despite the untrusted certificate, but it only controls the user-facing error message and does not override macOS security enforcement.

How to eliminate wrong answers

Option A is wrong because the 'Allow user to bypass' option in Intune for line-of-business apps only suppresses the installation failure prompt; it does not resolve the underlying certificate trust issue, and the app will still fail to install if the certificate is untrusted. Option C is wrong because instructing users to manually approve the installation in System Preferences is not a scalable or reliable management approach, and Intune cannot enforce or automate this manual step across devices. Option D is wrong because converting a .pkg to a .dmg does not address the certificate trust requirement, and Microsoft Store for Business does not support direct deployment of .dmg files to macOS devices; it is intended for Windows and mobile apps.

47
Drag & Dropmedium

Order the steps to configure a Windows 10 device for Microsoft 365 Apps deployment via Intune.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4

Why this order

Begin in Intune admin center, add a new app, choose Microsoft 365 Apps, configure suite, and assign.

48
MCQhard

You have an Intune-managed Windows 10 device that is not receiving app updates. The app was deployed as a Win32 app with a detection rule. You verify that the device is online and the Intune Management Extension is running. What should you check first?

A.The detection rule is set to 'File exists'.
B.The app is assigned as 'Required' in the assignment.
C.The Intune Management Extension is up to date.
D.The app assignment schedule is configured to update.
AnswerD

The update schedule must be set for the app to receive updates.

Why this answer

The app update frequency is controlled by the app assignment schedule. Option D is correct because Win32 apps in Intune update based on the assignment schedule; if it is not configured to update, the app will not receive updates. Option A is incorrect because detection rules are used for installation detection, not update scheduling.

Option B is incorrect because even if the app is assigned as 'Required', updates only occur if the schedule allows. Option C is incorrect because the Intune Management Extension being up to date does not control update frequency.

49
MCQmedium

Your organization uses Microsoft Intune to manage Windows 10 devices. You need to deploy a line-of-business (LOB) app that requires a reboot after installation. Which deployment configuration should you use to ensure the app installs and the device reboots outside of business hours?

A.Available assignment without deadline
B.Available assignment with a deadline and a grace period for reboot
C.Uninstall assignment for all devices
D.Required assignment with a reboot behavior of 'Immediate'
AnswerD

Required assignment ensures automatic installation. Although the reboot behavior is 'Immediate', you can configure device restart policies (like Active Hours) to delay the reboot until outside business hours, meeting the requirement.

Why this answer

A Required assignment ensures the app is forcibly installed on devices. Although the reboot behavior is set to 'Immediate', you can use device configuration policies (such as Active Hours or Windows Update restart policies) to defer the reboot until outside business hours. Option A does not guarantee installation because it is only available.

Option B is invalid because Available assignments do not support deadlines or grace periods. Option C is for uninstalling, not deploying.

Exam trap

Candidates often think that an Available assignment with a deadline can enforce installation, but Available assignments only make apps available in Company Portal; they do not support deadlines or grace periods. To ensure installation and schedule reboot, a Required assignment is necessary. While 'Immediate' reboot seems counterintuitive for scheduling, you can combine it with device restart policies to achieve the desired outcome.

How to eliminate wrong answers

Option A is wrong because an Available assignment without deadline makes the app optional for users to install from Company Portal, and does not enforce installation or reboot timing, so the app may never be installed or rebooted outside business hours. Option C is wrong because an Uninstall assignment removes the app from devices, which is the opposite of deploying it. Option D is wrong because a Required assignment with a reboot behavior of 'Immediate' forces the device to reboot as soon as the app installs, regardless of business hours, causing potential disruption.

50
MCQhard

You are troubleshooting an Intune-managed iOS device that cannot install a VPP (Volume Purchase Program) app. The device shows a 'License Not Found' error. The app is assigned as 'Available' without device enrollment. What is the most likely cause?

A.The app is configured to remove when the device leaves management.
B.The Apple VPP token has expired.
C.The device is not compliant with conditional access policies.
D.The device is enrolled without user affinity (device enrollment).
AnswerD

VPP apps need user affinity to assign licenses.

Why this answer

The 'License Not Found' error occurs because VPP app licenses are tied to a user principal name (UPN). When a device is enrolled without user affinity (device enrollment), there is no associated user to which the VPP license can be assigned. Since the app is assigned as 'Available' (requiring user-based licensing), the device cannot retrieve a license, resulting in the error.

Exam trap

The trap here is that candidates confuse device enrollment without user affinity with device-based VPP licensing, not realizing that 'Available' assignments always require a user context to redeem a license.

How to eliminate wrong answers

Option A is wrong because the 'remove when device leaves management' setting controls app removal upon unenrollment, not license retrieval during installation. Option B is wrong because an expired VPP token would prevent synchronization of app licenses entirely, not cause a per-device 'License Not Found' error; the token expiration would typically show a different error in the console. Option C is wrong because conditional access policies control access to resources like email or SharePoint, not the installation of VPP apps; non-compliance would block access, not cause a license error during app installation.

51
MCQhard

Your organization deploys Microsoft Defender for Endpoint (now Microsoft Defender XDR) on Windows 10 devices using Intune. After deployment, some devices show 'Defender service is not running' in the security console. The devices are online and compliant. What is the most likely cause?

A.Tamper protection is enabled and blocking the service.
B.The devices are not compliant with the Defender policy.
C.Windows Firewall is blocking Defender updates.
D.A third-party antivirus is installed and active.
AnswerD

Defender disables when another AV is active.

Why this answer

When a third-party antivirus is installed and active on a Windows 10 device, Windows Defender (now Microsoft Defender Antivirus) automatically disables itself to avoid conflicts. This is by design: the Windows Security Center detects the active third-party AV and sets Defender's service state to stopped or disabled. In the Microsoft Defender for Endpoint console, this appears as 'Defender service is not running' even though the device is online and compliant with Intune policies.

Exam trap

The trap here is that candidates often assume tamper protection (Option A) is the culprit because it is a common security feature, but they overlook the automatic disabling behavior triggered by a third-party antivirus registration in the Windows Security Center.

How to eliminate wrong answers

Option A is wrong because tamper protection prevents unauthorized changes to Defender settings but does not stop the Defender service itself; it blocks modifications to real-time protection, cloud-delivered protection, and security intelligence updates, not the service state. Option B is wrong because the devices are explicitly stated as compliant with the Defender policy, so non-compliance is not the cause. Option C is wrong because Windows Firewall does not block Defender updates; Defender updates use Windows Update or dedicated update channels (e.g., HTTP/HTTPS to Microsoft servers) which are not filtered by the built-in firewall unless custom rules are misconfigured, and even then, a blocked update would not stop the service from running.

52
Multi-Selecthard

Which THREE of the following are valid detection rule types for a Win32 app in Microsoft Intune? (Select THREE.)

Select 3 answers
A.Windows feature
B.MSI product code
C.File system
D.Registry
E.DNS query
AnswersB, C, D

Detects based on MSI product GUID.

Why this answer

MSI product code detection rules allow Intune to verify the presence of a Win32 app by checking the Windows Installer (MSI) product code in the registry (HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall). This is a native detection method that directly confirms the application's installation state without requiring custom scripts.

Exam trap

The trap here is that candidates may confuse 'Windows feature' (a deployment type for optional Windows features) with a valid detection rule, or assume 'DNS query' is a plausible detection method due to its use in other Intune features like compliance policies, but it is not applicable to Win32 app detection.

53
MCQmedium

Your organization manages Windows devices with Intune and uses Azure Information Protection (AIP) to classify documents. You are deploying the AIP client as a Win32 app. After deployment, some users report that the AIP add-in is not visible in Office applications. What should you check first?

A.Confirm that Office is updated to the latest version.
B.Ensure that the required .NET Framework and Visual Studio Tools for Office runtime are installed.
C.Verify that the user has local administrator rights.
D.Check if the device has internet access to activate the client.
AnswerB

These are prerequisites for the add-in to load.

Why this answer

The AIP client add-in for Office requires the .NET Framework and Visual Studio Tools for Office runtime to be installed. If these prerequisites are missing, the add-in will not load. Option A is incorrect because while Office updates may be necessary, the most common issue is missing prerequisites.

Option C is incorrect because local administrator rights are not required for the add-in to be visible after installation. Option D is incorrect because internet access is needed for activation but does not affect add-in visibility.

54
MCQeasy

Refer to the exhibit. You see this JSON in an Intune policy for a Windows 10 device. What type of app is being deployed?

A.Win32 app
B.Web app
C.Line-of-business app
D.Microsoft Store app
AnswerD

The type is windowsStoreApp.

Why this answer

The JSON includes the key 'productId' with a value like '9WZDNCRFJ3PS', which is a Microsoft Store product identifier. Intune uses this identifier to deploy apps directly from the Microsoft Store for Windows 10 devices, making this a Microsoft Store app deployment. The absence of an installation command line, file path, or URL confirms it is not a Win32, LOB, or web app.

Exam trap

The trap here is that candidates confuse the productId with a package family name or assume any JSON with an ID must be a Win32 app, but the specific 'productId' key is unique to Microsoft Store app deployments in Intune.

How to eliminate wrong answers

Option A is wrong because Win32 apps require an installation command line and file path (e.g., .exe or .msi), not a productId. Option B is wrong because web apps are defined by a URL and do not use a productId; they simply open a browser link. Option C is wrong because line-of-business apps are uploaded directly as a package file (e.g., .appx or .msi) and do not reference a Microsoft Store productId.

55
MCQeasy

An organization uses Microsoft Intune to manage Windows 11 devices. They want to deploy a custom script that runs during device provisioning (ESP – Enrollment Status Page). Which app type should they use?

A.Line-of-business app
B.Win32 app
C.PowerShell script (Device configuration)
D.Proactive remediations
AnswerC

Can run during ESP.

Why this answer

PowerShell scripts (Device configuration) are the correct choice because they can be assigned to run during the Enrollment Status Page (ESP) phase of Windows 11 provisioning. Unlike Win32 or LOB apps, PowerShell scripts are executed by the Intune Management Extension before the ESP completes, allowing custom actions like registry modifications or file creation to occur during the critical 'Device setup' stage. This ensures the script runs synchronously with ESP, blocking the provisioning process until completion.

Exam trap

The trap here is that candidates often confuse 'PowerShell scripts (Device configuration)' with 'Proactive remediations' or 'Win32 apps,' assuming any script can run during ESP, but only the specific PowerShell script deployment type is designed to execute synchronously within the provisioning flow.

How to eliminate wrong answers

Option A is wrong because Line-of-business (LOB) apps are intended for sideloading .appx or .msix packages and cannot run custom scripts during ESP; they are installed after ESP completes. Option B is wrong because Win32 apps are deployed via the Intune Management Extension and are not designed to execute during the ESP phase—they run after the user signs in and are not integrated with the provisioning sequence. Option D is wrong because Proactive remediations are used for detecting and fixing common support issues on already-enrolled devices, not for running scripts during initial provisioning or ESP.

56
Multi-Selectmedium

Which THREE conditions must be met for an iOS line-of-business app to be successfully installed via Intune?

Select 3 answers
A.The app must be assigned to a security group.
B.The app must be signed with an Apple Developer Enterprise Distribution certificate.
C.The device UDID must be registered with Apple Business Manager.
D.The app must be uploaded as a .ipa file.
E.The user must have an active Apple ID.
AnswersA, B, D

Assignment is required for deployment, but the question asks for conditions for installation, not deployment. However, without assignment it won't install. But the three correct answers are the technical prerequisites.

Why this answer

For an iOS line-of-business (LOB) app to be successfully installed via Intune, three conditions must be met. First, the app must be assigned to a security group (A) because Intune targets app deployments to groups; without assignment the app will not be installed. Second, the app must be signed with an Apple Developer Enterprise Distribution certificate (B) to be trusted by devices without individual Apple approval.

Third, the app must be uploaded as a .ipa file (D), which is the required package format for iOS LOB apps. Option C is incorrect because registering the device UDID with Apple Business Manager is not a requirement for LOB app installation; it is used for device enrollment and supervision. Option E is incorrect because an active Apple ID is not needed for enterprise-distributed LOB apps.

Exam trap

The trap here is that candidates often confuse the prerequisites for App Store apps (which require an Apple ID) with those for enterprise LOB apps, leading them to incorrectly select 'active Apple ID' as a requirement.

57
Multi-Selectmedium

Your organization uses Intune to manage iOS devices. You need to deploy a custom configuration for a line-of-business app. Which TWO methods can you use?

Select 2 answers
A.App Configuration Policy for managed devices
B.App Protection Policy
C.iOS app configuration file in the app package
D.App Configuration Policy for managed apps
E.Device Configuration Profile
AnswersA, C

Delivers settings to LOB apps.

Why this answer

App Configuration Policies for managed devices allow you to supply custom configuration settings (e.g., JSON or XML key-value pairs) to an iOS line-of-business app when the device is enrolled in Intune MDM. Option C is correct because you can embed a configuration file (e.g., a .plist) directly within the iOS app package, which the app reads at launch without requiring a separate policy push.

Exam trap

The trap here is confusing 'App Configuration Policy for managed devices' (device-enrolled) with 'App Configuration Policy for managed apps' (MAM-only), leading candidates to incorrectly select Option D instead of A.

58
MCQhard

Refer to the exhibit. You run the PowerShell command on a Windows 10 device to troubleshoot why a Win32 app did not install. What information does this command provide?

A.The start of an app installation attempt
B.The list of assigned policies
C.The result of a completed app installation
D.Errors from the last sync
AnswerA

Event 1001 logs the beginning of an installation.

Why this answer

The PowerShell command `Get-MgDeviceManagementManagedDevice -DeviceId <id> | Select-Object -ExpandProperty LastAppInstallStartTime` retrieves the timestamp of the most recent attempt to start installing an app on the managed device. This is useful for troubleshooting because it tells you when the installation process was initiated, helping to determine if the device is receiving the installation trigger from Intune. A correct start time indicates the policy was delivered and the client began processing, even if the installation later failed.

Exam trap

The trap here is that candidates confuse the start time of an installation attempt with the result or completion status, leading them to choose 'The result of a completed app installation' when the command only provides the initiation timestamp.

How to eliminate wrong answers

Option B is wrong because `Get-MgDeviceManagementManagedDevice` does not return assigned policies; to list assigned policies, you would use cmdlets like `Get-MgDeviceManagementDeviceConfiguration` or `Get-MgDeviceManagementManagedDeviceConfigurationState`. Option C is wrong because the command retrieves the start time of an installation attempt, not the result; to see the result, you would need to check `LastAppInstallResult` or `LastAppInstallStatus` properties. Option D is wrong because sync errors are tracked via `Get-MgDeviceManagementManagedDevice` property `LastSyncError` or `SyncState`, not by the `LastAppInstallStartTime` property.

59
MCQhard

Refer to the exhibit. You are deploying a line-of-business app to Windows 10 devices. The JSON shows the app configuration in Microsoft Graph. Which of the following is true about this deployment?

A.The device will restart automatically after installation.
B.The app will only install if the product code matches.
C.The app will install in system context.
D.The app will be installed from the Microsoft Store for Business.
AnswerC

useDeviceContext: true means system context installation.

Why this answer

The JSON configuration includes the 'installExperience' property set to 'system', which means the app will be installed in the system context (as SYSTEM account) rather than per-user. This is typical for line-of-business apps deployed via Microsoft Intune, ensuring the app is available to all users on the device and can perform system-level operations without user interaction.

Exam trap

In Microsoft Intune, the trap here is that candidates confuse the 'productCode' in detection rules with a prerequisite for installation, or assume 'system' context implies automatic reboot, when in fact it only controls the security context under which the installer runs.

How to eliminate wrong answers

Option A is wrong because the JSON does not include any 'restartBehavior' or 'deviceRestart' property; automatic restart is not implied by system context installation. Option B is wrong because the JSON uses 'productCode' only for MSI detection, not as a prerequisite for installation; the app will install regardless of whether the product code exists beforehand. Option D is wrong because the JSON specifies 'msi' as the app type and includes a 'filePath' pointing to a local or network source, not a Microsoft Store for Business package.

60
MCQmedium

Your organization uses Microsoft Intune to manage iOS/iPadOS devices. You need to deploy a custom vertical market app that is not available in the Apple App Store. The app is distributed as an .ipa file signed with an enterprise certificate. You have uploaded the .ipa file to Intune. However, when you assign the app to a user group, the installation fails on devices with the error 'Unable to download app'. The devices are enrolled as user-affinity devices with Device Enrollment Program (DEP). You have verified that the enterprise certificate is trusted on the devices. What is the most likely cause of the failure?

A.The app package does not include an icon file.
B.The devices do not have a VPN configuration profile installed.
C.The app is not purchased through the Volume Purchase Program (VPP).
D.The devices are not in Supervised mode.
AnswerD

Enterprise apps require supervised mode for silent installation.

Why this answer

Enterprise-signed apps require the device to be in Supervised mode for silent installation without user prompts. Without supervision, the user must manually trust the enterprise certificate or the installation may fail. Option A is incorrect because the icon file is not critical for installation.

Option B is incorrect because a VPN configuration profile is not required for downloading enterprise apps. Option C is incorrect because VPP is for store apps, not enterprise-signed line-of-business apps.

61
MCQhard

You are designing an app protection policy (APP) for Microsoft 365 mobile apps accessing corporate data on iOS devices. The security team requires that when a user opens a work document in the Microsoft Word app, the user must authenticate with Face ID or a passcode. Which setting should you configure?

A.Require PIN or Face ID for access (iOS)
B.Block managed apps from running on jailbroken devices
C.Encrypt app data
D.Require app PIN when device PIN is not set
AnswerA

This setting enforces authentication on app access.

Why this answer

The 'Require PIN or Face ID for access (iOS)' setting enforces biometric or passcode authentication specifically when a user launches a managed app or resumes it from the background. This directly meets the requirement that opening a work document in Word triggers Face ID or passcode verification, as the app protection policy (APP) intercepts the app launch and prompts for authentication before granting access to corporate data.

Exam trap

The trap here is that candidates confuse 'Require PIN or Face ID for access' with 'Require app PIN when device PIN is not set', mistakenly thinking the latter covers all scenarios, when in fact it only applies conditionally when the device lacks a PIN.

How to eliminate wrong answers

Option B is wrong because 'Block managed apps from running on jailbroken devices' prevents the app from running at all on compromised devices but does not enforce per-session authentication like Face ID or passcode. Option C is wrong because 'Encrypt app data' ensures data-at-rest encryption on the device but does not require user authentication at app launch. Option D is wrong because 'Require app PIN when device PIN is not set' only applies a PIN if the device lacks a PIN, whereas the requirement is to always require Face ID or passcode regardless of device PIN status.

62
Multi-Selecteasy

Which TWO of the following are required to deploy an iOS line-of-business app via Microsoft Intune? (Select TWO.)

Select 2 answers
A.iOS app package file (.ipa)
B.Apple Developer signing certificate
C.iOS provisioning profile
D.Volume purchase program (VPP) token
E.MDM push certificate
AnswersA, C

The app binary.

Why this answer

An .ipa file is the app package. A provisioning profile is needed for app installation. An MDM push certificate is for device management, not app deployment.

A VPP token is for volume purchasing. A signing certificate is needed for development, but the provisioning profile includes signing info. So the two required are .ipa and provisioning profile.

63
MCQmedium

Your organization uses Microsoft Intune to manage macOS devices. You need to deploy a custom .pkg app to all macOS devices. What app type should you create in Intune?

A.macOS app (line-of-business)
B.Windows app (Win32)
C.Web link
D.iOS app (line-of-business)
AnswerA

macOS line-of-business app supports .pkg and .dmg files.

Why this answer

To deploy a custom .pkg app to macOS devices via Microsoft Intune, you must create a macOS line-of-business (LOB) app. LOB apps are designed for sideloading custom or in-house applications that are not available in the public app store, and Intune supports .pkg and .dmg formats for macOS LOB deployment. This app type allows you to upload the .pkg file directly and assign it to devices, handling installation through the Intune management agent.

Exam trap

The trap here is that candidates may confuse 'line-of-business' as a generic term and select the iOS LOB option, forgetting that each platform (macOS, iOS, Windows) has its own specific LOB app type in Intune.

How to eliminate wrong answers

Option B is wrong because 'Windows app (Win32)' is a deployment type for Windows applications using .exe or .msi installers, and it has no relevance to macOS device management. Option C is wrong because 'Web link' creates a shortcut to a URL on the device's home screen or portal, not an actual app installation, and cannot deploy a .pkg file. Option D is wrong because 'iOS app (line-of-business)' is used for deploying custom .ipa files to iOS devices, not macOS, and the platform-specific app types are not interchangeable.

64
MCQeasy

A company wants to deploy Microsoft 365 Apps for enterprise to Windows 10 devices using Intune. They need to ensure that the apps are updated automatically from the Office Content Delivery Network (CDN). Which update channel should they select in the Office app deployment configuration?

A.Semi-Annual Enterprise Channel
B.Current Channel
C.Monthly Enterprise Channel
D.Insider Channel
AnswerC

Monthly Enterprise Channel is the recommended channel for enterprises, delivering updates monthly from the CDN.

Why this answer

The Monthly Enterprise Channel is the correct choice because it provides a predictable, once-per-month update cadence with security and quality updates, and it is designed for enterprise environments that require automatic updates from the Office Content Delivery Network (CDN) via Intune. This channel balances receiving new features sooner than the Semi-Annual Enterprise Channel while still offering managed deployment through configuration profiles.

Exam trap

The trap here is that candidates often confuse the Monthly Enterprise Channel with the Current Channel, assuming that 'Monthly' implies the same rapid update frequency as Current Channel, when in fact Current Channel updates multiple times per month and is not the recommended default for managed enterprise deployments.

How to eliminate wrong answers

Option A is wrong because the Semi-Annual Enterprise Channel only receives updates twice per year, which would delay critical security updates and does not align with the requirement for automatic updates from the CDN with a more frequent cadence. Option B is wrong because the Current Channel delivers updates multiple times per month, which can introduce frequent feature changes that may not be suitable for enterprise environments needing stability and predictable testing cycles. Option D is wrong because the Insider Channel is intended for early testing and validation of pre-release builds, not for production deployment with automatic updates from the CDN.

65
MCQeasy

You need to deploy Microsoft Edge for Business to Windows 10 devices using Microsoft Intune. Which app type should you select in the Intune portal?

A.Web link
B.Windows app (Win32)
C.Microsoft 365 Apps
D.Built-in app
AnswerD

Edge for Business is listed under built-in apps.

Why this answer

The 'Built-in app' type in Microsoft Intune is specifically designed for deploying pre-packaged Microsoft applications, including Microsoft Edge for Business. This option automatically handles the installation and configuration of Edge without requiring manual packaging or complex deployment rules, making it the correct choice for this scenario.

Exam trap

The trap here is that candidates often confuse 'Built-in app' with 'Windows app (Win32)' because they assume all software installations require a custom package, but Microsoft Edge is a first-party app with a dedicated deployment option in Intune.

How to eliminate wrong answers

Option A is wrong because 'Web link' is used to deploy shortcuts to websites or web apps, not to install software like Microsoft Edge. Option B is wrong because 'Windows app (Win32)' is intended for custom or third-party Win32 applications that require manual packaging and dependency handling, not for built-in Microsoft products that are pre-configured in Intune. Option C is wrong because 'Microsoft 365 Apps' is specifically for deploying Office 365 ProPlus suite components (Word, Excel, etc.), not for standalone browser installations like Microsoft Edge.

66
MCQhard

A user on a Windows 11 device managed by Intune reports that a required Win32 app is not installing. The Intune console shows the app assignment is 'Required' and the device status is 'Error'. You review the detection rules and find that the app is detected by file version. The app installs successfully when run manually with admin rights. What is the most likely cause?

A.The installation script returns a non-zero exit code.
B.The detection rule is incorrectly matching an existing file version.
C.The Intune Management Extension is not running.
D.The installation script fails in system context.
AnswerB

A false positive detection can cause Intune to skip installation and report error.

Why this answer

The detection rule uses file version to determine if the app is installed. If an existing file on the device already matches the version specified in the detection rule, Intune will consider the app as already installed and skip the installation, even though the required app is not actually present. This causes a mismatch where the console shows an error because the app assignment is 'Required' but the detection logic falsely reports success, preventing the installation from running.

Exam trap

The trap here is that candidates often assume an 'Error' status always means the installation script failed, rather than considering that the detection rule might be incorrectly matching an existing file and preventing the installation from even starting.

How to eliminate wrong answers

Option A is wrong because a non-zero exit code would cause the installation to fail and show an error, but the user reports the app installs successfully when run manually with admin rights, indicating the script itself works. Option C is wrong because if the Intune Management Extension were not running, no Win32 app installations would occur at all, and the device would likely show a different status (e.g., 'Pending' or 'Not Applicable'), not an 'Error' with a specific detection rule mismatch. Option D is wrong because the installation script runs successfully in system context when triggered by Intune (as it does for all Win32 apps), and the user confirms manual installation with admin rights works, so the system context is not the issue.

67
MCQhard

An organization uses Microsoft Intune to manage iOS devices. They need to deploy an internal line-of-business (LOB) app that is signed with an enterprise certificate. The app must be available to users who are members of a dynamic Microsoft Entra ID group. Which deployment method should you use?

A.Use a VPP token to deploy the app
B.Configure a managed open-in policy
C.Assign the LOB app as 'Required' to the dynamic group
D.Assign the LOB app as 'Available' to the dynamic group
AnswerD

Makes the app available in Company Portal for group members.

Why this answer

Deploying an internal LOB app signed with an enterprise certificate as 'Available' to a dynamic Microsoft Entra ID group allows users to install the app on demand from the Company Portal, while still targeting the group dynamically. This method supports enterprise-signed apps without requiring a VPP token, and 'Available' assignments are the only way to make the app visible in the Company Portal for optional installation by dynamic group members.

Exam trap

The trap here is that candidates often assume 'Required' assignments work with dynamic groups, but Intune only supports dynamic groups for 'Available' assignments, not for required installations, which is a key distinction tested in the MD-102 exam.

How to eliminate wrong answers

Option A is wrong because a VPP token is used for deploying volume-purchased apps from the Apple App Store, not for internal LOB apps signed with an enterprise certificate. Option B is wrong because a managed open-in policy controls data sharing between managed and unmanaged apps, not app deployment. Option C is wrong because assigning the LOB app as 'Required' forces installation on devices, but dynamic groups in Microsoft Entra ID cannot be used with 'Required' assignments; 'Required' assignments require user or device groups that are static or assigned, not dynamic, as Intune does not evaluate dynamic group membership for required installations.

68
MCQhard

Refer to the exhibit. You query Microsoft Graph API and receive this JSON for a managed device. App2 installation failed. The app is a Win32 app deployed as required. The device is compliant and enrolled via MDM. What is the most likely reason for the failure?

A.The Intune Management Extension is not installed.
B.The app is not assigned to the user.
C.The app version is incompatible with the device OS.
D.The device is not compliant.
AnswerA

IME is required for Win32 apps on MDM devices.

Why this answer

Win32 apps deployed as required require the Intune Management Extension (IME) to be present on the device for installation. Since the device is enrolled via MDM and compliant, but the app installation failed, the most likely cause is that the IME is missing or not functioning. The IME handles Win32 app deployment, detection, and remediation, and without it, required Win32 apps cannot install.

Exam trap

The trap here is that candidates often assume a compliant device automatically has all required components, but the Intune Management Extension is a separate prerequisite that must be installed and running for Win32 app deployment to succeed.

How to eliminate wrong answers

Option B is wrong because the app is deployed as required, which means it is assigned to the device or user regardless of user-specific assignment; a missing user assignment would not cause a failure for a required deployment. Option C is wrong because the exhibit does not indicate any version incompatibility, and the device is compliant, so OS version issues would typically be flagged by Intune compliance policies or app requirements. Option D is wrong because the device is explicitly stated as compliant, so non-compliance cannot be the reason for the failure.

69
MCQhard

Your organization uses Microsoft Intune to manage macOS devices. You need to deploy a custom .pkg app that requires specific installation parameters. Which app type should you select?

A.Line-of-business app
B.macOS app (DMG)
C.Windows app (Win32)
D.macOS app (PKG)
AnswerD

Correct. macOS app (PKG) is designed for .pkg files and supports custom installation parameters via the 'Installation command' field, fulfilling the requirement.

Why this answer

The macOS app (PKG) type is correct for deploying a custom .pkg app that requires specific installation parameters. Intune's native PKG app type allows you to define a custom installation command (e.g., installer -pkg MyApp.pkg -target /) with the required flags, providing full control over the installation. In contrast, the DMG app type is designed for .dmg disk images, not standalone .pkg files.

Exam trap

Candidates often assume that the DMG app type is required for custom parameters, but Intune's PKG app type also provides a 'Installation command' field for .pkg files, making it the appropriate choice for deploying a custom .pkg with specific parameters.

How to eliminate wrong answers

Option A is wrong because Line-of-business (LOB) apps in Intune are intended for simple app deployment without custom installation parameters; they only support a basic installation command (e.g., `msiexec /i` for Windows) and do not allow you to specify custom flags for macOS .pkg files. Option C is wrong because Windows app (Win32) is a Windows-specific app type that cannot be used for macOS device management; Intune enforces platform-specific app types. Option D is wrong because macOS app (PKG) is a legacy app type in Intune that does not support custom installation parameters; it only allows you to upload a .pkg file and deploy it with default installation behavior, without the ability to specify additional flags or commands.

70
Multi-Selectmedium

Which THREE of the following are required to deploy a Win32 app using Microsoft Intune?

Select 3 answers
A.Product code
B.Detection rule
C.Return codes for success
D.Dependencies
E.Installation command
AnswersB, C, E

Required to determine if app is installed.

Why this answer

A detection rule is mandatory for Win32 app deployment in Intune. It defines how Intune determines whether the app is already installed on the device (e.g., by checking a file, registry key, or MSI product code). Without a detection rule, Intune cannot verify installation success or prevent reinstallation.

Exam trap

The trap here is that candidates often confuse optional features like dependencies or product codes with mandatory requirements, but Intune explicitly requires only the installation command, detection rule, and at least one return code for success.

71
MCQhard

You deploy a Win32 app via Intune to Windows 10 devices. The app installs successfully, but the detection rule incorrectly reports the app as not installed, causing Intune to attempt reinstallation repeatedly. Which detection rule method is most likely causing this issue?

A.MSI product code detection uses a product code that does not match the installed app
B.File existence detection checks for a file that is installed by the app
C.Registry detection checks for a registry key that is created by the app
D.Custom script detection returns exit code 0 even if app is not present
AnswerA

Mismatched product code causes detection failure.

Why this answer

When an MSI product code detection rule uses a product code that does not match the GUID of the installed application, Intune will always evaluate the app as 'not installed' regardless of the actual installation state. This mismatch causes Intune to repeatedly attempt reinstallation on every check-in cycle, as the detection logic never finds a matching product code in the Windows Installer database.

Exam trap

The trap here is that candidates often assume any detection rule method will work as long as the app is installed, but they overlook that MSI product code detection requires an exact GUID match, and a mismatch will cause Intune to perpetually attempt reinstallation.

How to eliminate wrong answers

Option B is wrong because file existence detection checks for a file that is installed by the app; if the file is present, the rule correctly reports the app as installed, so it would not cause repeated reinstallation. Option C is wrong because registry detection checks for a registry key created by the app; if the key exists, the rule correctly identifies the app as installed, preventing reinstallation loops. Option D is wrong because a custom script that returns exit code 0 when the app is not present would incorrectly report the app as installed, which would stop reinstallation attempts, not cause them.

72
MCQhard

You are deploying a Win32 app that requires .NET Framework 4.8. You create a dependency in Intune for the .NET Framework app. However, some devices fail to install the parent app even though .NET Framework is present. What is the most likely issue?

A.The dependency version is set to 'Greater than' instead of 'Greater than or equal to'.
B.The dependency detection rule does not match the actual .NET installation.
C.The parent app is set to install before the dependency.
D.The dependency is set to 'Do not install automatically'.
AnswerB

Intune uses detection rules to determine if dependency is present.

Why this answer

Intune uses detection rules to verify whether a dependency is installed. If the detection rule for the .NET Framework dependency does not match the actual installation state (e.g., it checks for a registry key or file version that differs from what .NET 4.8 actually creates), Intune will incorrectly report the dependency as missing, blocking the parent app installation even though .NET is present.

Exam trap

The trap here is that candidates assume a dependency is automatically detected by its version number, but Intune requires an explicit detection rule that must exactly match the actual installation artifacts, and a mismatch in the detection rule (not the version logic) is the root cause of the failure.

How to eliminate wrong answers

Option A is wrong because setting the dependency version to 'Greater than' (instead of 'Greater than or equal to') would only cause failure if the installed .NET version is exactly 4.8 and the rule requires a version higher than 4.8, but the scenario states .NET is present, so version mismatch is not the core issue. Option C is wrong because Intune dependencies are designed to install the dependency before the parent app automatically; setting the parent to install before the dependency would violate dependency logic and is not a configurable option in Intune. Option D is wrong because setting a dependency to 'Do not install automatically' means Intune will not push the dependency to devices, but if the dependency is already present, the parent app should still install; the failure here is due to detection mismatch, not the auto-install setting.

73
MCQmedium

A user reports that a Microsoft 365 Apps for enterprise installation on a Windows 10 device fails with error code 30088-1028. The device is managed by Intune. What is the most likely cause?

A.Windows Update is disabled on the device.
B.The device does not have enough free disk space.
C.The user does not have an appropriate license assigned.
D.The device is behind a proxy that blocks the Microsoft CDN.
AnswerB

Error 30088-1028 is disk space related.

Why this answer

Error code 30088-1028 during Microsoft 365 Apps for enterprise installation specifically indicates insufficient disk space on the system drive. The Office deployment process requires a minimum of 4-8 GB of free space for download, extraction, and installation. Intune-managed devices will fail with this exact error when the Click-to-Run service cannot allocate the required temporary and permanent storage.

Exam trap

The trap here is that candidates often confuse network-related errors (proxy, CDN) with disk-space errors, but Microsoft assigns distinct error code ranges—30088-1028 is specifically reserved for disk space failures, not connectivity issues.

How to eliminate wrong answers

Option A is wrong because disabling Windows Update does not cause error 30088-1028; it would instead produce update-related errors or policy blocks. Option C is wrong because an unlicensed user would receive a licensing error (e.g., 0xC004F074 or activation prompts), not a disk-space-specific error code. Option D is wrong because a proxy blocking the Microsoft CDN would result in download failures or error codes like 30088-1000 or 30088-1015, not 30088-1028.

74
MCQhard

Refer to the exhibit. A KQL query is run in Microsoft Defender XDR for a device 'WIN10-PC'. The results show that a critical line-of-business app 'ContosoApp' version '2.0.0' has InstallationResult 'Failed' with ErrorCode '0x80073CF6'. What does this error code typically indicate?

A.The app package is not signed correctly
B.The device does not have internet connectivity
C.The user does not have permission to install apps
D.The device has insufficient disk space
AnswerA

0x80073CF6 means APPX deployment error, often signing.

Why this answer

Error code 0x80073CF6 in Microsoft Defender XDR corresponds to APPX_E_CORRUPT_CONTENT, which indicates that the app package's digital signature is invalid or the package content has been tampered with. This typically occurs when the .appx or .msix package is not signed correctly or the signature does not match the package contents, preventing installation on Windows 10/11 devices.

Exam trap

The trap here is that candidates often confuse error codes related to package signing (0x80073CF6) with generic installation failures caused by permissions or disk space, but Microsoft specifically uses distinct error codes for each failure type, and the exam expects you to recognize the signature-corruption meaning of this hex value.

How to eliminate wrong answers

Option B is wrong because error code 0x80073CF6 is not related to network connectivity; internet access issues would produce different error codes such as 0x80072EFD or 0x80072EE2. Option C is wrong because permission-related failures generate error codes like 0x80070005 (E_ACCESSDENIED) or 0x80073CF0 (APPX_E_BLOCKED), not 0x80073CF6. Option D is wrong because insufficient disk space results in error code 0x80070070 (ERROR_DISK_FULL) or 0x80070008 (ERROR_NOT_ENOUGH_MEMORY), not the signature-related 0x80073CF6.

75
MCQeasy

You need to deploy a custom Microsoft Edge extension to managed Windows 10 devices via Intune. Which policy type should you use?

A.Device restrictions profile
B.Compliance policy
C.Administrative Templates profile (ADMX-backed policies)
D.PowerShell script deployment
AnswerC

Supports Edge extension policies.

Why this answer

Deploying a custom Microsoft Edge extension via Intune requires configuring the 'Install Extensions Silently' policy, which is an ADMX-backed policy available through the Administrative Templates profile. This policy type allows you to manage Edge-specific settings using the built-in ADMX files that Intune imports from the Edge administrative templates, enabling silent installation of extensions by specifying their update URL or extension ID.

Exam trap

The trap here is that candidates often confuse 'Device restrictions' with 'Administrative Templates' because both appear under the 'Configuration profiles' blade, but Device restrictions lack the granular, application-specific policies (like Edge extensions) that only ADMX-backed profiles can deliver.

How to eliminate wrong answers

Option A is wrong because Device restrictions profiles in Intune control device-level settings like password policies, camera, and Bluetooth, but they do not include settings for managing browser extensions. Option B is wrong because Compliance policies evaluate device compliance against rules (e.g., OS version, encryption) and cannot deploy or configure software extensions. Option D is wrong because PowerShell script deployment can run arbitrary scripts but cannot directly enforce Edge extension policies; it would require complex workarounds and lacks the native, managed policy enforcement that ADMX-backed profiles provide.

Page 1 of 3 · 174 questions totalNext →

Ready to test yourself?

Try a timed practice session using only Manage applications questions.