{"id":1402,"date":"2011-06-17T06:59:43","date_gmt":"2011-06-17T04:59:43","guid":{"rendered":"http:\/\/ubuntu-vm.networknet.nl\/networknet.nl\/apps\/wp\/?p=1402"},"modified":"2011-06-29T17:56:44","modified_gmt":"2011-06-29T15:56:44","slug":"windows-7-how-to-use-autounattend-xml-and-deploy-the-os","status":"publish","type":"post","link":"https:\/\/www.networknet.nl\/apps\/wp\/archives\/1402","title":{"rendered":"Windows 7: how to use Autounattend.xml and deploy the OS?"},"content":{"rendered":"<p>Deploying Windows 7 in an enterprise requires more then just installing the systems from a dvd media. With Windows 7 you can  use an <strong>answer file<\/strong> to configure Windows settings during installation process. The XML answer file will contain all of the settings that are required for an unattended installation. The ultimate goal during the installation is that we are not be prompted with user interface interaction.<\/p>\n<h3>What is a unattended answer file?<\/h3>\n<div class=\"messageBox info icon\"><span><\/p>\n<p>An &#8220;answer file&#8221; is an XML-based file that contains setting  definitions and values to use during Windows\u00a0Setup. In an answer file,  you specify various setup options, including how to partition disks, the  location of the Windows image to install, and the product key to apply.  You can also specify values that apply to the Windows installation,  such as the names of user accounts, display settings, and Internet  Explorer Favorites. The answer file for Setup is typically called Autounattend.xml or Unattend.xml.<\/p>\n<p>Answer files created in Windows System Image Manager  (Windows\u00a0SIM) are associated with a particular Windows image. This  enables you to validate the settings in the answer file to the settings  available in the Windows image. However, because any answer file can be  used to install any Windows image, if there are settings in the answer  file for components that do not exist in the Windows image, those  settings are ignored.<\/p>\n<p><\/span><\/div>\n<p>I am creating an answer file using Windows System Image Manager (SIM), a utility for creating and modifying unattended answer files. Below I am sharing a sample <strong>Autounattend.xml<\/strong> answer file that includes basic Windows Setup configuration and minimum Windows Welcome customizations.<\/p>\n<p>The <strong>Autounattend.xml <\/strong>is generated using different component settings areas. Component setting are the configurable aspects of each component in a Windows 7 installation for unattended setup. The following components I am using for the sample file:<\/p>\n<h5>Windows PE: Component &#8211; Microsoft-Windows-Setup<\/h5>\n<div class=\"messageBox note icon\"><span>Wipe the disk, create new primary partition, extend the partition with formatting and install Windows 7. Accept the Microsoft EULA and use my full name and company.<\/span><\/div>\n<h5>Windows PE: Component &#8211; Microsoft-Windows-International-Core-WinPE<\/h5>\n<div class=\"messageBox note icon\"><span>I am specifying the default language, locale, and other international settings to use during Windows\u00a0Setup. In this step you can define other language options. I used this step to define Dutch, German, Japanese and Chinese settings during my deployment!<\/span><\/div>\n<h5>Specialize: Component &#8211; Microsoft-Windows-Shell-Setup<\/h5>\n<div class=\"messageBox note icon\"><span>Microsoft-Windows-Shell-Setup contains elements and settings that control how the shell of the Windows operating system. I am using this step to define my time zone. Also this step is important if you want to provide the <strong>ComputerName<\/strong>. I am not using this phase now but I will do that later on with Sysprep.<\/span><\/div>\n<h5>Specialize: Component &#8211; Microsoft-Windows-Deployment<\/h5>\n<div class=\"messageBox note icon\"><span>Out of the box installation of Windows 7 disables the <strong>Administrator <\/strong>account and prompts you to provide a name for the default admin account. In this step I am enabling the local <strong>Administrator<\/strong> account. This is the old way using the net.exe command. You can also add additional commands to run other actions.<\/span><\/div>\n<h5>oobeSystem: Component &#8211; Microsoft-Windows-Shell-Setup<\/h5>\n<div class=\"messageBox note icon\"><span>The oobeSystem pass configures settings that are applied during the first-boot experience for end users. I am providing default settings and also hiding the steps. I will also add a new local <strong>Administrator <\/strong>account here. The password is <strong>password2011<\/strong>. Please make sure you modify the password at some point if using my sample file!<\/span><\/div>\n<h3><strong>Autounattend.xml<\/strong><\/h3>\n<pre class=\"brush:xml\">&lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\r\n&lt;unattend xmlns=\"urn:schemas-microsoft-com:unattend\"&gt;\r\n    &lt;settings pass=\"windowsPE\"&gt;\r\n        &lt;component name=\"Microsoft-Windows-Setup\" processorArchitecture=\"x86\" publicKeyToken=\"31bf3856ad364e35\" language=\"neutral\" versionScope=\"nonSxS\" xmlns:wcm=\"http:\/\/schemas.microsoft.com\/WMIConfig\/2002\/State\" xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"&gt;\r\n            &lt;DiskConfiguration&gt;\r\n                &lt;Disk wcm:action=\"add\"&gt;\r\n                    &lt;CreatePartitions&gt;\r\n                        &lt;CreatePartition wcm:action=\"add\"&gt;\r\n                            &lt;Order&gt;1&lt;\/Order&gt;\r\n                            &lt;Extend&gt;true&lt;\/Extend&gt;\r\n                            &lt;Type&gt;Primary&lt;\/Type&gt;\r\n                        &lt;\/CreatePartition&gt;\r\n                    &lt;\/CreatePartitions&gt;\r\n                    &lt;ModifyPartitions&gt;\r\n                        &lt;ModifyPartition wcm:action=\"add\"&gt;\r\n                            &lt;Active&gt;true&lt;\/Active&gt;\r\n                            &lt;Format&gt;NTFS&lt;\/Format&gt;\r\n                            &lt;Label&gt;LocalWin7HDD&lt;\/Label&gt;\r\n                            &lt;Letter&gt;C&lt;\/Letter&gt;\r\n                            &lt;Order&gt;1&lt;\/Order&gt;\r\n                            &lt;PartitionID&gt;1&lt;\/PartitionID&gt;\r\n                        &lt;\/ModifyPartition&gt;\r\n                    &lt;\/ModifyPartitions&gt;\r\n                    &lt;DiskID&gt;0&lt;\/DiskID&gt;\r\n                    &lt;WillWipeDisk&gt;true&lt;\/WillWipeDisk&gt;\r\n                &lt;\/Disk&gt;\r\n                &lt;WillShowUI&gt;OnError&lt;\/WillShowUI&gt;\r\n            &lt;\/DiskConfiguration&gt;\r\n            &lt;ImageInstall&gt;\r\n                &lt;OSImage&gt;\r\n                    &lt;InstallTo&gt;\r\n                        &lt;DiskID&gt;0&lt;\/DiskID&gt;\r\n                        &lt;PartitionID&gt;1&lt;\/PartitionID&gt;\r\n                    &lt;\/InstallTo&gt;\r\n                    &lt;WillShowUI&gt;OnError&lt;\/WillShowUI&gt;\r\n                &lt;\/OSImage&gt;\r\n            &lt;\/ImageInstall&gt;\r\n            &lt;UserData&gt;\r\n                &lt;AcceptEula&gt;true&lt;\/AcceptEula&gt;\r\n                &lt;Organization&gt;Networknet&lt;\/Organization&gt;\r\n                &lt;FullName&gt;Networknet&lt;\/FullName&gt;\r\n            &lt;\/UserData&gt;\r\n        &lt;\/component&gt;\r\n        &lt;component name=\"Microsoft-Windows-International-Core-WinPE\" processorArchitecture=\"x86\" publicKeyToken=\"31bf3856ad364e35\" language=\"neutral\" versionScope=\"nonSxS\" xmlns:wcm=\"http:\/\/schemas.microsoft.com\/WMIConfig\/2002\/State\" xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"&gt;\r\n            &lt;SetupUILanguage&gt;\r\n            &lt;UILanguage&gt;en-US &lt;\/UILanguage&gt;\r\n            &lt;\/SetupUILanguage&gt;\r\n            &lt;InputLocale&gt;en-US &lt;\/InputLocale&gt;\r\n            &lt;SystemLocale&gt;en-US &lt;\/SystemLocale&gt;\r\n            &lt;UILanguage&gt;en-US &lt;\/UILanguage&gt;\r\n            &lt;UILanguageFallback&gt;en-US &lt;\/UILanguageFallback&gt;\r\n            &lt;UserLocale&gt;en-US &lt;\/UserLocale&gt;\r\n        &lt;\/component&gt;\r\n    &lt;\/settings&gt;\r\n    &lt;settings pass=\"specialize\"&gt;\r\n        &lt;component name=\"Microsoft-Windows-Shell-Setup\" processorArchitecture=\"x86\" publicKeyToken=\"31bf3856ad364e35\" language=\"neutral\" versionScope=\"nonSxS\" xmlns:wcm=\"http:\/\/schemas.microsoft.com\/WMIConfig\/2002\/State\" xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"&gt;\r\n            &lt;TimeZone&gt;W. Europe Standard Time&lt;\/TimeZone&gt;\r\n            &lt;ComputerName&gt;&lt;\/ComputerName&gt;\r\n        &lt;\/component&gt;\r\n        &lt;component name=\"Microsoft-Windows-Deployment\" processorArchitecture=\"x86\" publicKeyToken=\"31bf3856ad364e35\" language=\"neutral\" versionScope=\"nonSxS\" xmlns:wcm=\"http:\/\/schemas.microsoft.com\/WMIConfig\/2002\/State\" xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"&gt;\r\n            &lt;RunSynchronous&gt;\r\n                &lt;RunSynchronousCommand wcm:action=\"add\"&gt;\r\n                    &lt;Description&gt;Enable Administrator account&lt;\/Description&gt;\r\n                    &lt;Path&gt;net user administrator \/active:yes&lt;\/Path&gt;\r\n                    &lt;Order&gt;1&lt;\/Order&gt;\r\n                &lt;\/RunSynchronousCommand&gt;\r\n            &lt;\/RunSynchronous&gt;\r\n        &lt;\/component&gt;\r\n    &lt;\/settings&gt;\r\n    &lt;settings pass=\"oobeSystem\"&gt;\r\n        &lt;component name=\"Microsoft-Windows-Shell-Setup\" processorArchitecture=\"x86\" publicKeyToken=\"31bf3856ad364e35\" language=\"neutral\" versionScope=\"nonSxS\" xmlns:wcm=\"http:\/\/schemas.microsoft.com\/WMIConfig\/2002\/State\" xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"&gt;\r\n            &lt;OOBE&gt;\r\n                &lt;ProtectYourPC&gt;1&lt;\/ProtectYourPC&gt;\r\n                &lt;NetworkLocation&gt;Work&lt;\/NetworkLocation&gt;\r\n                &lt;HideEULAPage&gt;true&lt;\/HideEULAPage&gt;\r\n                &lt;HideWirelessSetupInOOBE&gt;true&lt;\/HideWirelessSetupInOOBE&gt;\r\n            &lt;\/OOBE&gt;\r\n            &lt;UserAccounts&gt;\r\n                &lt;LocalAccounts&gt;\r\n                    &lt;LocalAccount wcm:action=\"add\"&gt;\r\n                        &lt;Password&gt;\r\n                            &lt;Value&gt;cABhAHMAcwB3AG8AcgBkADIAMAAxADEAUABhAHMAcwB3AG8AcgBkAA==&lt;\/Value&gt;\r\n                            &lt;PlainText&gt;false&lt;\/PlainText&gt;\r\n                        &lt;\/Password&gt;\r\n                        &lt;Name&gt;administrator&lt;\/Name&gt;\r\n                        &lt;Group&gt;administrators&lt;\/Group&gt;\r\n                        &lt;DisplayName&gt;administrator&lt;\/DisplayName&gt;\r\n                        &lt;Description&gt;Default Administrator Account&lt;\/Description&gt;\r\n                    &lt;\/LocalAccount&gt;\r\n                &lt;\/LocalAccounts&gt;\r\n            &lt;\/UserAccounts&gt;\r\n        &lt;\/component&gt;\r\n    &lt;\/settings&gt;\r\n    &lt;cpi:offlineImage cpi:source=\"catalog:c:\/vm-backup\/win7-enterprise\/sources\/install_windows 7 enterprise.clg\" xmlns:cpi=\"urn:schemas-microsoft-com:cpi\" \/&gt;\r\n&lt;\/unattend&gt;<\/pre>\n<h3>Create the Autounattend.xml answer file<\/h3>\n<\/p>\n<ul class=\"icon-list \" style=\"margin-left: 10px;\">\n<li><div class=\"icon16 iconMedia play\"><\/div>Open Notepad<\/li>\n<li><div class=\"icon16 iconMedia play\"><\/div>Copy the Autounattend.xml example and paste that into Notepad<\/li>\n<li><div class=\"icon16 iconMedia play\"><\/div>Save the file as <strong>Autounattend.xml<\/strong><\/li>\n<li><div class=\"icon16 iconMedia play\"><\/div>If you are using a virtualization solution like VMWare ESX, Microsoft Hyper-V or Oracle VirtualBOX then create a virtual floppy disk and copy the file. If you are installing on a physical system then copy the file to the root of a USB flash drive or burn a cd\/dvd disk<\/li>\n<\/ul>\n<p>\n<p>You can use my sample file as a start but I recommend to open the file with <strong>Windows System Image Manager<\/strong> and edit the new created file. Changing password is one of those things to do and be aware of the DiskWipe is set to true. Windows System Image Manager is part of the <a href=\"http:\/\/www.microsoft.com\/downloads\/en\/details.aspx?FamilyID=696dd665-9f76-4177-a811-39c26d3b3b34&amp;displaylang=en#iframe\">Windows AIK<\/a> deployment tools.<\/p>\n<a href=\"\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-System-Image-Manager-Autounattend.png\" class=\"styled-image popup\" title=\"Windows System Image Manager Autounattend.xml\" ><img loading=\"lazy\" decoding=\"async\" src=\"\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-System-Image-Manager-Autounattend-200x200.png\" width=\"200\" height=\"200\" alt=\"Windows System Image Manager Autounattend.xml\" \/><\/a>\n<h3>Autounattend.xml media with the sample file<\/h3>\n<p>The following links contain virtual floppy drives with the example sample file. You can download the file and directly mount it to our virtualization solution.<\/p>\n<\/p>\n<ul class=\"icon-list \" style=\"margin-left: 10px;\">\n<li><div class=\"icon16 iconFile document\"><\/div><a href=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Autounattend_HyperV_VirtualPC.vfd\">Autounattend_HyperV_VirtualPC.vfd<\/a><\/li>\n<li><div class=\"icon16 iconFile document\"><\/div><a href=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Autounattend.xml\">Autounattend.xml<\/a><\/li>\n<\/ul>\n<p>\n<p>I created new virtual machine in Hyper-V server, attached the <strong>Autounattend_HyperV_VirtualPC.vfd <\/strong>virtual floppy drive and mounted Windows 7 iso image. I then started the virtual machines and I waited for 10 minutes to install. The installation started, Windows 7 finished and I was able to logon with the default <strong>password2011<\/strong> password.<\/p>\n<a href=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-1.png\" class=\"styled-image popup\" title=\"Windows 7 Setup\" rel=\"autounattned\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-1-200x200.png\" width=\"200\" height=\"200\" alt=\"Windows 7 Setup\" \/><\/a>\n<a href=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-2.png\" class=\"styled-image popup\" title=\"Windows 7 Setup\" rel=\"autounattned\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-2-200x200.png\" width=\"200\" height=\"200\" alt=\"Windows 7 Setup\" \/><\/a>\n<a href=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-3-After-Reboot.png\" class=\"styled-image popup\" title=\"Windows 7 Setup\" rel=\"autounattned\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-3-After-Reboot-200x200.png\" width=\"200\" height=\"200\" alt=\"Windows 7 Setup\" \/><\/a>\n<a href=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-4-Login.png\" class=\"styled-image popup\" title=\"Windows 7 Setup\" rel=\"autounattned\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-4-Login-200x200.png\" width=\"200\" height=\"200\" alt=\"Windows 7 Setup\" \/><\/a>\n<a href=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-5-Desktop.png\" class=\"styled-image popup\" title=\"Windows 7 Setup\" rel=\"autounattned\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.networknet.nl\/apps\/wp\/wp-content\/uploads\/2011\/06\/Windows-7-Setup-5-Desktop-200x200.png\" width=\"200\" height=\"200\" alt=\"Windows 7 Setup\" \/><\/a>\n<h3>References<\/h3>\n<ul>\n<li><a href=\"http:\/\/technet.microsoft.com\/en-us\/library\/cc722187%28WS.10%29.aspx#iframe\">Technet &#8211; Unattended Windows Setup Reference<\/a><\/li>\n<li><a href=\"http:\/\/technet.microsoft.com\/en-us\/library\/dd349348%28WS.10%29.aspx#iframe\">Technet &#8211; Step-by-Step: Basic Windows Deployment for IT Professionals<\/a><\/li>\n<li><a href=\"http:\/\/technet.microsoft.com\/en-us\/library\/cc749415%28WS.10%29.aspx#iframe\">Technet &#8211; Methods for Running Windows Setup<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Deploying Windows 7 in an enterprise requires more then just installing the systems from a dvd media. With Windows 7 you can use an answer file to configure Windows settings during installation process. The XML answer file will contain all of the settings that are required for an unattended installation. The ultimate goal during the installation is that we are not be prompted with user interface interaction. What is a unattended answer file? I am creating an answer file using Windows System Image Manager (SIM), a utility for creating and modifying unattended answer files. Below I am sharing a sample Autounattend.xml answer file that includes basic Windows Setup configuration and minimum Windows Welcome customizations. The Autounattend.xml is generated using different component settings areas. Component setting are the configurable aspects of each component in a Windows 7 installation for unattended setup. The following components I am using for the sample file: Windows PE: Component &#8211; Microsoft-Windows-Setup Windows PE: Component &#8211; Microsoft-Windows-International-Core-WinPE Specialize: Component &#8211; Microsoft-Windows-Shell-Setup Specialize: Component &#8211; Microsoft-Windows-Deployment oobeSystem: Component &#8211; Microsoft-Windows-Shell-Setup Autounattend.xml &lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt; &lt;unattend xmlns=&#8221;urn:schemas-microsoft-com:unattend&#8221;&gt; &lt;settings pass=&#8221;windowsPE&#8221;&gt; &lt;component name=&#8221;Microsoft-Windows-Setup&#8221; processorArchitecture=&#8221;x86&#8243; publicKeyToken=&#8221;31bf3856ad364e35&#8243; language=&#8221;neutral&#8221; versionScope=&#8221;nonSxS&#8221; xmlns:wcm=&#8221;http:\/\/schemas.microsoft.com\/WMIConfig\/2002\/State&#8221; xmlns:xsi=&#8221;http:\/\/www.w3.org\/2001\/XMLSchema-instance&#8221;&gt; &lt;DiskConfiguration&gt; &lt;Disk wcm:action=&#8221;add&#8221;&gt; &lt;CreatePartitions&gt; &lt;CreatePartition wcm:action=&#8221;add&#8221;&gt; &lt;Order&gt;1&lt;\/Order&gt; &lt;Extend&gt;true&lt;\/Extend&gt; &lt;Type&gt;Primary&lt;\/Type&gt; &lt;\/CreatePartition&gt; &lt;\/CreatePartitions&gt; &lt;ModifyPartitions&gt; &lt;ModifyPartition wcm:action=&#8221;add&#8221;&gt; &lt;Active&gt;true&lt;\/Active&gt; &lt;Format&gt;NTFS&lt;\/Format&gt; &lt;Label&gt;LocalWin7HDD&lt;\/Label&gt; &lt;Letter&gt;C&lt;\/Letter&gt; &lt;Order&gt;1&lt;\/Order&gt; &lt;PartitionID&gt;1&lt;\/PartitionID&gt; &lt;\/ModifyPartition&gt; &lt;\/ModifyPartitions&gt; &lt;DiskID&gt;0&lt;\/DiskID&gt; &lt;WillWipeDisk&gt;true&lt;\/WillWipeDisk&gt; &lt;\/Disk&gt; &lt;WillShowUI&gt;OnError&lt;\/WillShowUI&gt; &lt;\/DiskConfiguration&gt; &lt;ImageInstall&gt; &lt;OSImage&gt; &lt;InstallTo&gt; &lt;DiskID&gt;0&lt;\/DiskID&gt; &lt;PartitionID&gt;1&lt;\/PartitionID&gt; &lt;\/InstallTo&gt; &lt;WillShowUI&gt;OnError&lt;\/WillShowUI&gt; &lt;\/OSImage&gt; &lt;\/ImageInstall&gt; &lt;UserData&gt; &lt;AcceptEula&gt;true&lt;\/AcceptEula&gt; &lt;Organization&gt;Networknet&lt;\/Organization&gt; &lt;FullName&gt;Networknet&lt;\/FullName&gt; &lt;\/UserData&gt; &lt;\/component&gt; &lt;component name=&#8221;Microsoft-Windows-International-Core-WinPE&#8221; processorArchitecture=&#8221;x86&#8243; publicKeyToken=&#8221;31bf3856ad364e35&#8243; language=&#8221;neutral&#8221; versionScope=&#8221;nonSxS&#8221; xmlns:wcm=&#8221;http:\/\/schemas.microsoft.com\/WMIConfig\/2002\/State&#8221; xmlns:xsi=&#8221;http:\/\/www.w3.org\/2001\/XMLSchema-instance&#8221;&gt; &lt;SetupUILanguage&gt; &lt;UILanguage&gt;en-US &lt;\/UILanguage&gt; &lt;\/SetupUILanguage&gt; &lt;InputLocale&gt;en-US &lt;\/InputLocale&gt; &lt;SystemLocale&gt;en-US &lt;\/SystemLocale&gt; &lt;UILanguage&gt;en-US &lt;\/UILanguage&gt; &lt;UILanguageFallback&gt;en-US &lt;\/UILanguageFallback&gt; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1140,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[496],"tags":[],"class_list":["post-1402","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-windows-7"],"_links":{"self":[{"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/posts\/1402","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/comments?post=1402"}],"version-history":[{"count":31,"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/posts\/1402\/revisions"}],"predecessor-version":[{"id":1574,"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/posts\/1402\/revisions\/1574"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/media\/1140"}],"wp:attachment":[{"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/media?parent=1402"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/categories?post=1402"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.networknet.nl\/apps\/wp\/wp-json\/wp\/v2\/tags?post=1402"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}