{"id":5027,"date":"2024-02-15T12:53:06","date_gmt":"2024-02-15T20:53:06","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=5027"},"modified":"2024-02-15T12:54:20","modified_gmt":"2024-02-15T20:54:20","slug":"how-to-delay-an-application-to-be-installed-after-enrolling-in-autopilot","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=5027","title":{"rendered":"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment."},"content":{"rendered":"\n<p>To make sure the app isn\u2019t installed during&nbsp;<strong>Autopilot,<\/strong>&nbsp;we have got some options at our disposal.<\/p>\n\n\n\n<p>1. You could configure the app as available so end-users could install the app on their own.<\/p>\n\n\n\n<p>2. We could change the App availability to make sure the app is downloaded on a specific date but that\u2019s not what I want.<\/p>\n\n\n\n<p>3. You could configure a Win32app requirement rule to determine if the process:\u00a0<strong>Microsoft Account Sign-in page (<strong>WWAHOST.exe)<\/strong><\/strong>\u00a0is running<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/08\/image-23.png\" alt=\"\" class=\"wp-image-11079\"\/><\/figure>\n\n\n\n<p>You could do so by using this PowerShell Script as a Requirement rule. When WWAHost is still running it will output False. If WWAHost isn\u2019t running anymore, the output will be True<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>$ProcessActive = Get-Process \"WWAHost\" -ErrorAction silentlycontinue\n$CheckNull = $ProcessActive -eq $null\n$CheckNull<\/em>\n\nSave above 3 lines as a PowerShell ps1 file. \n\nAnd then add it to the \"requirements\" tab.<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"774\" height=\"583\" src=\"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2024\/02\/ps1.jpg\" alt=\"\" class=\"wp-image-5028\" srcset=\"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2024\/02\/ps1.jpg 774w, https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2024\/02\/ps1-300x226.jpg 300w, https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2024\/02\/ps1-768x578.jpg 768w\" sizes=\"(max-width: 774px) 100vw, 774px\" \/><\/figure>\n\n\n\n<p>If you want to ensure that each time the device gets enrolled, the app is installed\u00a0<strong>AFTER<\/strong>\u00a0the device is working for a\u00a0<strong>minimum of 1 hour.<\/strong><\/p>\n\n\n\n<p>Why not just use the creation time of the&nbsp;<strong>IntuneManagementExtension<\/strong>&nbsp;folder?<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/graphical-user-interface-text-application-email-8.png\" alt=\"Graphical user interface, text, application, email\n\nDescription automatically generated\" class=\"wp-image-9970\"\/><\/figure>\n\n\n\n<p>This folder will only be created when a device is enrolling into&nbsp;<strong>Intune<\/strong>&nbsp;(when you have WIn32apps\/PowerShell scripts in place) We are also blocking the enrolment of personal devices to be&nbsp;<strong>100% sure ONLY autopilot devices\/corporate devices can be used<\/strong>.&nbsp;<img decoding=\"async\" width=\"1481\" height=\"395\" src=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/graphical-user-interface-description-automaticall.png\" alt=\"Graphical user interface\n\nDescription automatically generated\" srcset=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/graphical-user-interface-description-automaticall.png 1481w, https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/graphical-user-interface-description-automaticall-300x80.png 300w, https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/graphical-user-interface-description-automaticall-1024x273.png 1024w, https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/graphical-user-interface-description-automaticall-768x205.png 768w\"><\/p>\n\n\n\n<p>This script below is just as I want it to be, simple!<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$AppInstallDelay = New-TimeSpan -Days 0 -Hours 1 -Minutes 0\n\n$ime = Get-Item \"C:\\Program Files (x86)\\Microsoft Intune Management Extension\"  | select Name,CreationTime \n$EnrolmentDate = $ime.creationtime\n\n$futuredate = $EnrolmentDate + $AppInstallDelay\n\n\n#checking date and futuredate\n$outcome = ((Get-Date) -ge ($futuredate))  \n$outcome\n<\/code><\/pre>\n\n\n\n<p>When adding a new App in Intune you could also add a Script as a&nbsp;<strong>requirement rule.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/graphical-user-interface-text-application-email-9.png\" alt=\"Graphical user interface, text, application, email\n\nDescription automatically generated\" class=\"wp-image-9973\"\/><\/figure>\n\n\n\n<p>After clicking on \u201cadd\u201d you will be asked to select the script file and the output data type. As shown below I selected the \u201c<strong>Boolean\u201d<\/strong>&nbsp;data type and made sure the&nbsp;<strong>\u201cOperator\u201d<\/strong>&nbsp;was configured to \u201c<strong>Equals<\/strong>\u201d and the corresponding \u201c<strong>Value<\/strong>\u201d to&nbsp;<strong>\u201cTrue\/yes\u201d<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/graphical-user-interface-text-application-descr-8.png\" alt=\"Graphical user interface, text, application\n\nDescription automatically generated\" class=\"wp-image-9974\"\/><\/figure>\n\n\n\n<p>After finishing the app creation, I wiped my test device and I made sure the enrollment date was correct<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/graphical-user-interface-text-application-descr-9.png\" alt=\"Graphical user interface, text, application\n\nDescription automatically generated\" class=\"wp-image-9975\"\/><\/figure>\n\n\n\n<p>As shown above, the device was enrolled into Intune around 11:23 and the PowerShell script result is&nbsp;<strong>False<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/text-letter-description-automatically-generated-1.png\" alt=\"Text, letter\n\nDescription automatically generated\" class=\"wp-image-9976\"\/><\/figure>\n\n\n\n<p>I guess we now need to wait an hour until&nbsp;<strong>the requirement rule is met<\/strong>&nbsp;because Intune is also mentioning the App as not applicable.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/word-image-9962-15.png\" alt=\"\" class=\"wp-image-9977\"\/><\/figure>\n\n\n\n<p>After waiting some time and rebooting the device to trigger the detection, the requirement rule was met and the app finally started installing!<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/06\/image-83.png\" alt=\"\" class=\"wp-image-10039\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p>Ref: <a href=\"https:\/\/call4cloud.nl\/2022\/08\/autopilot-is-mine-all-others-pay-time\/\">Configure Apps to be installed AFTER enrolling in Autopilot (call4cloud.nl)<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>To make sure the app isn\u2019t installed during&nbsp;Autopilot,&nbsp;we have got some options at our disposal. 1. You could configure the app as available so end-users could install the app on their own. 2. We could change the App availability to make sure the app is downloaded on a specific date but that\u2019s not what I <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=5027\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[1185,1249,10],"tags":[1759,1760],"class_list":["post-5027","post","type-post","status-publish","format-standard","hentry","category-autopilot-intune","category-azure-microsoft","category-microsoft","tag-delay-an-application-to-be-installed-intune","tag-deploy-apps-after-autopilot-enrollment"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"To make sure the app isn\u2019t installed during Autopilot, we have got some options at our disposal. 1. You could configure the app as available so end-users could install the app on their own. 2. We could change the App availability to make sure the app is downloaded on a specific date but that\u2019s not what I\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"delay an application to be installed intune.,deploy apps after autopilot enrollment.,autopilot \/ intune,azure,microsoft family\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=5027\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#article\",\"name\":\"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment. | Summa Lai\",\"headline\":\"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment.\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/call4cloud.nl\\\/wp-content\\\/uploads\\\/2022\\\/08\\\/image-23.png\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027\\\/#articleImage\"},\"datePublished\":\"2024-02-15T12:53:06-08:00\",\"dateModified\":\"2024-02-15T12:54:20-08:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#webpage\"},\"articleSection\":\"Autopilot \\\/ Intune, Azure, Microsoft Family, Delay an Application to be Installed Intune., Deploy Apps after Autopilot enrollment.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"position\":2,\"name\":\"Microsoft Family\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=1185#listItem\",\"name\":\"Autopilot \\\/ Intune\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=1185#listItem\",\"position\":3,\"name\":\"Autopilot \\\/ Intune\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=1185\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#listItem\",\"name\":\"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment.\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#listItem\",\"position\":4,\"name\":\"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment.\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=1185#listItem\",\"name\":\"Autopilot \\\/ Intune\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027\",\"name\":\"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment. | Summa Lai\",\"description\":\"To make sure the app isn\\u2019t installed during Autopilot, we have got some options at our disposal. 1. You could configure the app as available so end-users could install the app on their own. 2. We could change the App availability to make sure the app is downloaded on a specific date but that\\u2019s not what I\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=5027#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2024-02-15T12:53:06-08:00\",\"dateModified\":\"2024-02-15T12:54:20-08:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment. | Summa Lai","description":"To make sure the app isn\u2019t installed during Autopilot, we have got some options at our disposal. 1. You could configure the app as available so end-users could install the app on their own. 2. We could change the App availability to make sure the app is downloaded on a specific date but that\u2019s not what I","canonical_url":"https:\/\/SUMMALAI.COM\/?p=5027","robots":"max-image-preview:large","keywords":"delay an application to be installed intune.,deploy apps after autopilot enrollment.,autopilot \/ intune,azure,microsoft family","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=5027#article","name":"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment. | Summa Lai","headline":"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment.","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/call4cloud.nl\/wp-content\/uploads\/2022\/08\/image-23.png","@id":"https:\/\/SUMMALAI.COM\/?p=5027\/#articleImage"},"datePublished":"2024-02-15T12:53:06-08:00","dateModified":"2024-02-15T12:54:20-08:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=5027#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=5027#webpage"},"articleSection":"Autopilot \/ Intune, Azure, Microsoft Family, Delay an Application to be Installed Intune., Deploy Apps after Autopilot enrollment."},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=5027#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","position":2,"name":"Microsoft Family","item":"https:\/\/SUMMALAI.COM\/?cat=10","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=1185#listItem","name":"Autopilot \/ Intune"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=1185#listItem","position":3,"name":"Autopilot \/ Intune","item":"https:\/\/SUMMALAI.COM\/?cat=1185","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=5027#listItem","name":"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment."},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=5027#listItem","position":4,"name":"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment.","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=1185#listItem","name":"Autopilot \/ Intune"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=5027#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=5027#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=5027#webpage","url":"https:\/\/SUMMALAI.COM\/?p=5027","name":"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment. | Summa Lai","description":"To make sure the app isn\u2019t installed during Autopilot, we have got some options at our disposal. 1. You could configure the app as available so end-users could install the app on their own. 2. We could change the App availability to make sure the app is downloaded on a specific date but that\u2019s not what I","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=5027#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2024-02-15T12:53:06-08:00","dateModified":"2024-02-15T12:54:20-08:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"5027","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2024-02-15 20:31:53","updated":"2024-02-15 20:54:20","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=10\" title=\"Microsoft Family\">Microsoft Family<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=1185\" title=\"Autopilot \/ Intune\">Autopilot \/ Intune<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment.\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Microsoft Family","link":"https:\/\/SUMMALAI.COM\/?cat=10"},{"label":"Autopilot \/ Intune","link":"https:\/\/SUMMALAI.COM\/?cat=1185"},{"label":"How to Delay an Applicaiton to be Installed AFTER Autopilot Enrollment.","link":"https:\/\/SUMMALAI.COM\/?p=5027"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/5027","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5027"}],"version-history":[{"count":2,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/5027\/revisions"}],"predecessor-version":[{"id":5030,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/5027\/revisions\/5030"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5027"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5027"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5027"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}