{"id":2308,"date":"2020-11-14T15:51:24","date_gmt":"2020-11-14T15:51:24","guid":{"rendered":"https:\/\/hypervlab.co.uk\/?p=2308"},"modified":"2020-11-14T15:51:30","modified_gmt":"2020-11-14T15:51:30","slug":"winpe-media-builder-powershell","status":"publish","type":"post","link":"https:\/\/hypervlab.co.uk\/?p=2308","title":{"rendered":"WinPE Media Builder &#8211; Powershell <3"},"content":{"rendered":"<span class=\"span-reading-time rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading Time: <\/span> <span class=\"rt-time\"> 3<\/span> <span class=\"rt-label rt-postfix\">minutes<\/span><\/span>\n<p>In this blog post, I&#8217;m sharing a PowerShell script, Which I think some will find useful. This script is based on a script i found by &#8220;Gregory Strike&#8221; but has been updated and modified, but the core WinPE functionality I&#8217;ve taken from his blog post you can find here. Some might ask why created the script? There was a time and a place where for a couple of months I was constantly needing WinPE Images for various deployment options, diagnostics and testing and I was sending hours having to manually copy and paste the command and use the janky MakeWinPEMEdia. So I decided as many of us have done, to spend hours and hours developing a solution to save all of 5 minutes of copy and pasting. <\/p>\n\n\n\n<p>So what does the script do? It requires you to have the Windows 10 ADK &amp; WinPE Add-on Module installed. If you dont already have these download you can acquire the setup packages from the Windows 10 ADK Site.   [<a href=\"https:\/\/docs.microsoft.com\/en-us\/windows-hardware\/get-started\/adk-install\" target=\"_blank\" rel=\"noreferrer noopener\">Download Here<\/a>]<br>[NOTE: At time of posting Windows 10 2004 ADK was the latest release]<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1104\" height=\"826\" src=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image.png\" alt=\"\" class=\"wp-image-2310\" srcset=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image.png 1104w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-300x224.png 300w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-1024x766.png 1024w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-768x575.png 768w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-80x60.png 80w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-160x120.png 160w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-100x75.png 100w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-200x150.png 200w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-180x135.png 180w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-360x270.png 360w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-238x178.png 238w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-476x356.png 476w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-265x198.png 265w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-530x396.png 530w\" sizes=\"auto, (max-width: 1104px) 100vw, 1104px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Windows Assessment and Deployment Kit Setup<\/h3>\n\n\n\n<p>Once we have downloaded the adksetup.exe and adkwinpesetup.exe. First let&#8217;s install the ADK Files, For the WinPE Script to work all we require is the Deployment Files (91.4Mb). You may wish to install more of the ADK, but this is all that&#8217;s required for the script to work.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1035\" height=\"706\" src=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/adk_install.gif\" alt=\"\" class=\"wp-image-2313\"\/><\/figure>\n\n\n\n<p>Next lets install the WinPE Add-on this in a single installer around 5Gb.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1035\" height=\"706\" src=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/winpe_install.gif\" alt=\"\" class=\"wp-image-2317\"\/><\/figure>\n\n\n\n<p>Once you have the WinPE Media installed, you can download the initial setup script from the HypervLAB GitHub Repository [<a href=\"https:\/\/github.com\/hypervlab\/hypervlab-resources\/tree\/master\/winpe\" target=\"_blank\" rel=\"noreferrer noopener\">GitHub Link<\/a>]<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Initial Environment Setup<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;#\n.NAME\n    WinPE Media Builder Setup Script\n\n.DESCRIPTION\n    WinPE Default Root Setup Script \n\n.AUTHOR\n    Simon Lee\n    #HypervLAB - https:\/\/hypervlab.co.uk\n    @smoon_lee\n\n.CHANGELOG\n    13.11.2020 - Inital Script Created\n\n#>\n\n# Define Setup Directory\n$SetupDir = Read-Host -Prompt 'Please Enter Setup Directory Drive Letter (Example: C:\\)'\n$Folder = 'WinPEBuilder'\nNew-Item -ItemType 'Directory' -Path $(\"$SetupDir\\$Folder\")\n\n# Folder Structure\nNew-Item -ItemType 'Directory' -Path $(\"$SetupDir\\$Folder\\Notes\")\nNew-Item -ItemType 'Directory' -Path $(\"$SetupDir\\$Folder\\WinPE_Applications\")\nNew-Item -ItemType 'Directory' -Path $(\"$SetupDir\\$Folder\\WinPE_Backgrounds\")\nNew-Item -ItemType 'Directory' -Path $(\"$SetupDir\\$Folder\\WinPE_Drivers\")\nNew-Item -ItemType 'Directory' -Path $(\"$SetupDir\\$Folder\\WinPE_ISO\")\nNew-Item -ItemType 'Directory' -Path $(\"$SetupDir\\$Folder\\WinPE_Patches\")\nNew-Item -ItemType 'Directory' -Path $(\"$SetupDir\\$Folder\\WinPE_Unattend\")\n\n\n# Download Configure-WinPEImage Script\nInvoke-WebRequest -Uri \"https:\/\/raw.githubusercontent.com\/hypervlab\/hypervlab-resources\/master\/winpe\/Configure-WinPEImage.ps1\" -OutFile $(\"$SetupDir\\$Folder\\Configure-WinPEImage.ps1\")<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Launching WinPE Builder<\/h3>\n\n\n\n<p>By Default on a new Windows 10 Built the ability to run Scripts is Blocked. As shown in the Sample below.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1724\" height=\"623\" src=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-1.png\" alt=\"\" class=\"wp-image-2320\" srcset=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-1.png 1724w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-1-300x108.png 300w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-1-1024x370.png 1024w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-1-768x278.png 768w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-1-1536x555.png 1536w\" sizes=\"auto, (max-width: 1724px) 100vw, 1724px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"966\" height=\"1574\" src=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-2.png\" alt=\"\" class=\"wp-image-2321\" srcset=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-2.png 966w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-2-184x300.png 184w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-2-628x1024.png 628w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-2-768x1251.png 768w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-2-943x1536.png 943w\" sizes=\"auto, (max-width: 966px) 100vw, 966px\" \/><\/figure>\n\n\n\n<p>I Would recommend changing the Execution Policy to <strong>RemoteSigned<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Set-ExecutionPolicy -ExecutionPolicy 'RemoteSigned'<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1720\" height=\"615\" src=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-4.png\" alt=\"\" class=\"wp-image-2323\" srcset=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-4.png 1720w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-4-300x107.png 300w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-4-1024x366.png 1024w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-4-768x275.png 768w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-4-1536x549.png 1536w\" sizes=\"auto, (max-width: 1720px) 100vw, 1720px\" \/><\/figure>\n\n\n\n<p>Now we can launch the script.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.\\Configure-WinPEImage.ps1<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1726\" height=\"621\" src=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-5.png\" alt=\"\" class=\"wp-image-2324\" srcset=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-5.png 1726w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-5-300x108.png 300w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-5-1024x368.png 1024w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-5-768x276.png 768w, https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/image-5-1536x553.png 1536w\" sizes=\"auto, (max-width: 1726px) 100vw, 1726px\" \/><\/figure>\n\n\n\n<p>GIF Sample of a WinPE 64x Build<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1714\" height=\"610\" src=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/winpe_build_64x.gif\" alt=\"\" class=\"wp-image-2327\"\/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p><span class=\"span-reading-time rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\">Reading Time: <\/span> <span class=\"rt-time\"> 3<\/span> <span class=\"rt-label rt-postfix\">minutes<\/span><\/span>In this blog post, I&#8217;m sharing a PowerShell script, Which I think some will find useful. This script is based on a script i found by &#8220;Gregory Strike&#8221; but has been updated and modified, but the core WinPE functionality I&#8217;ve taken from his blog post you can find here. Some might ask why created the [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2325,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[74],"tags":[216,92,106,132,283],"class_list":["post-2308","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-miscellaneous","tag-automation","tag-powershell","tag-windows","tag-windows10","tag-windowsadk"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>WinPE Media Builder - Powershell<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hypervlab.co.uk\/?p=2308\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"WinPE Media Builder - Powershell\" \/>\n<meta property=\"og:description\" content=\"Reading Time:  3 minutesIn this blog post, I&#8217;m sharing a PowerShell script, Which I think some will find useful. This script is based on a script i found by &#8220;Gregory Strike&#8221; but has been updated and modified, but the core WinPE functionality I&#8217;ve taken from his blog post you can find here. Some might ask why created the [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hypervlab.co.uk\/?p=2308\" \/>\n<meta property=\"og:site_name\" content=\"HypervLAB\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-14T15:51:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-14T15:51:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/FeatureImage_WInPEBuilder.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Simon Lee\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/smoon_lee\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Simon Lee\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hypervlab.co.uk\/?p=2308\",\"url\":\"https:\/\/hypervlab.co.uk\/?p=2308\",\"name\":\"WinPE Media Builder - Powershell\",\"isPartOf\":{\"@id\":\"https:\/\/hypervlab.co.uk\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hypervlab.co.uk\/?p=2308#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hypervlab.co.uk\/?p=2308#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/FeatureImage_WInPEBuilder.png\",\"datePublished\":\"2020-11-14T15:51:24+00:00\",\"dateModified\":\"2020-11-14T15:51:30+00:00\",\"author\":{\"@id\":\"https:\/\/hypervlab.co.uk\/#\/schema\/person\/7d184970612a9c6a5f1babb8b6b4d359\"},\"breadcrumb\":{\"@id\":\"https:\/\/hypervlab.co.uk\/?p=2308#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hypervlab.co.uk\/?p=2308\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/hypervlab.co.uk\/?p=2308#primaryimage\",\"url\":\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/FeatureImage_WInPEBuilder.png\",\"contentUrl\":\"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/FeatureImage_WInPEBuilder.png\",\"width\":1200,\"height\":600,\"caption\":\"winpe_media_builder\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hypervlab.co.uk\/?p=2308#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hypervlab.co.uk\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"WinPE Media Builder &#8211; Powershell\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hypervlab.co.uk\/#website\",\"url\":\"https:\/\/hypervlab.co.uk\/\",\"name\":\"HypervLAB\",\"description\":\"Blogging about all thing Microsoft\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hypervlab.co.uk\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/hypervlab.co.uk\/#\/schema\/person\/7d184970612a9c6a5f1babb8b6b4d359\",\"name\":\"Simon Lee\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/hypervlab.co.uk\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9473a3cf9c75192508eccfd9d072efab80adf04a45083e561d0e3065f681c34c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9473a3cf9c75192508eccfd9d072efab80adf04a45083e561d0e3065f681c34c?s=96&d=mm&r=g\",\"caption\":\"Simon Lee\"},\"description\":\"Hi, I'm Simon an IT Enthusiast, PowerShell Geek, Gamer, and Sound Engineer. I've been working with in the IT Industry for around 6 years and have worked across private and public sector companies. The original idea behind \\\"hypervlab\\\" was that I required an 'RnD' environment which would allow me to be able to replicate any kind of enterprise on-premise environment which I could use for learning and testing without learning in a production environment. So in 2019, I decided to branch out and use the domain for a public facing blog to be able to contribute to the IT Community about all things Microsoft.\",\"sameAs\":[\"https:\/\/hypervlab.co.uk\",\"https:\/\/www.linkedin.com\/in\/simon-john-lee\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/smoon_lee\"],\"url\":\"https:\/\/hypervlab.co.uk\/?author=2\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"WinPE Media Builder - Powershell","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:\/\/hypervlab.co.uk\/?p=2308","og_locale":"en_GB","og_type":"article","og_title":"WinPE Media Builder - Powershell","og_description":"Reading Time:  3 minutesIn this blog post, I&#8217;m sharing a PowerShell script, Which I think some will find useful. This script is based on a script i found by &#8220;Gregory Strike&#8221; but has been updated and modified, but the core WinPE functionality I&#8217;ve taken from his blog post you can find here. Some might ask why created the [&hellip;]","og_url":"https:\/\/hypervlab.co.uk\/?p=2308","og_site_name":"HypervLAB","article_published_time":"2020-11-14T15:51:24+00:00","article_modified_time":"2020-11-14T15:51:30+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/FeatureImage_WInPEBuilder.png","type":"image\/png"}],"author":"Simon Lee","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/smoon_lee","twitter_misc":{"Written by":"Simon Lee","Estimated reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/hypervlab.co.uk\/?p=2308","url":"https:\/\/hypervlab.co.uk\/?p=2308","name":"WinPE Media Builder - Powershell","isPartOf":{"@id":"https:\/\/hypervlab.co.uk\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hypervlab.co.uk\/?p=2308#primaryimage"},"image":{"@id":"https:\/\/hypervlab.co.uk\/?p=2308#primaryimage"},"thumbnailUrl":"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/FeatureImage_WInPEBuilder.png","datePublished":"2020-11-14T15:51:24+00:00","dateModified":"2020-11-14T15:51:30+00:00","author":{"@id":"https:\/\/hypervlab.co.uk\/#\/schema\/person\/7d184970612a9c6a5f1babb8b6b4d359"},"breadcrumb":{"@id":"https:\/\/hypervlab.co.uk\/?p=2308#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hypervlab.co.uk\/?p=2308"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/hypervlab.co.uk\/?p=2308#primaryimage","url":"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/FeatureImage_WInPEBuilder.png","contentUrl":"https:\/\/hypervlab.co.uk\/wp-content\/uploads\/2020\/11\/FeatureImage_WInPEBuilder.png","width":1200,"height":600,"caption":"winpe_media_builder"},{"@type":"BreadcrumbList","@id":"https:\/\/hypervlab.co.uk\/?p=2308#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hypervlab.co.uk\/"},{"@type":"ListItem","position":2,"name":"WinPE Media Builder &#8211; Powershell"}]},{"@type":"WebSite","@id":"https:\/\/hypervlab.co.uk\/#website","url":"https:\/\/hypervlab.co.uk\/","name":"HypervLAB","description":"Blogging about all thing Microsoft","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hypervlab.co.uk\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/hypervlab.co.uk\/#\/schema\/person\/7d184970612a9c6a5f1babb8b6b4d359","name":"Simon Lee","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/hypervlab.co.uk\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9473a3cf9c75192508eccfd9d072efab80adf04a45083e561d0e3065f681c34c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9473a3cf9c75192508eccfd9d072efab80adf04a45083e561d0e3065f681c34c?s=96&d=mm&r=g","caption":"Simon Lee"},"description":"Hi, I'm Simon an IT Enthusiast, PowerShell Geek, Gamer, and Sound Engineer. I've been working with in the IT Industry for around 6 years and have worked across private and public sector companies. The original idea behind \"hypervlab\" was that I required an 'RnD' environment which would allow me to be able to replicate any kind of enterprise on-premise environment which I could use for learning and testing without learning in a production environment. So in 2019, I decided to branch out and use the domain for a public facing blog to be able to contribute to the IT Community about all things Microsoft.","sameAs":["https:\/\/hypervlab.co.uk","https:\/\/www.linkedin.com\/in\/simon-john-lee\/","https:\/\/x.com\/https:\/\/twitter.com\/smoon_lee"],"url":"https:\/\/hypervlab.co.uk\/?author=2"}]}},"_links":{"self":[{"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/2308","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2308"}],"version-history":[{"count":0,"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=\/wp\/v2\/posts\/2308\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=\/wp\/v2\/media\/2325"}],"wp:attachment":[{"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2308"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2308"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hypervlab.co.uk\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2308"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}