{"id":917,"date":"2020-10-24T15:35:55","date_gmt":"2020-10-24T23:35:55","guid":{"rendered":"https:\/\/angrysysadmins.tech\/?p=917"},"modified":"2020-10-24T15:37:26","modified_gmt":"2020-10-24T23:37:26","slug":"powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder","status":"publish","type":"post","link":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/","title":{"rendered":"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder"},"content":{"rendered":"<p>Have you ever wanted to mass export virtual machines? I know I have and its infuriating that the web GUI does not have this option built into it. So I went and pulled some good ol&#8217; duct tape engineering and made a somewhat functional script for it.<\/p>\n<p>&nbsp;<\/p>\n<p>Firstly, we need to connect to the VMware vCenter server. This commandlet allows you to pass credentials in the command\/script, or by using the PowerShell equivalent of readline. So if you&#8217;re okay with being insecure and bad habits, remove the # and fill in your credentials.<\/p>\n<pre>Connect-VIServer -Server YourVcenter.full.tld #-User administrator@vsphere.local -Password Password123!<\/pre>\n<p>If you have an invalid SSL certificate, make sure to add this before the line above to ignore the issue and continue anyways:<\/p>\n<pre>Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false<\/pre>\n<p>&nbsp;<\/p>\n<p>Now we need to figure out the folder structure, creating a <code>Get-Folder \"FolderName\"<\/code> for each time we enter a folder. For mine I enter 2 folders where VM&#8217;s are contained.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-919 alignleft\" src=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/10\/Screenshot_20201022_145817.png\" alt=\"\" width=\"217\" height=\"299\" \/><\/p>\n<p>For me, this would be 2 total get folder commands. So it would be:<\/p>\n<pre>Get-Folder \"CCDC\" | Get-Folder \"Athens\"<\/pre>\n<p>We then need to get the output from that last folder and sort the output, selecting only the name.<\/p>\n<pre>| Get-VM | Select -ExpandProperty Name<\/pre>\n<p>Next, we need to format the list as a string to sort out the weirdness<\/p>\n<pre>| Out-String | Format-list<\/pre>\n<p>Next, we need to set a location of the output text file that contains all of the virtual machines we are going to export. I am using &#8220;C:\\Temp\\dump.txt&#8221;.<\/p>\n<p>I tried to use a variable, but PowerCLI had a stroke when calling that variable, so I am using an output file. If you have a method that does not need a dump file, please post it in the comments.<\/p>\n<pre>| Out-File C:\\Temp\\dump.txt<\/pre>\n<p>The complete one-liner would be:<\/p>\n<pre>Get-Folder \"CCDC\" | Get-Folder \"Athens\"| Get-VM | Select -ExpandProperty Name | Out-String | Format-list | Out-File C:\\Temp\\dump.txt\r\n<\/pre>\n<p>&nbsp;<\/p>\n<p>Now we need to load that dump file we created into a variable. Make sure to replace it with your dump file<\/p>\n<pre>$vm_names = Get-Content C:\\Temp\\dump.txt<\/pre>\n<p>&nbsp;<\/p>\n<p>Next is the fun part. Actually exporting the VM&#8217;s, or VApps as VMware calls it. From here there are some options you can add. The Export-VApp line is the actual command that exports the VM. You will need to set an output directory for this to work. In my case, it&#8217;s a network drive S:\\Athens. If you want to export all of the virtual machines at the same time, add &#8220;-RunAsync:$true&#8221; I caution against using it because it will not increase export times, as it seems there is a hard cap of about 10-20MB\/s when exporting VM&#8217;s and it is much harder to keep track of the completion process. I also disabled the creation of a separate folder for each VM. I also specified the format be OVF, which is the one that the VM is split into multiple files. If you want a single file the specify OVA.<\/p>\n<pre>foreach ($vm_name in $vm_names)\r\n{\r\nGet-VM -Name $vm_name | Shutdown-VMGuest -confirm:$false # This will shutdown the VM before export. \r\nGet-VM -Name $vm_name | Get-CDDrive | Set-CDDrive -NoMedia -confirm:$false # This will remove any CD in the drive. \r\nGet-VM -Name $vm_name | Export-VApp -Destination 'S:\\Athens' -Format OVF -CreateSeparateFolder:$false\r\n}<\/pre>\n<p>This script is pretty modular, so you could for example switch out the commands to instead of exporting a VM, change a network adapter to # port group, Bulk shutdown\/startup machines, Mass delete VM&#8217;s, etc. If you found this helpful, please consider donating to us. Our server hosting is about 15 bucks a month, So every bit helps.<\/p>\n<p>Complete script:<\/p>\n<pre>Set-PowerCLIConfiguration -InvalidCertificateAction Ignore -Confirm:$false\r\nConnect-VIServer -Server vcenter.lok.tech #-User administrator@vsphere.local #-Password\r\n\r\nGet-Folder \"Folder1\" | Get-Folder \"FolderInsideFolder1\" | Get-VM | Select -ExpandProperty Name | Out-String | Format-list | Out-File C:\\Temp\\dump.txt\r\n\r\n$vm_names = Get-Content C:\\Temp\\dump.txt\r\n\r\nforeach ($vm_name in $vm_names)\r\n{\r\nGet-VM -Name $vm_name | Shutdown-VMGuest -confirm:$false\r\nGet-VM -Name $vm_name | Get-CDDrive | Set-CDDrive -NoMedia -confirm:$false\r\nGet-VM -Name $vm_name | Export-VApp -Destination 'S:\\Athens' -Format OVF -CreateSeparateFolder:$false\r\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Have you ever wanted to mass export virtual machines? I know I have and its infuriating that the web GUI does not have this option built into it. So I went and pulled some good ol&#8217; duct tape engineering and made a somewhat functional script for it. &nbsp; Firstly, we need to connect to the <br \/><a class=\"read-more-button\" href=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/\">Read More &raquo;<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[42,11],"tags":[],"coauthors":[39],"class_list":["post-917","post","type-post","status-publish","format-standard","hentry","category-powershell","category-vmware"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder - 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\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder - Angry Sysadmins\" \/>\n<meta property=\"og:description\" content=\"Have you ever wanted to mass export virtual machines? I know I have and its infuriating that the web GUI does not have this option built into it. So I went and pulled some good ol&#8217; duct tape engineering and made a somewhat functional script for it. &nbsp; Firstly, we need to connect to the Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/\" \/>\n<meta property=\"og:site_name\" content=\"Angry Sysadmins\" \/>\n<meta property=\"article:published_time\" content=\"2020-10-24T23:35:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-10-24T23:37:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/10\/Screenshot_20201022_145817.png\" \/>\n<meta name=\"author\" content=\"Ryan Parker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ryan Parker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/\"},\"author\":{\"name\":\"Ryan Parker\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\"},\"headline\":\"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder\",\"datePublished\":\"2020-10-24T23:35:55+00:00\",\"dateModified\":\"2020-10-24T23:37:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/\"},\"wordCount\":521,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/Screenshot_20201022_145817.png\",\"articleSection\":[\"Powershell\",\"VMware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/\",\"name\":\"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder - Angry Sysadmins\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/Screenshot_20201022_145817.png\",\"datePublished\":\"2020-10-24T23:35:55+00:00\",\"dateModified\":\"2020-10-24T23:37:26+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/#\\\/schema\\\/person\\\/651321cd35645fb6a4d8a75b7bc7c199\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/#primaryimage\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/Screenshot_20201022_145817.png\",\"contentUrl\":\"https:\\\/\\\/angrysysadmins.tech\\\/wp-content\\\/uploads\\\/2020\\\/10\\\/Screenshot_20201022_145817.png\",\"width\":217,\"height\":299},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/2020\\\/10\\\/grassyloki\\\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/angrysysadmins.tech\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder\"}]},{\"@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\\\/651321cd35645fb6a4d8a75b7bc7c199\",\"name\":\"Ryan Parker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g664d0e05248e51cb1d71b3f66c6f929d\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g\",\"caption\":\"Ryan Parker\"},\"description\":\"Professionally im a Infrastructure Security Specialist. I current maintain a homelab with about 3TB of RAM, 240+ TB of storage, tons of CPU cores, and 100gbit networking backbone in the garage running up my electricity bill.\",\"url\":\"https:\\\/\\\/angrysysadmins.tech\\\/index.php\\\/author\\\/grassyloki\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder - 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\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/","og_locale":"en_US","og_type":"article","og_title":"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder - Angry Sysadmins","og_description":"Have you ever wanted to mass export virtual machines? I know I have and its infuriating that the web GUI does not have this option built into it. So I went and pulled some good ol&#8217; duct tape engineering and made a somewhat functional script for it. &nbsp; Firstly, we need to connect to the Read More &raquo;","og_url":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/","og_site_name":"Angry Sysadmins","article_published_time":"2020-10-24T23:35:55+00:00","article_modified_time":"2020-10-24T23:37:26+00:00","og_image":[{"url":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/10\/Screenshot_20201022_145817.png","type":"","width":"","height":""}],"author":"Ryan Parker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ryan Parker","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/#article","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/"},"author":{"name":"Ryan Parker","@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199"},"headline":"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder","datePublished":"2020-10-24T23:35:55+00:00","dateModified":"2020-10-24T23:37:26+00:00","mainEntityOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/"},"wordCount":521,"commentCount":0,"image":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/#primaryimage"},"thumbnailUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/10\/Screenshot_20201022_145817.png","articleSection":["Powershell","VMware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/","url":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/","name":"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder - Angry Sysadmins","isPartOf":{"@id":"https:\/\/angrysysadmins.tech\/#website"},"primaryImageOfPage":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/#primaryimage"},"image":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/#primaryimage"},"thumbnailUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/10\/Screenshot_20201022_145817.png","datePublished":"2020-10-24T23:35:55+00:00","dateModified":"2020-10-24T23:37:26+00:00","author":{"@id":"https:\/\/angrysysadmins.tech\/#\/schema\/person\/651321cd35645fb6a4d8a75b7bc7c199"},"breadcrumb":{"@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/#primaryimage","url":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/10\/Screenshot_20201022_145817.png","contentUrl":"https:\/\/angrysysadmins.tech\/wp-content\/uploads\/2020\/10\/Screenshot_20201022_145817.png","width":217,"height":299},{"@type":"BreadcrumbList","@id":"https:\/\/angrysysadmins.tech\/index.php\/2020\/10\/grassyloki\/powercli-basic-scripts-bulk-export-all-virtual-machines-in-a-folder\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/angrysysadmins.tech\/"},{"@type":"ListItem","position":2,"name":"PowerCLI Basic Scripts: Bulk Export All Virtual Machines in a Folder"}]},{"@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\/651321cd35645fb6a4d8a75b7bc7c199","name":"Ryan Parker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g664d0e05248e51cb1d71b3f66c6f929d","url":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fc12b1a02765c8017062ee6f41eb34a7b14575bcd8acd7da40e176fe8f12b10f?s=96&d=mm&r=g","caption":"Ryan Parker"},"description":"Professionally im a Infrastructure Security Specialist. I current maintain a homelab with about 3TB of RAM, 240+ TB of storage, tons of CPU cores, and 100gbit networking backbone in the garage running up my electricity bill.","url":"https:\/\/angrysysadmins.tech\/index.php\/author\/grassyloki\/"}]}},"_links":{"self":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/917","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\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/comments?post=917"}],"version-history":[{"count":11,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/917\/revisions"}],"predecessor-version":[{"id":931,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/posts\/917\/revisions\/931"}],"wp:attachment":[{"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/media?parent=917"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/categories?post=917"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/tags?post=917"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/angrysysadmins.tech\/index.php\/wp-json\/wp\/v2\/coauthors?post=917"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}