{"id":1899,"date":"2020-12-18T06:28:43","date_gmt":"2020-12-18T12:28:43","guid":{"rendered":"https:\/\/www.ciraltos.com\/?p=1899"},"modified":"2023-03-23T06:50:53","modified_gmt":"2023-03-23T11:50:53","slug":"please-wait-for-the-windows-modules-installer","status":"publish","type":"post","link":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/","title":{"rendered":"Please Wait for the Windows Modules Installer"},"content":{"rendered":"\n<figure class=\"wp-block-image alignleft size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"300\" height=\"213\" src=\"https:\/\/www.ciraltos.com\/wp-content\/uploads\/2020\/12\/PleaseWaitSml-1.png\" alt=\"\" class=\"wp-image-1903\"\/><\/figure>\n\n\n\n<p>I do not like to wait; who does?&nbsp; So, getting a ten-minute delay logging into\nVM\u2019s with the message \u201cPlease Wait for the Windows Modules Installer\u201d was\nfrustrating.&nbsp; There is a way to speed\nthis up, and that is what this post is about.&nbsp;\nIn this post and accompanying video, I show you how to bypass this\nmessage when creating a custom image, including with Azure Image Builder.<\/p>\n\n\n\n<!--more-->\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<div class=\"ast-oembed-container\" style=\"height: 100%;\"><iframe loading=\"lazy\" title=\"Fix \u201cPlease Wait for the Windows Module Installer\u201d\" width=\"500\" height=\"281\" src=\"https:\/\/www.youtube.com\/embed\/CckMhez4E_M?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen><\/iframe><\/div>\n<\/div><\/figure>\n\n\n\n<p>First, let\u2019s consider what is happening.&nbsp; The message occurs during the first login\nafter deploying a custom image prepared with Sysprep.&nbsp; The \u201cPlease Wait for the Windows Modules\nInstaller\u201d message does not indicate an error; it is scanning the system and installing\nany required drivers.&nbsp; <\/p>\n\n\n\n<p>If, however, the image is coming from the same hypervisor it\nis deployed to, say Hyper-V, for example, there is a way to tell it to use the\nsame system configuration as the source for any VM\u2019s created from the\nimage.&nbsp; this is done during the Sysprep on\nthe image source bypassing the \/Mode:VM switch.<\/p>\n\n\n\n<p>The \/Mode:VM switch tells Sysprep that the image is for VM\u2019s\non the same hypervisor.&nbsp; Sysprep sets the\nimage to use the same system settings, bypassing the scan that causes the \u201cPlease\nWait for the Windows Module Installer.<\/p>\n\n\n\n<p>The \/Mode:VM command is passed as a command-line\nargument.&nbsp; As you can see by the Sysprep\nGUI below, there is no option for \/Mode:VM in the Sysprep interface.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"348\" height=\"270\" src=\"https:\/\/www.ciraltos.com\/wp-content\/uploads\/2020\/12\/SysprepGUI.jpg\" alt=\"Sysprep GUI Options\" class=\"wp-image-1900\" srcset=\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2020\/12\/SysprepGUI.jpg 348w, https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2020\/12\/SysprepGUI-300x233.jpg 300w\" sizes=\"(max-width: 348px) 100vw, 348px\" \/><figcaption class=\"wp-element-caption\">Sysprep.exe<\/figcaption><\/figure>\n\n\n\n<p>There are a few things to know when using the \/Mode:VM\nswitch.&nbsp; The switch does not work with\nall other Sysprep options.&nbsp; Below is the list\nof options supported with \/Mode:VM:<\/p>\n\n\n\n<p>\/generalize<br>\/oobe<br>\/reboot<br>\/shutdown<br>\/quit<\/p>\n\n\n\n<p>Also, the \/Mode:VM option is only available for Virtual\nmachine images, and the image should only be used on the same hypervisor.&nbsp; Use the \/Mode:VM switch for Hyper-V, VMWare,\nAzure, AWS or any other hypervisor, but do not use the same image across different\nhypervisors.&nbsp; <\/p>\n\n\n\n<p>To run the command interactively to generalize and shut down\na computer to prepare it for an image, run the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">%WINDIR%\\system32\\sysprep\\sysprep.exe \/generalize \/shutdown \/oobe \/mode:vm <\/pre>\n\n\n\n<h2>Azure Image Builder<\/h2>\n\n\n\n<p>If using Azure Image Builder, the process is a little different.&nbsp; Image Builder uses a script called DeprovisioningScript.ps1, located at the root of the C:\\ drive that runs the Sysprep command during the image build process.<\/p>\n\n\n\n<p>For more information on Azure Image Builder, check out my video series located <a href=\"https:\/\/www.ciraltos.com\/azure-image-builder-trilogy\/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"here. (opens in a new tab)\">here.<\/a><\/p>\n\n\n\n<p>The Sysprep command used for the image build includes the \/oobe\n\/generalize \/quiet and \/quit options.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"711\" height=\"299\" src=\"https:\/\/www.ciraltos.com\/wp-content\/uploads\/2020\/12\/DeprovisioningScript.ps1_.jpg\" alt=\"\" class=\"wp-image-1904\" srcset=\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2020\/12\/DeprovisioningScript.ps1_.jpg 711w, https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2020\/12\/DeprovisioningScript.ps1_-300x126.jpg 300w\" sizes=\"(max-width: 711px) 100vw, 711px\" \/><\/figure>\n\n\n\n<p>To use the \/Mode:VM option, that file is updated during the\nbuild process to change the Sysprep command to use \/oobe \/generalize \/mode:vm and\n\/quit.&nbsp; Notice that \/quiet is not\nincluded because that option is not available when using the \/Mode:VM\noption.&nbsp; Also, the \/Shutdown command is\nnot used.&nbsp; Image Builder will take care\nof the shutdown process.<\/p>\n\n\n\n<p>Now, the question becomes how to update this file to include\nthe new Sysprep options.&nbsp; It is possible\nto create an updated DeprovisoningScript.ps1 file, download the file to the build\nVM with other install media, and then copy it to the C:\\ drive, overwriting the\nexisting file.&nbsp; Or you could use a script\nfile to replace that line of text in the file with the updated command.&nbsp; <\/p>\n\n\n\n<p>For this example, &nbsp;I\nadd a PowerShell customizer in the deployment template.&nbsp; The code runs an inline command to replace\nthe existing Sysprep.exe options with new options.&nbsp; The chuck of JSON code used to update the\nfile is below.&nbsp; Insert this in the\ncustomizer section to edit the Sysprep command with the new options.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">{\n \"type\":&nbsp;\"PowerShell\",\n \"runElevated\":&nbsp;true,\n \"name\":&nbsp;\"DeprovisioningScript\",\n \"inline\":&nbsp;[\n   \"((Get-Content -path C:\\DeprovisioningScript.ps1 -Raw) -replace 'Sysprep.exe \/oobe \/generalize \/quiet \/quit','Sysprep.exe \/oobe \/generalize \/quit \/mode:vm' ) | Set-Content -Path C:\\DeprovisioningScript.ps1\"\n&nbsp; ]\n&nbsp;},<\/pre>\n\n\n\n<p>I hope that helps speed up the process of deploying VM\u2019s\nwith custom images!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I do not like to wait; who does?&nbsp; So, getting a ten-minute delay logging into VM\u2019s with the message \u201cPlease Wait for the Windows Modules Installer\u201d was frustrating.&nbsp; There is a way to speed this up, and that is what this post is about.&nbsp; In this post and accompanying video, I show you how to &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/\"> <span class=\"screen-reader-text\">Please Wait for the Windows Modules Installer<\/span> Read More &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":3883,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-global-header-display":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":""},"categories":[2],"tags":[9,829,874,120,831,866,868,847,870,867,869,872,873,864,865],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Please Wait for the Windows Modules Installer - ciraltos<\/title>\n<meta name=\"description\" content=\"In this post and accompanying video, I show you how to bypass the &quot;Please Wait for the Windows Module Instller&quot; message when creating a custom image, including with Azure Image Builder.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Please Wait for the Windows Modules Installer - ciraltos\" \/>\n<meta property=\"og:description\" content=\"In this post and accompanying video, I show you how to bypass the &quot;Please Wait for the Windows Module Instller&quot; message when creating a custom image, including with Azure Image Builder.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/\" \/>\n<meta property=\"og:site_name\" content=\"ciraltos\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-18T12:28:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-23T11:50:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/PleaseWaitSml-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"213\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Travis Roberts\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ciraltos\" \/>\n<meta name=\"twitter:site\" content=\"@ciraltos\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Travis Roberts\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/\"},\"author\":{\"name\":\"Travis Roberts\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a\"},\"headline\":\"Please Wait for the Windows Modules Installer\",\"datePublished\":\"2020-12-18T12:28:43+00:00\",\"dateModified\":\"2023-03-23T11:50:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/\"},\"wordCount\":657,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a\"},\"keywords\":[\"Azure\",\"Azure Image Builder\",\"HyperV\",\"image\",\"image builder\",\"image delay\",\"Image Troubleshooting\",\"Imaging\",\"Mode:VM\",\"Module Installer\",\"Please Wait for the Windows Module Installer\",\"Sysprep\",\"VM Image\",\"VMWare\",\"Windows Modules Installer\"],\"articleSection\":[\"Azure\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/\",\"url\":\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/\",\"name\":\"Please Wait for the Windows Modules Installer - ciraltos\",\"isPartOf\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#website\"},\"datePublished\":\"2020-12-18T12:28:43+00:00\",\"dateModified\":\"2023-03-23T11:50:53+00:00\",\"description\":\"In this post and accompanying video, I show you how to bypass the \\\"Please Wait for the Windows Module Instller\\\" message when creating a custom image, including with Azure Image Builder.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ciraltos.com\/staging2\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Please Wait for the Windows Modules Installer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#website\",\"url\":\"https:\/\/www.ciraltos.com\/staging2\/\",\"name\":\"ciraltos\",\"description\":\"cloud, technology and trends\",\"publisher\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ciraltos.com\/staging2\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a\",\"name\":\"Travis Roberts\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/Logo-1.png\",\"contentUrl\":\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/Logo-1.png\",\"width\":5657,\"height\":3563,\"caption\":\"Travis Roberts\"},\"logo\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/www.ciraltos.com\",\"https:\/\/twitter.com\/ciraltos\"],\"url\":\"https:\/\/www.ciraltos.com\/staging2\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Please Wait for the Windows Modules Installer - ciraltos","description":"In this post and accompanying video, I show you how to bypass the \"Please Wait for the Windows Module Instller\" message when creating a custom image, including with Azure Image Builder.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/","og_locale":"en_US","og_type":"article","og_title":"Please Wait for the Windows Modules Installer - ciraltos","og_description":"In this post and accompanying video, I show you how to bypass the \"Please Wait for the Windows Module Instller\" message when creating a custom image, including with Azure Image Builder.","og_url":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/","og_site_name":"ciraltos","article_published_time":"2020-12-18T12:28:43+00:00","article_modified_time":"2023-03-23T11:50:53+00:00","og_image":[{"width":300,"height":213,"url":"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/PleaseWaitSml-1.png","type":"image\/png"}],"author":"Travis Roberts","twitter_card":"summary_large_image","twitter_creator":"@ciraltos","twitter_site":"@ciraltos","twitter_misc":{"Written by":"Travis Roberts","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/#article","isPartOf":{"@id":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/"},"author":{"name":"Travis Roberts","@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a"},"headline":"Please Wait for the Windows Modules Installer","datePublished":"2020-12-18T12:28:43+00:00","dateModified":"2023-03-23T11:50:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/"},"wordCount":657,"commentCount":3,"publisher":{"@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a"},"keywords":["Azure","Azure Image Builder","HyperV","image","image builder","image delay","Image Troubleshooting","Imaging","Mode:VM","Module Installer","Please Wait for the Windows Module Installer","Sysprep","VM Image","VMWare","Windows Modules Installer"],"articleSection":["Azure"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/","url":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/","name":"Please Wait for the Windows Modules Installer - ciraltos","isPartOf":{"@id":"https:\/\/www.ciraltos.com\/staging2\/#website"},"datePublished":"2020-12-18T12:28:43+00:00","dateModified":"2023-03-23T11:50:53+00:00","description":"In this post and accompanying video, I show you how to bypass the \"Please Wait for the Windows Module Instller\" message when creating a custom image, including with Azure Image Builder.","breadcrumb":{"@id":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ciraltos.com\/staging2\/please-wait-for-the-windows-modules-installer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ciraltos.com\/staging2\/"},{"@type":"ListItem","position":2,"name":"Please Wait for the Windows Modules Installer"}]},{"@type":"WebSite","@id":"https:\/\/www.ciraltos.com\/staging2\/#website","url":"https:\/\/www.ciraltos.com\/staging2\/","name":"ciraltos","description":"cloud, technology and trends","publisher":{"@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ciraltos.com\/staging2\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a","name":"Travis Roberts","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/image\/","url":"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/Logo-1.png","contentUrl":"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/Logo-1.png","width":5657,"height":3563,"caption":"Travis Roberts"},"logo":{"@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/www.ciraltos.com","https:\/\/twitter.com\/ciraltos"],"url":"https:\/\/www.ciraltos.com\/staging2\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/posts\/1899"}],"collection":[{"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/comments?post=1899"}],"version-history":[{"count":6,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/posts\/1899\/revisions"}],"predecessor-version":[{"id":3896,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/posts\/1899\/revisions\/3896"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/media\/3883"}],"wp:attachment":[{"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/media?parent=1899"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/categories?post=1899"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/tags?post=1899"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}