{"id":506,"date":"2008-07-22T06:00:04","date_gmt":"2008-07-22T14:00:04","guid":{"rendered":"http:\/\/www.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/"},"modified":"2008-07-22T04:06:12","modified_gmt":"2008-07-22T12:06:12","slug":"fun-with-history","status":"publish","type":"post","link":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/","title":{"rendered":"Fun with History"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" height=\"135\" align=\"left\" width=\"240\" src=\"http:\/\/route66.backroadsplanet.com\/imagescars\/c-mater.jpeg\" style=\"margin: 0px 5px 5px 0px;\" alt=\"\" \/> In the Pixar film <a target=\"_blank\" href=\"http:\/\/www.pixar.com\/featurefilms\/cars\/\">Cars<\/a>, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, &quot;Don&#8217;t need to know where I&#8217;m going as long as I know where I&#8217;ve been.&quot; Probably not the exact quote but the point is if you know what you&#8217;ve done or where you&#8217;ve been it makes it very easy to know where you&#8217;re going or what to do next. In PowerShell you can take advantage of the shell&#8217;s history objects to speed up what you want to do next.<\/p>\n<p>Every PowerShell expression is stored as a history object which you can see by running Get-History.&nbsp; Or I like to use the alias &#8216;h&#8217;. You&#8217;ll typically see the last 30 or so PowerShell expressions. The total size of your history buffer is controlled by the $MaximumHistoryCount variable which has a default value of 64.&nbsp; In my PowerShell profile I increase it to 256.<\/p>\n<p>$maximumhistorycount=256<\/p>\n<p>To execute any past command use the Invoke-History cmdlet specifying the number of the history item you wish to re-execute. I prefer to use the alias &#8216;r&#8217;. The command will run immediately. There is no provision for bringing up the expression and editing it first. Although you can use -whatif to see what command would execute.<\/p>\n<p>If you want to see earlier history items, you can either specify a specific history number<\/p>\n<table border=\"1\">\n<tbody>\n<tr>\n<td bgcolor=\"blue\">\n<pre><font color=\"#ffffff\">PS C:\\&gt; h 35<br \/><br \/>  Id CommandLine<br \/>  -- -----------<br \/>  35 dir | remove-item -whatif -outvariable foofiles<br \/><br \/><br \/>PS C:\\&gt;<\/font><\/pre>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Or you can specify a range:<\/p>\n<table border=\"1\">\n<tbody>\n<tr>\n<td bgcolor=\"blue\">\n<pre><font color=\"#ffffff\">PS C:\\&gt; h (35..40)<br \/><br \/>  Id CommandLine<br \/>  -- -----------<br \/>  35 dir | remove-item -whatif -outvariable foofiles<br \/>  36 $foofiles<br \/>  37 dir *.jdh<br \/>  38 dir *.jdh | remove-item -whatif -outvariable foofiles<br \/>  39 $foofiles<br \/>  40 copy *.jdh *.abc<br \/><br \/><br \/>PS C:\\&gt;<\/font><\/pre>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>To see the last X number of items use the -count parameter:<\/p>\n<p>PS C:\\&gt; h -count 60<\/p>\n<p>Finally, the history object itself has some additional properties you might find helpful. Here&#8217;s an example:<\/p>\n<table border=\"1\">\n<tbody>\n<tr>\n<td bgcolor=\"blue\">\n<pre><font color=\"#ffffff\">PS C:\\&gt; h 101 | select *<br \/><br \/><br \/>Id                 : 101<br \/>CommandLine        : $f=gci &quot;c:\\users\\jeff\\documents&quot; -recurse<br \/>ExecutionStatus    : Completed<br \/>StartExecutionTime : 7\/18\/2008 12:42:54 PM<br \/>EndExecutionTime   : 7\/18\/2008 12:42:57 PM<br \/><\/font><\/pre>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>I can see that it took 3 seconds to run Get-ChildItem on my Documents folder. Or if I really want to get granular:<\/p>\n<table border=\"1\">\n<tbody>\n<tr>\n<td bgcolor=\"blue\">\n<pre><font color=\"#ffffff\">PS C:\\&gt; (h 101).EndExecutiontime - (h 101).StartExecutiontime<br \/><br \/><br \/>Days              : 0<br \/>Hours             : 0<br \/>Minutes           : 0<br \/>Seconds           : 3<br \/>Milliseconds      : 285<br \/>Ticks             : 32853285<br \/>TotalDays         : 3.80246354166667E-05<br \/>TotalHours        : 0.00091259125<br \/>TotalMinutes      : 0.054755475<br \/>TotalSeconds      : 3.2853285<br \/>TotalMilliseconds : 3285.3285<br \/><\/font><\/pre>\n<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>So the next time you&#8217;re wondering where you might be going in PowerShell, take a look at where you&#8217;ve been.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the Pixar film Cars, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, &#8220;Don&#8217;t need to know where I&#8217;m going as long as I know where I&#8217;ve been.&#8221; Probably not the exact quote but the point is if you know what you&#8217;ve done or where you&#8217;ve been it makes it very easy to know where you&#8217;re going or what to do next. In PowerShell you can take advantage of the shell&#8217;s history objects to speed up what you want to do next.<\/p>\n","protected":false},"author":3,"featured_media":0,"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,"footnotes":""},"categories":[25],"tags":[150,239,238,240,28],"class_list":["post-506","post","type-post","status-publish","format-standard","hentry","category-windows-powershell","tag-cmdlet","tag-get-history","tag-history","tag-invoke-history","tag-powershell"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In the Pixar film Cars, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, &quot;Don&#039;t need to know where I&#039;m going as long as I know where I&#039;ve been.&quot; Probably not the exact quote but the point is if you know what you&#039;ve done or where you&#039;ve been it makes it very easy to know where you&#039;re going or what to do next. In PowerShell you can take advantage of the shell&#039;s history objects to speed up what you want to do next.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Jeffery Hicks\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"DEV SAPIEN Blog - Tools for IT Success\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Fun with History - DEV SAPIEN Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In the Pixar film Cars, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, &quot;Don&#039;t need to know where I&#039;m going as long as I know where I&#039;ve been.&quot; Probably not the exact quote but the point is if you know what you&#039;ve done or where you&#039;ve been it makes it very easy to know where you&#039;re going or what to do next. In PowerShell you can take advantage of the shell&#039;s history objects to speed up what you want to do next.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2008-07-22T14:00:04+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2008-07-22T12:06:12+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Fun with History - DEV SAPIEN Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In the Pixar film Cars, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, &quot;Don&#039;t need to know where I&#039;m going as long as I know where I&#039;ve been.&quot; Probably not the exact quote but the point is if you know what you&#039;ve done or where you&#039;ve been it makes it very easy to know where you&#039;re going or what to do next. In PowerShell you can take advantage of the shell&#039;s history objects to speed up what you want to do next.\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/#blogposting\",\"name\":\"Fun with History - DEV SAPIEN Blog\",\"headline\":\"Fun with History\",\"author\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/jeffery-hicks\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"http:\\\/\\\/route66.backroadsplanet.com\\\/imagescars\\\/c-mater.jpeg\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/#articleImage\"},\"datePublished\":\"2008-07-22T06:00:04-07:00\",\"dateModified\":\"2008-07-22T04:06:12-07:00\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/#webpage\"},\"articleSection\":\"Windows PowerShell, cmdlet, Get-History, History, Invoke-History, powershell\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/dev.sapien.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/windows-powershell\\\/#listItem\",\"name\":\"Windows PowerShell\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/windows-powershell\\\/#listItem\",\"position\":2,\"name\":\"Windows PowerShell\",\"item\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/windows-powershell\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/#listItem\",\"name\":\"Fun with History\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/#listItem\",\"position\":3,\"name\":\"Fun with History\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/topics\\\/windows-powershell\\\/#listItem\",\"name\":\"Windows PowerShell\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#organization\",\"name\":\"DEV SAPIEN Blog\",\"description\":\"Tools for IT Success\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/jeffery-hicks\\\/#author\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/jeffery-hicks\\\/\",\"name\":\"Jeffery Hicks\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/#webpage\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/\",\"name\":\"Fun with History - DEV SAPIEN Blog\",\"description\":\"In the Pixar film Cars, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, \\\"Don't need to know where I'm going as long as I know where I've been.\\\" Probably not the exact quote but the point is if you know what you've done or where you've been it makes it very easy to know where you're going or what to do next. In PowerShell you can take advantage of the shell's history objects to speed up what you want to do next.\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/2008\\\/07\\\/22\\\/fun-with-history\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/jeffery-hicks\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/author\\\/jeffery-hicks\\\/#author\"},\"datePublished\":\"2008-07-22T06:00:04-07:00\",\"dateModified\":\"2008-07-22T04:06:12-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/\",\"name\":\"DEV SAPIEN Blog\",\"description\":\"Tools for IT Success\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/dev.sapien.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Fun with History - DEV SAPIEN Blog","description":"In the Pixar film Cars, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, \"Don't need to know where I'm going as long as I know where I've been.\" Probably not the exact quote but the point is if you know what you've done or where you've been it makes it very easy to know where you're going or what to do next. In PowerShell you can take advantage of the shell's history objects to speed up what you want to do next.","canonical_url":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/#blogposting","name":"Fun with History - DEV SAPIEN Blog","headline":"Fun with History","author":{"@id":"https:\/\/dev.sapien.com\/blog\/author\/jeffery-hicks\/#author"},"publisher":{"@id":"https:\/\/dev.sapien.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"http:\/\/route66.backroadsplanet.com\/imagescars\/c-mater.jpeg","@id":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/#articleImage"},"datePublished":"2008-07-22T06:00:04-07:00","dateModified":"2008-07-22T04:06:12-07:00","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/#webpage"},"isPartOf":{"@id":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/#webpage"},"articleSection":"Windows PowerShell, cmdlet, Get-History, History, Invoke-History, powershell"},{"@type":"BreadcrumbList","@id":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/dev.sapien.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/#listItem","name":"Windows PowerShell"}},{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/#listItem","position":2,"name":"Windows PowerShell","item":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/","nextItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/#listItem","name":"Fun with History"},"previousItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/#listItem","position":3,"name":"Fun with History","previousItem":{"@type":"ListItem","@id":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/#listItem","name":"Windows PowerShell"}}]},{"@type":"Organization","@id":"https:\/\/dev.sapien.com\/blog\/#organization","name":"DEV SAPIEN Blog","description":"Tools for IT Success","url":"https:\/\/dev.sapien.com\/blog\/"},{"@type":"Person","@id":"https:\/\/dev.sapien.com\/blog\/author\/jeffery-hicks\/#author","url":"https:\/\/dev.sapien.com\/blog\/author\/jeffery-hicks\/","name":"Jeffery Hicks"},{"@type":"WebPage","@id":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/#webpage","url":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/","name":"Fun with History - DEV SAPIEN Blog","description":"In the Pixar film Cars, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, \"Don't need to know where I'm going as long as I know where I've been.\" Probably not the exact quote but the point is if you know what you've done or where you've been it makes it very easy to know where you're going or what to do next. In PowerShell you can take advantage of the shell's history objects to speed up what you want to do next.","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/dev.sapien.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/#breadcrumblist"},"author":{"@id":"https:\/\/dev.sapien.com\/blog\/author\/jeffery-hicks\/#author"},"creator":{"@id":"https:\/\/dev.sapien.com\/blog\/author\/jeffery-hicks\/#author"},"datePublished":"2008-07-22T06:00:04-07:00","dateModified":"2008-07-22T04:06:12-07:00"},{"@type":"WebSite","@id":"https:\/\/dev.sapien.com\/blog\/#website","url":"https:\/\/dev.sapien.com\/blog\/","name":"DEV SAPIEN Blog","description":"Tools for IT Success","inLanguage":"en-US","publisher":{"@id":"https:\/\/dev.sapien.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"DEV SAPIEN Blog - Tools for IT Success","og:type":"article","og:title":"Fun with History - DEV SAPIEN Blog","og:description":"In the Pixar film Cars, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, &quot;Don't need to know where I'm going as long as I know where I've been.&quot; Probably not the exact quote but the point is if you know what you've done or where you've been it makes it very easy to know where you're going or what to do next. In PowerShell you can take advantage of the shell's history objects to speed up what you want to do next.","og:url":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/","article:published_time":"2008-07-22T14:00:04+00:00","article:modified_time":"2008-07-22T12:06:12+00:00","twitter:card":"summary_large_image","twitter:title":"Fun with History - DEV SAPIEN Blog","twitter:description":"In the Pixar film Cars, Mater demonstrates to Lightning McQueen how to drive backwards. Lightning is astounded. Mater explains, &quot;Don't need to know where I'm going as long as I know where I've been.&quot; Probably not the exact quote but the point is if you know what you've done or where you've been it makes it very easy to know where you're going or what to do next. In PowerShell you can take advantage of the shell's history objects to speed up what you want to do next."},"aioseo_meta_data":{"post_id":"506","title":null,"description":null,"keywords":null,"keyphrases":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_custom_url":null,"og_image_custom_fields":null,"og_image_url":null,"og_image_width":null,"og_image_height":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_image_url":null,"twitter_title":null,"twitter_description":null,"schema_type":"default","schema_type_options":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"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,"limit_modified_date":false,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null,"created":"2026-08-28 14:26:48","updated":"2026-08-28 14:26:48"},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/dev.sapien.com\/blog\" 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:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/\" title=\"Windows PowerShell\">Windows PowerShell<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tFun with History\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/dev.sapien.com\/blog"},{"label":"Windows PowerShell","link":"https:\/\/dev.sapien.com\/blog\/topics\/windows-powershell\/"},{"label":"Fun with History","link":"https:\/\/dev.sapien.com\/blog\/2008\/07\/22\/fun-with-history\/"}],"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts\/506","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/comments?post=506"}],"version-history":[{"count":3,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts\/506\/revisions"}],"predecessor-version":[{"id":507,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/posts\/506\/revisions\/507"}],"wp:attachment":[{"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/media?parent=506"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/categories?post=506"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dev.sapien.com\/blog\/wp-json\/wp\/v2\/tags?post=506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}