{"id":555,"date":"2018-09-04T08:00:55","date_gmt":"2018-09-04T14:00:55","guid":{"rendered":"https:\/\/practicalpowershell.com\/?p=555"},"modified":"2020-03-14T14:20:46","modified_gmt":"2020-03-14T20:20:46","slug":"event-log-configuration","status":"publish","type":"post","link":"https:\/\/practicalpowershell.com\/event-log-configuration\/","title":{"rendered":"Event Log Configuration"},"content":{"rendered":"<p>Production servers require a lot of attention and configuration before they are ready to be put into service. For this article we&#8217;ll work on an oft overlooked configuration item for new servers &#8211; Event Logs. Why event Logs? Event Logs are one of the first places a server admin looks in order to troubleshoot a server issue or confirm a particular action has occurred.<br \/>\nCore Event Logs on a Windows server are Application, Security and System. These three are typically also the first place to begin troubleshooting a particular issue with a server:<br \/>\n<a href=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/EventLogs.jpg?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/EventLogs.jpg?resize=249%2C189&#038;ssl=1\" alt=\"\" width=\"249\" height=\"189\" class=\"aligncenter size-full wp-image-556\" \/><\/a><br \/>\nHow can we manipulate and query these log files with PowerShell?<BR><br \/>\n<em>PowerShell<\/em><BR><br \/>\nWhat PowerShell cmdlets exist for manipulating Event Logs? These cmdlets can be found with the Get-Command:<br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\nGet-Command *eventLog*<br \/>\n[\/sourcecode]<br \/>\nThis reveals nine PowerShell cmdlets:<br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\nGet-EventLogLevel<br \/>\nSet-EventLogLevel<br \/>\nClear-EventLog<br \/>\nGet-EventLog<br \/>\nLimit-EventLog<br \/>\nNew-EventLog<br \/>\nRemove-EventLog<br \/>\nShow-EventLog<br \/>\nWrite-EventLog<br \/>\n[\/sourcecode]<br \/>\nWhen I first saw these cmdlets, the one cmdlet that stuck out was the &#8216;limit-eventlog&#8217; cmdlet. Limit is not a typical verb used in Microsoft PowerShell. If we were creating a standardized naming convention I would think these verbs would do &#8211; Get, New, Remove, Set. Others listed make sense for their particular function &#8211; Clear-EventLog and Write-EventLog. However I need to resize the logs, which cmldet do I choose since there is not Set-EventLog? Limit-EventLog is the cmdlet we need to make these changes.<br \/>\nFirst we can review the PowerShell help for the cmdlet, like so:<br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\nGet-Help Limit-EventLog -Full<br \/>\n[\/sourcecode]<br \/>\nParameters for Limit-EventLog:<br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\nLogName<br \/>\nComputerName<br \/>\nRetentionDays<br \/>\nOverflowAction &#8211; OverwriteOlder | OverwriteAsNeeded | DoNotOverwrite<br \/>\nMaximumSize<br \/>\n[\/sourcecode]<br \/>\nFor an example environment I want to configure the mail Windows Event Logs to 100MB and to over write as the log needs too to keep the size at 100MB. We can simply use three of the above parameters to do this:<BR><br \/>\n<em>LogName<\/em> &#8211; This switch lets you specify which log file to use. It is required.<br \/>\n<em>OverflowAction <\/em>&#8211; specified how to handle this in the case where the events in the log exceed a certain size (MaixumumSize) or a certain number of days (RetentionDays).<br \/>\n<em>MaximumSize<\/em> &#8211; choose the maximum size of the event log you specified with &#8211; LogName. Caveat here, must be divisible by 32 Bytes. So 100MB, would be 100032kb.<BR><br \/>\nFor a sample setup, the IT manager would like to set each server&#8217;s three core Event Logs to 100MB in size and that the Event Logs should be rolling logs where newer events overwrite older events. In terms of a single server, we can plug in the log name, maximum size and over flow action into three different cmdlets:<br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\nLimit-EventLog -LogName Application -MaximumSize 100032Kb -OverflowAction OverwriteAsNeeded<br \/>\nLimit-EventLog -LogName System -MaximumSize 100032Kb -OverflowAction OverwriteAsNeeded<br \/>\nLimit-EventLog -LogName Security -MaximumSize 100032Kb -OverflowAction OverwriteAsNeeded<br \/>\n[\/sourcecode]<br \/>\nNow if we wanted to apply this to a group of servers, we can use a CSV files and a Foreach loop to apply these settings en masse:<br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\n$CSV = Import-CSV &#039;Servers.Csv&#039;<br \/>\nForeach ($Line in $CSV) {<br \/>\n$Server = $Line.Server<br \/>\nLimit-EventLog -ComputerName $Server -LogName Application -MaximumSize 100032Kb -OverflowAction OverwriteAsNeeded<br \/>\nLimit-EventLog -ComputerName $Server -LogName System -MaximumSize 100032Kb -OverflowAction OverwriteAsNeeded<br \/>\nLimit-EventLog -ComputerName $Server -LogName Security -MaximumSize 100032Kb -OverflowAction OverwriteAsNeeded<br \/>\n}<br \/>\n[\/sourcecode]<br \/>\nWhile 100 MB is a good size for event logs, the absolute limit is 4GB for each and up to 16GB for a modern Windows OS (in 2018). For your own environment there could be other factors at play in terms of how a server&#8217;s Event Logs should be sized:<\/p>\n<ul>\n<li>Do you use centralized logging?\n<li>Is 100MB sufficient for troubleshooting, or are events being overwritten within a day or 12 hours where the events logged are not sufficient for troubleshooting server issues.\n<\/ul>\n<p>Additional Event Logs can be found with &#8216;Get-EventLog -List&#8217;. A sample listing from a Windows 2019 Server (with Exchange installed on it):<br \/>\n<a href=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/AllEventLog.jpg?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/AllEventLog.jpg?resize=640%2C293&#038;ssl=1\" alt=\"\" width=\"640\" height=\"293\" class=\"aligncenter size-full wp-image-557\" srcset=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/AllEventLog.jpg?w=642&amp;ssl=1 642w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/AllEventLog.jpg?resize=300%2C137&amp;ssl=1 300w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/AllEventLog.jpg?resize=600%2C275&amp;ssl=1 600w\" sizes=\"auto, (max-width: 640px) 100vw, 640px\" \/><\/a><br \/>\nIn summary, changing your event log sizes can be performed in PowerShell and should be sized \/ customized for your environment. In addition to using PowerShell, you can utilize Desired State Configuration (DSC) as outlined here &#8211; <a href=\"https:\/\/blogs.technet.microsoft.com\/heyscriptingguy\/2014\/10\/16\/use-powershell-and-dsc-to-enable-logging\/\">Scripting Guys<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Production servers require a lot of attention and configuration before they are ready to be put into service. For this article we&#8217;ll work on an oft overlooked configuration item for new servers &#8211; Event Logs. Why event Logs? Event Logs are one of the first places a server admin looks in order to troubleshoot a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rop_custom_images_group":[],"rop_custom_messages_group":[],"rop_publish_now":"initial","rop_publish_now_accounts":[],"rop_publish_now_history":[],"rop_publish_now_status":"pending","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-555","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Event Log Configuration - Practical 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:\/\/practicalpowershell.com\/event-log-configuration\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Event Log Configuration - Practical PowerShell\" \/>\n<meta property=\"og:description\" content=\"Production servers require a lot of attention and configuration before they are ready to be put into service. For this article we&#8217;ll work on an oft overlooked configuration item for new servers &#8211; Event Logs. Why event Logs? Event Logs are one of the first places a server admin looks in order to troubleshoot a [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/practicalpowershell.com\/event-log-configuration\/\" \/>\n<meta property=\"og:site_name\" content=\"Practical PowerShell\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-04T14:00:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-03-14T20:20:46+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/EventLogs.jpg\" \/>\n<meta name=\"author\" content=\"damian\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"damian\" \/>\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:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/\"},\"author\":{\"name\":\"damian\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#\\\/schema\\\/person\\\/4d0733c81966e744aabbb49f56d64deb\"},\"headline\":\"Event Log Configuration\",\"datePublished\":\"2018-09-04T14:00:55+00:00\",\"dateModified\":\"2020-03-14T20:20:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/\"},\"wordCount\":675,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#\\\/schema\\\/person\\\/4d0733c81966e744aabbb49f56d64deb\"},\"image\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/practicalpowershell.com\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/EventLogs.jpg\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/\",\"url\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/\",\"name\":\"Event Log Configuration - Practical PowerShell\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/practicalpowershell.com\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/EventLogs.jpg\",\"datePublished\":\"2018-09-04T14:00:55+00:00\",\"dateModified\":\"2020-03-14T20:20:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/practicalpowershell.com\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/EventLogs.jpg?fit=249%2C189&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/practicalpowershell.com\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/EventLogs.jpg?fit=249%2C189&ssl=1\",\"width\":249,\"height\":189},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/event-log-configuration\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/practicalpowershell.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Event Log Configuration\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#website\",\"url\":\"https:\\\/\\\/practicalpowershell.com\\\/\",\"name\":\"Practical PowerShell\",\"description\":\"PowerShell books written by experts\",\"publisher\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#\\\/schema\\\/person\\\/4d0733c81966e744aabbb49f56d64deb\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/practicalpowershell.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#\\\/schema\\\/person\\\/4d0733c81966e744aabbb49f56d64deb\",\"name\":\"damian\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g\",\"caption\":\"damian\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Event Log Configuration - Practical 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:\/\/practicalpowershell.com\/event-log-configuration\/","og_locale":"en_US","og_type":"article","og_title":"Event Log Configuration - Practical PowerShell","og_description":"Production servers require a lot of attention and configuration before they are ready to be put into service. For this article we&#8217;ll work on an oft overlooked configuration item for new servers &#8211; Event Logs. Why event Logs? Event Logs are one of the first places a server admin looks in order to troubleshoot a [&hellip;]","og_url":"https:\/\/practicalpowershell.com\/event-log-configuration\/","og_site_name":"Practical PowerShell","article_published_time":"2018-09-04T14:00:55+00:00","article_modified_time":"2020-03-14T20:20:46+00:00","og_image":[{"url":"https:\/\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/EventLogs.jpg","type":"","width":"","height":""}],"author":"damian","twitter_card":"summary_large_image","twitter_misc":{"Written by":"damian","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/#article","isPartOf":{"@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/"},"author":{"name":"damian","@id":"https:\/\/practicalpowershell.com\/#\/schema\/person\/4d0733c81966e744aabbb49f56d64deb"},"headline":"Event Log Configuration","datePublished":"2018-09-04T14:00:55+00:00","dateModified":"2020-03-14T20:20:46+00:00","mainEntityOfPage":{"@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/"},"wordCount":675,"commentCount":0,"publisher":{"@id":"https:\/\/practicalpowershell.com\/#\/schema\/person\/4d0733c81966e744aabbb49f56d64deb"},"image":{"@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/#primaryimage"},"thumbnailUrl":"https:\/\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/EventLogs.jpg","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/practicalpowershell.com\/event-log-configuration\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/","url":"https:\/\/practicalpowershell.com\/event-log-configuration\/","name":"Event Log Configuration - Practical PowerShell","isPartOf":{"@id":"https:\/\/practicalpowershell.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/#primaryimage"},"image":{"@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/#primaryimage"},"thumbnailUrl":"https:\/\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/EventLogs.jpg","datePublished":"2018-09-04T14:00:55+00:00","dateModified":"2020-03-14T20:20:46+00:00","breadcrumb":{"@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/practicalpowershell.com\/event-log-configuration\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/#primaryimage","url":"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/EventLogs.jpg?fit=249%2C189&ssl=1","contentUrl":"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2020\/03\/EventLogs.jpg?fit=249%2C189&ssl=1","width":249,"height":189},{"@type":"BreadcrumbList","@id":"https:\/\/practicalpowershell.com\/event-log-configuration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/practicalpowershell.com\/"},{"@type":"ListItem","position":2,"name":"Event Log Configuration"}]},{"@type":"WebSite","@id":"https:\/\/practicalpowershell.com\/#website","url":"https:\/\/practicalpowershell.com\/","name":"Practical PowerShell","description":"PowerShell books written by experts","publisher":{"@id":"https:\/\/practicalpowershell.com\/#\/schema\/person\/4d0733c81966e744aabbb49f56d64deb"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/practicalpowershell.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/practicalpowershell.com\/#\/schema\/person\/4d0733c81966e744aabbb49f56d64deb","name":"damian","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g","caption":"damian"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g"}}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/posts\/555","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/comments?post=555"}],"version-history":[{"count":2,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/posts\/555\/revisions"}],"predecessor-version":[{"id":559,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/posts\/555\/revisions\/559"}],"wp:attachment":[{"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/media?parent=555"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/categories?post=555"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/tags?post=555"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}