{"id":18915,"date":"2015-09-22T16:13:22","date_gmt":"2015-09-22T15:13:22","guid":{"rendered":"https:\/\/aidanfinn.com\/?p=18915"},"modified":"2015-09-23T09:45:45","modified_gmt":"2015-09-23T08:45:45","slug":"logging-into-windows-server-containers","status":"publish","type":"post","link":"https:\/\/aidanfinn.com\/?p=18915","title":{"rendered":"Logging Into Windows Server Containers"},"content":{"rendered":"<p>How do you log into a container to install software? Ah \u2026 you don\u2019t actually log into a container because a container is not a virtual machine. Confusing? Slightly!<\/p>\n<p>What you actually do is remotely execute commands inside of a container; this is actually something like PowerShell Direct, a new feature in Windows Server 2016 (WS2016).<\/p>\n<p>There are two ways to run commands inside of a container.<\/p>\n<h2>Which Container?<\/h2>\n<p>In Technical Preview 3 (TPv3), the methods we will use to execute commands inside of a container don\u2019t use the name of the container; instead they use a unique container ID. This is because containers can have duplicate names \u2013 I really don\u2019t like that!<\/p>\n<p>So, if you want to know which container you\u2019re targeting then do something along the lines of the following to store the container ID. The first creates a new container and stores the resulting container\u2019s metadata in a variable object called $container.<\/p>\n<p>$Container = New-Container -Name TestContainer -ContainerImageName WindowsServerCore<\/p>\n<p><em>Note that I didn\u2019t connect this container to a virtual switch!<\/em><\/p>\n<p>The following example retrieves a container, assuming that it has a unique name.<\/p>\n<p>$Container = Get-Container TestContainer<\/p>\n<h2>Invoke-Command<\/h2>\n<p>If you want to fire a single command into a container then Invoke-Command is the cmdlet to use. This method sends a single instruction into a virtual machine. This can be a command or a script block. Here\u2019s a script block example:<\/p>\n<p>Invoke-Command -ContainerID $Container.ContainerId -RunAsAdministrator -ScriptBlock { New-Item -Path C:\\RemoteTest -ItemType Directory }<\/p>\n<p>Note how I\u2019m using the ContainerID attribute of $Container to identify the container.<\/p>\n<p>The nice thing about Invoke-Command is that it is not interactive; the command remotely runs the script block without an interactive login. That makes Invoke-Command perfect for scripting; you write a script that deploys a container, starts it, does some stuff inside of the container, and then configures networking in the VM host. Lots of nice automation, there!<\/p>\n<h2>Enter-PSSession<\/h2>\n<p>If you want an interactive session with a container then Enter-PSSession is the way to go. Using this cmdlet you get a PowerShell session in the container where you can run commands and see the results. This is great for once-off stuff and troubleshooting, but it\u2019s no good for automation\/scripting.<\/p>\n<p>Enter-PSSession -ContainerID $Container.ContainerId \u2013RunAsAdministrator<\/p>\n<p>Warning &#8211; In TPv3 we&#8217;ve seen that rushing into running this cmdlet after creating your new container can lead to an <a href=\"https:\/\/aidanfinn.com\/?p=18921\" target=\"_blank\">error<\/a>. Wait a few seconds before trying to connect to the VM.<\/p>\n<h2>No Network Required!<\/h2>\n<p>These methods are using something PowerShell Direct, a new feature in WS2016 &#8211; it&#8217;s actually PowerShell via a named pipe. The above example deliberately created a VM that has no networking. I can still run commands inside of the container or get an interactive PowerShell session inside of the container without connectivity &#8211; I just need to be able to get onto the VM host.<\/p>\n<div id=\"scid:0767317B-992E-4b12-91E0-4F059A8CECA8:42fedf2a-3d4d-49db-b32e-3a6e6860e416\" class=\"wlWriterEditableSmartContent\" style=\"float: none; margin: 0px; display: inline; padding: 0px;\">Technorati Tags: <a href=\"http:\/\/technorati.com\/tags\/Windows+Server+2016\" rel=\"tag\">Windows Server 2016<\/a>,<a href=\"http:\/\/technorati.com\/tags\/Hyper-V\" rel=\"tag\">Hyper-V<\/a>,<a href=\"http:\/\/technorati.com\/tags\/Containers\" rel=\"tag\">Containers<\/a>,<a href=\"http:\/\/technorati.com\/tags\/Virtualisation\" rel=\"tag\">Virtualisation<\/a>,<a href=\"http:\/\/technorati.com\/tags\/PowerShell\" rel=\"tag\">PowerShell<\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>How do you log into a container to install software? Ah \u2026 you don\u2019t actually log into a container because a container is not a virtual machine. Confusing? Slightly! What you actually do is remotely execute commands inside of a container; this is actually something like PowerShell Direct, a new feature in Windows Server 2016 &hellip; <a href=\"https:\/\/aidanfinn.com\/?p=18915\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Logging Into Windows Server Containers&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":18917,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[20],"tags":[143,181,87,195,137],"class_list":["post-18915","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hyper-v","tag-containers","tag-hyper-v","tag-powershell","tag-virtualisation","tag-windows-server-2016"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"This post explains how you can connect to a container to do operational and administrative tasks using remote PowerShell cmdlets.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"AFinn\"\/>\n\t<meta name=\"google-site-verification\" content=\"TDKjbi2McB2eLIfL6KwPB3aQqv5E-mbcb2QYIcovGaI\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/aidanfinn.com\/?p=18915\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_GB\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Aidan Finn, IT Pro - A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...\" \/>\n\t\t<meta property=\"og:type\" content=\"activity\" \/>\n\t\t<meta property=\"og:title\" content=\"Logging Into Windows Server Containers | Aidan Finn, IT Pro\" \/>\n\t\t<meta property=\"og:description\" content=\"This post explains how you can connect to a container to do operational and administrative tasks using remote PowerShell cmdlets.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/aidanfinn.com\/?p=18915\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@joe_elway\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Logging Into Windows Server Containers | Aidan Finn, IT Pro\" \/>\n\t\t<meta name=\"twitter:description\" content=\"This post explains how you can connect to a container to do operational and administrative tasks using remote PowerShell cmdlets.\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@joe_elway\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#article\",\"name\":\"Logging Into Windows Server Containers | Aidan Finn, IT Pro\",\"headline\":\"Logging Into Windows Server Containers\",\"author\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/wp-content\\\/uploads\\\/2015\\\/09\\\/14369663877_fefcb5c1df_z_d1.jpg\",\"width\":640,\"height\":427,\"caption\":\"[Image credit: www.GlynLowe.com, https:\\\/\\\/www.flickr.com\\\/photos\\\/glynlowe\\\/]\"},\"datePublished\":\"2015-09-22T16:13:22+01:00\",\"dateModified\":\"2015-09-23T09:45:45+01:00\",\"inLanguage\":\"en-GB\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#webpage\"},\"articleSection\":\"Hyper-V, Containers, Hyper-V, PowerShell, Virtualisation, Windows Server 2016\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/aidanfinn.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20#listItem\",\"name\":\"Hyper-V\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20#listItem\",\"position\":2,\"name\":\"Hyper-V\",\"item\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#listItem\",\"name\":\"Logging Into Windows Server Containers\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#listItem\",\"position\":3,\"name\":\"Logging Into Windows Server Containers\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20#listItem\",\"name\":\"Hyper-V\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#person\",\"name\":\"AFinn\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"AFinn\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1\",\"name\":\"AFinn\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"AFinn\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#webpage\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915\",\"name\":\"Logging Into Windows Server Containers | Aidan Finn, IT Pro\",\"description\":\"This post explains how you can connect to a container to do operational and administrative tasks using remote PowerShell cmdlets.\",\"inLanguage\":\"en-GB\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/wp-content\\\/uploads\\\/2015\\\/09\\\/14369663877_fefcb5c1df_z_d1.jpg\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915\\\/#mainImage\",\"width\":640,\"height\":427,\"caption\":\"[Image credit: www.GlynLowe.com, https:\\\/\\\/www.flickr.com\\\/photos\\\/glynlowe\\\/]\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=18915#mainImage\"},\"datePublished\":\"2015-09-22T16:13:22+01:00\",\"dateModified\":\"2015-09-23T09:45:45+01:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#website\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/\",\"name\":\"Aidan Finn, IT Pro\",\"description\":\"A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...\",\"inLanguage\":\"en-GB\",\"publisher\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Logging Into Windows Server Containers | Aidan Finn, IT Pro","description":"This post explains how you can connect to a container to do operational and administrative tasks using remote PowerShell cmdlets.","canonical_url":"https:\/\/aidanfinn.com\/?p=18915","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"TDKjbi2McB2eLIfL6KwPB3aQqv5E-mbcb2QYIcovGaI","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aidanfinn.com\/?p=18915#article","name":"Logging Into Windows Server Containers | Aidan Finn, IT Pro","headline":"Logging Into Windows Server Containers","author":{"@id":"https:\/\/aidanfinn.com\/?author=1#author"},"publisher":{"@id":"https:\/\/aidanfinn.com\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/09\/14369663877_fefcb5c1df_z_d1.jpg","width":640,"height":427,"caption":"[Image credit: www.GlynLowe.com, https:\/\/www.flickr.com\/photos\/glynlowe\/]"},"datePublished":"2015-09-22T16:13:22+01:00","dateModified":"2015-09-23T09:45:45+01:00","inLanguage":"en-GB","mainEntityOfPage":{"@id":"https:\/\/aidanfinn.com\/?p=18915#webpage"},"isPartOf":{"@id":"https:\/\/aidanfinn.com\/?p=18915#webpage"},"articleSection":"Hyper-V, Containers, Hyper-V, PowerShell, Virtualisation, Windows Server 2016"},{"@type":"BreadcrumbList","@id":"https:\/\/aidanfinn.com\/?p=18915#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/aidanfinn.com#listItem","position":1,"name":"Home","item":"https:\/\/aidanfinn.com","nextItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?cat=20#listItem","name":"Hyper-V"}},{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?cat=20#listItem","position":2,"name":"Hyper-V","item":"https:\/\/aidanfinn.com\/?cat=20","nextItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?p=18915#listItem","name":"Logging Into Windows Server Containers"},"previousItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?p=18915#listItem","position":3,"name":"Logging Into Windows Server Containers","previousItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?cat=20#listItem","name":"Hyper-V"}}]},{"@type":"Person","@id":"https:\/\/aidanfinn.com\/#person","name":"AFinn","image":{"@type":"ImageObject","@id":"https:\/\/aidanfinn.com\/?p=18915#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g","width":96,"height":96,"caption":"AFinn"}},{"@type":"Person","@id":"https:\/\/aidanfinn.com\/?author=1#author","url":"https:\/\/aidanfinn.com\/?author=1","name":"AFinn","image":{"@type":"ImageObject","@id":"https:\/\/aidanfinn.com\/?p=18915#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g","width":96,"height":96,"caption":"AFinn"}},{"@type":"WebPage","@id":"https:\/\/aidanfinn.com\/?p=18915#webpage","url":"https:\/\/aidanfinn.com\/?p=18915","name":"Logging Into Windows Server Containers | Aidan Finn, IT Pro","description":"This post explains how you can connect to a container to do operational and administrative tasks using remote PowerShell cmdlets.","inLanguage":"en-GB","isPartOf":{"@id":"https:\/\/aidanfinn.com\/#website"},"breadcrumb":{"@id":"https:\/\/aidanfinn.com\/?p=18915#breadcrumblist"},"author":{"@id":"https:\/\/aidanfinn.com\/?author=1#author"},"creator":{"@id":"https:\/\/aidanfinn.com\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/09\/14369663877_fefcb5c1df_z_d1.jpg","@id":"https:\/\/aidanfinn.com\/?p=18915\/#mainImage","width":640,"height":427,"caption":"[Image credit: www.GlynLowe.com, https:\/\/www.flickr.com\/photos\/glynlowe\/]"},"primaryImageOfPage":{"@id":"https:\/\/aidanfinn.com\/?p=18915#mainImage"},"datePublished":"2015-09-22T16:13:22+01:00","dateModified":"2015-09-23T09:45:45+01:00"},{"@type":"WebSite","@id":"https:\/\/aidanfinn.com\/#website","url":"https:\/\/aidanfinn.com\/","name":"Aidan Finn, IT Pro","description":"A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...","inLanguage":"en-GB","publisher":{"@id":"https:\/\/aidanfinn.com\/#person"}}]},"og:locale":"en_GB","og:site_name":"Aidan Finn, IT Pro - A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...","og:type":"activity","og:title":"Logging Into Windows Server Containers | Aidan Finn, IT Pro","og:description":"This post explains how you can connect to a container to do operational and administrative tasks using remote PowerShell cmdlets.","og:url":"https:\/\/aidanfinn.com\/?p=18915","twitter:card":"summary","twitter:site":"@joe_elway","twitter:title":"Logging Into Windows Server Containers | Aidan Finn, IT Pro","twitter:description":"This post explains how you can connect to a container to do operational and administrative tasks using remote PowerShell cmdlets.","twitter:creator":"@joe_elway"},"aioseo_meta_data":{"post_id":"18915","title":null,"description":"This post explains how you can connect to a container to do operational and administrative tasks using remote PowerShell cmdlets.","keywords":[{"label":"Containers","value":"Containers"},{"label":"Windows Server 2016","value":"Windows Server 2016"},{"label":"Windows Server Containers","value":"Windows Server Containers"},{"label":"WS2016","value":"WS2016"},{"label":"Technical Preview 3","value":"Technical Preview 3"},{"label":"TPv3","value":"TPv3"},{"label":"TP3","value":"TP3"},{"label":"Technical Preview","value":"Technical Preview"},{"label":"PowerShell","value":"PowerShell"},{"label":"Remote Administration","value":"Remote Administration"},{"label":"Administration","value":"Administration"},{"label":"Log in","value":"Log in"},{"label":"Invoke-Command","value":"Invoke-Command"},{"label":"Enter-PSSession","value":"Enter-PSSession"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"activity","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[],"defaultGraph":"","defaultPostTypeGraph":""},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 03:53:22","updated":"2025-06-04 17:00:51","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/aidanfinn.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/aidanfinn.com\/?cat=20\" title=\"Hyper-V\">Hyper-V<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tLogging Into Windows Server Containers\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/aidanfinn.com"},{"label":"Hyper-V","link":"https:\/\/aidanfinn.com\/?cat=20"},{"label":"Logging Into Windows Server Containers","link":"https:\/\/aidanfinn.com\/?p=18915"}],"jetpack_featured_media_url":"https:\/\/aidanfinn.com\/wp-content\/uploads\/2015\/09\/14369663877_fefcb5c1df_z_d1.jpg","amp_enabled":true,"_links":{"self":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts\/18915","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=18915"}],"version-history":[{"count":5,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts\/18915\/revisions"}],"predecessor-version":[{"id":18939,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts\/18915\/revisions\/18939"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/media\/18917"}],"wp:attachment":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=18915"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=18915"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=18915"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}