Skip to content

Commit ee0a569

Browse files
authored
Merge pull request #2561 from chmaguir/patch-9
Update app-configuration-managed-home-screen-app.md
2 parents 797b5f4 + 78d6a0b commit ee0a569

1 file changed

Lines changed: 40 additions & 9 deletions

File tree

memdocs/intune/apps/app-configuration-managed-home-screen-app.md

Lines changed: 40 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ The following table lists the Managed Home Screen available configuration keys,
9191
| Show Bluetooth setting | bool | FALSE | Turning this setting to True allows the end user to turn on or off Bluetooth and to connect to different Bluetooth-capable devices. | ✔️ |
9292
| Show volume setting | bool | FALSE | Turning this setting to True allows the end user to access a volume slider to adjust media volume. | ✔️ |
9393
| Show flashlight setting | bool | FALSE | Turning this setting to True allows the end user to on or off the device's flashlight. If the device doesn't support a flashlight, then this setting won't appear, even if configured to True. | ✔️ |
94-
| Show device info setting | bool | FALSE | True allows end users to access quick info about the device from the Managed Setting app or swipe-down. Accessible information includes device's make, model, and serial number. | ✔️ |
94+
| Show device info setting | bool | FALSE | True allows end users to access quick info about the device from the Managed Setting app or swipe-down. Accessible information includes device's make, model, and serial number for OS 8. | ✔️ |
95+
| Show device's name on MHS | bool | FALSE | Turn this setting to True to easily view the device's Intune portal "device name" property from the Managed Settings app or from swipe-down when **Show device info setting** is set to True. Make sure to also include the string property "Device's name," which is auto-populated by Intune with the correct value. ||
96+
| Show serial number for all supported OS version on MHS | choice | {{serialnumber}} | Ensure that in-app config device_serial_number is configured to display {{SerialNumber}} **Show device info setting** is set to True. This value is auto-populated by Intune with the correct value. ||
9597
| Enable virtual home button | bool | FALSE | True allows end users to have access to a Managed Home Screen home button that will return the user to the Managed Home Screen from the current task they are in. | ✔️ |
9698
| Type of virtual home button | string | swipe_up | Use swipe_up to access home button with a swipe up gesture. Use float to access a sticky, persistent home button that can be moved around the screen by the end user. | ✔️ |
9799
| Enable notifications badge | bool | FALSE | Enables the notification badge for app icons that shows the number of new notifications on the app. If you enable this setting, end users will see notification badges on apps that have unread notifications. If you keep this configuration key disabled, the end user won't see any notification badged to apps that might have unread notifications. | ✔️ |
@@ -127,8 +129,7 @@ The following table lists the Managed Home Screen available configuration keys,
127129
|-|-|-|-|-|
128130
| Exit lock task mode password | string | | Enter a 4-6-digit code to use to temporarily drop out of lock-task mode for troubleshooting. | ✔️ |
129131
| Enable easy access debug menu | bool | FALSE | Turn this setting to True to access the debug menu from the Managed Settings app or from swipe-down while in Managed Home Screen. The debug menu is currently where the capability to exit kiosk mode lives, and is accessed by clicking the back button about 15 times. Keep this setting set to False to keep the entry point to debug menu only accessible via the back button. | ✔️ |
130-
| Show device's name on MHS | bool | FALSE | Turn this setting to True to easily view the device's Intune portal "device name" property from the Managed Settings app or from swipe-down while in Managed Home Screen. When using app config, make sure to also include the string property "Device's name," which is auto-populated by Intune with the correct value. ||
131-
| Device's serial number | choice | `{{SerialNumber}}` | Set this setting to easily view the device's serial number from the Managed Home Screen app on all Android OS versions 8 and later. This property is auto-populated by Intune with the correct value. ||
132+
132133
| Enable MAX inactive time outside of MHS | bool | FALSE | Turn this setting to True to automatically re-launch Managed Home Screen after a set period of inactivity. The timer will only count inactive time and, when configured, will reset each time the user interacts with the device while outside of Managed Home Screen. Use **MAX inactive time outside MHS** to set the inactivity timer. By default, this setting is off. This setting can only be used if **Exit lock task mode password** has been configured. ||
133134
| MAX inactive time outside MHS | integer | 180 | Set the maximum amount of inactive time, in seconds, that a user can spend outside of Managed Home Screen before it is automatically re-launched. By default, this configuration is set to 180 seconds. **Enable MAX inactive time outside of MHS** must be set to true to use this setting. ||
134135
| Enable MAX time outside MHS | bool | FALSE | Turn this setting to True to automatically re-launch Managed Home Screen after a set period of time has passed. The timer will factor in both inactive and active time spent outside of Managed Home Screen. Use **MAX time outside MHS** to set the inactivity timer. By default, this setting is off. This setting can only be used if **Exit lock task mode password** has been configured. ||
@@ -287,6 +288,18 @@ The following syntax is an example JSON script with all the available configurat
287288
"key": "show_device_info_setting",
288289
"valueBool": false
289290
},
291+
{
292+
"key": "show_device_name",
293+
"valueBool": false
294+
},
295+
{
296+
"key": "device_name",
297+
"valueString": "{{DeviceName}}"
298+
},
299+
{
300+
"key": "device_serial_number",
301+
"valueString": "{{SerialNumber}}"
302+
},
290303
{
291304
"key": "show_managed_setting",
292305
"valueBool": false
@@ -488,11 +501,11 @@ The following syntax is an example JSON script with all the available configurat
488501
}
489502
]
490503
},
491-
{
504+
{
492505
"key": "show_notification_badge",
493506
"valueBool": true
494507
},
495-
{
508+
{
496509
"key": "show_screen_saver",
497510
"valueBool": true
498511
},
@@ -504,15 +517,15 @@ The following syntax is an example JSON script with all the available configurat
504517
"key": "screen_saver_show_time",
505518
"valueInteger": 0
506519
},
507-
{
520+
{
508521
"key": "inactive_time_to_show_screen_saver",
509522
"valueInteger": 30
510523
},
511524
{
512525
"key": "media_detect_before_screen_saver",
513526
"valueBool": true
514527
},
515-
{
528+
{
516529
"key": "enable_max_inactive_time_outside_MHS",
517530
"valueBool": false
518531
},
@@ -528,7 +541,7 @@ The following syntax is an example JSON script with all the available configurat
528541
"key": "max_absolute_time_outside_MHS",
529542
"valueInteger": 600
530543
},
531-
{
544+
{
532545
"key": "theme_color",
533546
"valueString": "light"
534547
},
@@ -560,6 +573,22 @@ The following syntax is an example JSON script with all the available configurat
560573
"key": "session_PIN_complexity",
561574
"valueString": "simple"
562575
},
576+
{
577+
"key": "max_number_of_attempts_for_session_PIN",
578+
"valueInteger": 0
579+
},
580+
{
581+
"key": "minimum_length_for_session_PIN",
582+
"valueInteger": 1
583+
},
584+
{
585+
"key": "max_number_of_attempts_for_exit_PIN",
586+
"valueInteger": 0
587+
},
588+
{
589+
"key": "amount_of_time_before_try_exit_PIN_again",
590+
"valueInteger": 0
591+
}
563592
{
564593
"key": "enable_auto_signout",
565594
"valueBool": true
@@ -583,7 +612,9 @@ The following syntax is an example JSON script with all the available configurat
583612
{
584613
"key": "custom_privacy_statement_url",
585614
"valueString": "link to custom privacy statement here"
586-
}
615+
},
616+
617+
587618
]
588619
}
589620
```

0 commit comments

Comments
 (0)