{"id":91,"date":"2019-01-21T23:09:37","date_gmt":"2019-01-22T06:09:37","guid":{"rendered":"https:\/\/angrysysadmins.tech\/?p=91"},"modified":"2019-01-23T17:25:06","modified_gmt":"2019-01-24T01:25:06","slug":"iis-site-creation-using-just-powershell","status":"publish","type":"post","link":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/","title":{"rendered":"IIS Site Creation Using Just PowerShell"},"content":{"rendered":"\r\n<p>Here I&#8217;ll be going in-depth on creating an IIS site solely using PowerShell commands (CLI or bust). Specifically I&#8217;ll go over creating an FTP site, but many of the steps and logic behind them are transferable to creating any other IIS site. Commands will be in bold. You may be asking why anyone would want to do this with commands as opposed to the <em>completely functional and intuitively designed<\/em> IIS GUI. That&#8217;d be because scripts are useful and going through the CLI can get you much further. You will also cultivate a greater degree of knowledge and appreciation for the dark and scary place that is the behind the scenes machinery of Windows, at least a high level view of it.<\/p>\r\n<p>&nbsp;<\/p>\r\n<p>To preface, this was done on Windows Server 2008 R2 with PowerShell version 5.1. This should work just fine on R1 and according to <a href=\"https:\/\/angrysysadmins.tech\/index.php\/author\/bailey\/\">Bailey<\/a> works on Server 2012 R2 and later, but I wouldn&#8217;t hold my breath on anything before 2008. While it may be possible, I have not yet tested it. Different PowerShell versions may require additional or less steps depending on what sort of modules they already have. To check what PowerShell version you have, type: <strong>$PSVerisonTable.<\/strong><\/p>\r\n<p>&nbsp;<\/p>\r\n<h3>Installing The Correct Windows Features<\/h3>\r\n<p>First off, we&#8217;ll need to install some Windows features (server roles). You can list out available features and see which ones you have enabled\/disabled by using the command <strong>Get-WindowsFeature<\/strong>. Your output should look something like this:<\/p>\r\n<p>&nbsp;<\/p>\r\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-277 aligncenter\" src=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/getfeature.png\" alt=\"\" width=\"678\" height=\"663\" srcset=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/getfeature.png 678w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/getfeature-300x293.png 300w\" sizes=\"auto, (max-width: 678px) 100vw, 678px\" \/><\/p>\r\n<p>&nbsp;<\/p>\r\n<p>Now we&#8217;ll install the features needed to make our FTP IIS site. The commands are as follows:<\/p>\r\n<div>\r\n<pre>Install-WindowsFeature -Name Web-Server<br \/><br \/>Install-WindowsFeature -Name Web-Mgmt-Tools<br \/><br \/>Install-WindowsFeature -Name Web-FTP-Server<br \/><br \/>Install-WindowsFeature -Name Web-FTP-Ext<\/pre>\r\n<\/div>\r\n<p>&nbsp;<\/p>\r\n<h3>Administration<\/h3>\r\n<p>To give us the ability to work on IIS sites through the CLI we need to import the WebAdministration cmdlet (commandlet). This command varies depending on which version of Server you are using. For 2008 R2 and newer you use:<\/p>\r\n<div>\r\n<pre>Import-Module WebAdministration<\/pre>\r\n<\/div>\r\n<p>But on 2008 you use:<\/p>\r\n<pre>Add-PSSnapin WebAdministration<\/pre>\r\n<p>&nbsp;<\/p>\r\n<h3>Making The FTP Site<\/h3>\r\n<p>The following command creates the site and sets its name to ftp and port 21:<\/p>\r\n<div>\r\n<pre>New-WebFtpSite -Name \"FTP\" -Port \"21\" -Force<\/pre>\r\n<p>Here&#8217;s where we run into some more version variability and long explanations. The variability here lies in the IIS version. The next command will be dependent on whether or not you&#8217;re running IIS 6 or below (This command is structured for IIS 7+). What changes is the site\/app\/virtdirectory hierarchy and how they are used. You can read more about that <strong><a href=\"https:\/\/docs.microsoft.com\/en-us\/iis\/get-started\/planning-your-iis-architecture\/understanding-sites-applications-and-virtual-directories-on-iis\">here<\/a><\/strong>. I have only tested this on IIS 7 thus far, but here it is:<\/p>\r\n<\/div>\r\n<div>\r\n<pre>C:\\Windows\\System32\\inetsrv\\appcmd set SITE \"FTP\" \"-virtualDirectoryDefaults.physicalPath:C:\\inetpub\\ftproot\"<\/pre>\r\n<\/div>\r\n\r\n\r\n\r\n<p>&nbsp;<\/p>\r\n<h3>Site Configuration<\/h3>\r\n<p>Now that creating the site is out of the way, we still need to configure it to make it actually functional. There are numerous ways to do this which I&#8217;ll leave up to you, but here are a few examples from a challenge I made <strong>(THESE ARE NOT SECURE SETTINGS):<\/strong><\/p>\r\n<div>\r\n<pre>Set-ItemProperty \"IIS:\\Sites\\FTP\" -Name ftpServer.security.ssl.controlChannelPolicy -Value 0 <br \/><br \/>Set-ItemProperty \"IIS:\\Sites\\FTP\" -Name ftpServer.security.ssl.dataChannelPolicy -Value 0<br \/><br \/>Set-ItemProperty \"IIS:\\Sites\\FTP\" -Name ftpServer.security.authentication.anonymousAuthentication.enabled -Value $true<br \/><br \/>Set-ItemProperty \"IIS:\\Sites\\FTP\" -Name ftpserver.userisolation.mode -Value 4 <br \/><br \/>Add-WebConfiguration \"\/system.ftpServer\/security\/authorization\" -Value @{accessType=\"Allow\";roles=\"\";permissions=\"Read,Write\";users=\"*\"} -PSPath IIS:\\ -location \"FTP\"<br \/> <\/pre>\r\n<\/div>\r\n<p>We then need to restart it for all of the changes to take effect:<\/p>\r\n<div>\r\n<pre>Restart-WebItem \"IIS:\\Sites\\FTP\"<\/pre>\r\n<\/div>\r\n<p>Additionally, you can view your site config in the following directory:<\/p>\r\n<div>\r\n<pre>C:\\Windows\\System32\\inetsrv\\config\\applicationHost.config<\/pre>\r\n<p>After opening that file with notepad you will find a great deal of configuration options. If you scroll for a bit and ran the same commands as above, it should look just like this (Disregard the default site):<\/p>\r\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-302\" src=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/apphost.png\" alt=\"\" width=\"785\" height=\"544\" srcset=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/apphost.png 785w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/apphost-300x208.png 300w, https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/apphost-768x532.png 768w\" sizes=\"auto, (max-width: 785px) 100vw, 785px\" \/><\/p>\r\n<p>You can also make configuration changes here if you really know what you&#8217;re doing, but this post is focused more towards scripting it.<\/p>\r\n<br \/>\r\n<h3>Closing Thoughts<\/h3>\r\n<p>Well that only sucked a little. Depending on what you want to do with whatever site you&#8217;ve created, you can make it suck a whole lot more! This should give you a good idea of the site creation process and and what you can do with it. If you need to mess with FTP just save yourself the trouble and use something like FileZilla. Unfortunately this process varies depending on the versions of some key components and I have only tested it with one specific configuration, but I&#8217;ll make the necessary edits if I find out more.<\/p>\r\n<br \/><br \/><\/div>\r\n<p>PowerShell. Power Shell. Powers <a href=\"https:\/\/www.youtube.com\/watch?v=KMU0tzLwhbE\">Hell<\/a>. Not a coincidence.<\/p>\r\n<p>&nbsp;<\/p>\r\n\r\n<p>&nbsp;<\/p>","protected":false},"excerpt":{"rendered":"<p>Here I&#8217;ll be going in-depth on creating an IIS site solely using PowerShell commands (CLI or bust). Specifically I&#8217;ll go over creating an FTP site, but many of the steps and logic behind them are transferable to creating any other IIS site. Commands will be in bold. You may be asking why anyone would want <br \/><a class=\"read-more-button\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/\">Read More &raquo;<\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[41,42,40,3],"tags":[62,63,61,64,5],"coauthors":[38],"class_list":["post-91","post","type-post","status-publish","format-standard","hentry","category-iis","category-powershell","category-scripting","category-windows","tag-ftp","tag-iis","tag-powershell","tag-scripting","tag-windows"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>IIS Site Creation Using Just PowerShell - Angry Sysadmins<\/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:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"IIS Site Creation Using Just PowerShell - Angry Sysadmins\" \/>\n<meta property=\"og:description\" content=\"Here I&#8217;ll be going in-depth on creating an IIS site solely using PowerShell commands (CLI or bust). Specifically I&#8217;ll go over creating an FTP site, but many of the steps and logic behind them are transferable to creating any other IIS site. Commands will be in bold. You may be asking why anyone would want Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"Angry Sysadmins\" \/>\n<meta property=\"article:published_time\" content=\"2019-01-22T06:09:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-01-24T01:25:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/getfeature.png\" \/>\n<meta name=\"author\" content=\"James Block\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Block\" \/>\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:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/\"},\"author\":{\"name\":\"James Block\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/901e72ffa6764487e5a6a8feedf296f7\"},\"headline\":\"IIS Site Creation Using Just PowerShell\",\"datePublished\":\"2019-01-22T06:09:37+00:00\",\"dateModified\":\"2019-01-24T01:25:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/\"},\"wordCount\":664,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/getfeature.png\",\"keywords\":[\"FTP\",\"IIS\",\"Powershell\",\"Scripting\",\"Windows\"],\"articleSection\":[\"IIS\",\"Powershell\",\"Scripting\",\"Windows\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/\",\"name\":\"IIS Site Creation Using Just PowerShell - Angry Sysadmins\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/getfeature.png\",\"datePublished\":\"2019-01-22T06:09:37+00:00\",\"dateModified\":\"2019-01-24T01:25:06+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/901e72ffa6764487e5a6a8feedf296f7\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/#primaryimage\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/getfeature.png\",\"contentUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2018\\\/12\\\/getfeature.png\",\"width\":678,\"height\":663},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2019\\\/01\\\/suser\\\/iis-site-creation-using-just-powershell\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/angrysysadmins.tech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"IIS Site Creation Using Just PowerShell\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/\",\"name\":\"Angry Sysadmins\",\"description\":\"A site full of angry sysadmins here to vent and help\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/angrysysadmins.tech\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/901e72ffa6764487e5a6a8feedf296f7\",\"name\":\"James Block\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0fdef63409b05fc72fdb87c1525848297b0087287f5d736b8e8480e4a20d6223?s=96&d=mm&r=gb49c11603f13a9b74c698d94a28349eb\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0fdef63409b05fc72fdb87c1525848297b0087287f5d736b8e8480e4a20d6223?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0fdef63409b05fc72fdb87c1525848297b0087287f5d736b8e8480e4a20d6223?s=96&d=mm&r=g\",\"caption\":\"James Block\"},\"description\":\"Netfilter's very own Anubis. Odd job IT. Over the top data and disk destruction. Security\\\/privacy oriented. I can pick your door lock pretty fast, but I can unlock your heart even faster.\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/author\\\/suser\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"IIS Site Creation Using Just PowerShell - Angry Sysadmins","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:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/","og_locale":"en_US","og_type":"article","og_title":"IIS Site Creation Using Just PowerShell - Angry Sysadmins","og_description":"Here I&#8217;ll be going in-depth on creating an IIS site solely using PowerShell commands (CLI or bust). Specifically I&#8217;ll go over creating an FTP site, but many of the steps and logic behind them are transferable to creating any other IIS site. Commands will be in bold. You may be asking why anyone would want Read More &raquo;","og_url":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/","og_site_name":"Angry Sysadmins","article_published_time":"2019-01-22T06:09:37+00:00","article_modified_time":"2019-01-24T01:25:06+00:00","og_image":[{"url":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/getfeature.png","type":"","width":"","height":""}],"author":"James Block","twitter_card":"summary_large_image","twitter_misc":{"Written by":"James Block","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/#article","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/"},"author":{"name":"James Block","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/901e72ffa6764487e5a6a8feedf296f7"},"headline":"IIS Site Creation Using Just PowerShell","datePublished":"2019-01-22T06:09:37+00:00","dateModified":"2019-01-24T01:25:06+00:00","mainEntityOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/"},"wordCount":664,"commentCount":0,"image":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/getfeature.png","keywords":["FTP","IIS","Powershell","Scripting","Windows"],"articleSection":["IIS","Powershell","Scripting","Windows"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/","url":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/","name":"IIS Site Creation Using Just PowerShell - Angry Sysadmins","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/#website"},"primaryImageOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/#primaryimage"},"image":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/getfeature.png","datePublished":"2019-01-22T06:09:37+00:00","dateModified":"2019-01-24T01:25:06+00:00","author":{"@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/901e72ffa6764487e5a6a8feedf296f7"},"breadcrumb":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/#primaryimage","url":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/getfeature.png","contentUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2018\/12\/getfeature.png","width":678,"height":663},{"@type":"BreadcrumbList","@id":"https:\/\/angrysysadmins.tech\/index.php\/2019\/01\/suser\/iis-site-creation-using-just-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/angrysysadmins.tech\/"},{"@type":"ListItem","position":2,"name":"IIS Site Creation Using Just PowerShell"}]},{"@type":"WebSite","@id":"https:\/\/angrysysadmins.tech\/#website","url":"https:\/\/angrysysadmins.tech\/","name":"Angry Sysadmins","description":"A site full of angry sysadmins here to vent and help","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/angrysysadmins.tech\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/901e72ffa6764487e5a6a8feedf296f7","name":"James Block","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0fdef63409b05fc72fdb87c1525848297b0087287f5d736b8e8480e4a20d6223?s=96&d=mm&r=gb49c11603f13a9b74c698d94a28349eb","url":"https:\/\/secure.gravatar.com\/avatar\/0fdef63409b05fc72fdb87c1525848297b0087287f5d736b8e8480e4a20d6223?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0fdef63409b05fc72fdb87c1525848297b0087287f5d736b8e8480e4a20d6223?s=96&d=mm&r=g","caption":"James Block"},"description":"Netfilter's very own Anubis. Odd job IT. Over the top data and disk destruction. Security\/privacy oriented. I can pick your door lock pretty fast, but I can unlock your heart even faster.","url":"https:\/\/angrysysadmins.tech\/index.php\/author\/suser\/"}]}},"_links":{"self":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/91","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/comments?post=91"}],"version-history":[{"count":39,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/91\/revisions"}],"predecessor-version":[{"id":331,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/91\/revisions\/331"}],"wp:attachment":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/media?parent=91"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/categories?post=91"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/tags?post=91"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/coauthors?post=91"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}