{"id":10055,"date":"2025-08-14T11:12:00","date_gmt":"2025-08-14T11:12:00","guid":{"rendered":"https:\/\/savethevideo.net\/blog\/?p=10055"},"modified":"2025-08-14T11:12:03","modified_gmt":"2025-08-14T11:12:03","slug":"how-to-use-get-childitem-in-powershell-for-file-listings","status":"publish","type":"post","link":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/","title":{"rendered":"How to Use Get-ChildItem in PowerShell for File Listings"},"content":{"rendered":"<p>PowerShell is a powerful scripting language and command-line shell designed especially for system administrators. One of the most commonly used cmdlets in PowerShell is <i>Get-ChildItem<\/i>, which allows users to list files and folders in a directory. Whether you&#8217;re managing files on a local computer or across a network, understanding how to leverage <b>Get-ChildItem<\/b> can boost your efficiency dramatically.<\/p>\n<p>At first glance, <i>Get-ChildItem<\/i> might seem like a basic command, similar to <i>dir<\/i> in the traditional Command Prompt. However, it comes with a wide array of parameters that make it incredibly versatile and powerful.<\/p>\n<h2>Basic Usage<\/h2>\n<p>To start, simply typing the following command in a PowerShell window will list all files and folders in the current directory:<\/p>\n<pre><code>Get-ChildItem<\/code><\/pre>\n<p>This returns a collection of objects representing files and folders, which you can further manipulate or filter. To look at a specific directory, supply a path:<\/p>\n<pre><code>Get-ChildItem \"C:\\Users\\Public\"<\/code><\/pre>\n<h2>Exploring Options and Parameters<\/h2>\n<p>PowerShell provides numerous parameters to customize the output of <b>Get-ChildItem<\/b>. Here are some useful ones:<\/p>\n<ul>\n<li><b>-Recurse<\/b>: Lists all files and directories in the specified location and all subdirectories.<\/li>\n<li><b>-File<\/b>: Displays only files, excluding directories.<\/li>\n<li><b>-Directory<\/b>: Displays only directories, excluding files.<\/li>\n<li><b>-Filter<\/b>, <b>-Include<\/b>, and <b>-Exclude<\/b>: Allow filtering by file name or extension.<\/li>\n<li><b>-Hidden<\/b>: Includes hidden items in the result.<\/li>\n<\/ul>\n<p>Below is an example that displays all `.txt` files in a specific folder and its subfolders:<\/p>\n<pre><code>Get-ChildItem \"C:\\Logs\" -Filter *.txt -Recurse<\/code><\/pre>\n<p>You can also combine these parameters for more targeted results. For instance:<\/p>\n<pre><code>Get-ChildItem \"C:\\Projects\" -Recurse -File -Include *.ps1<\/code><\/pre>\n<p>This command finds all PowerShell script files in the Projects directory and all its subfolders.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"675\" src=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/logo-ffmpeg-nvidia-transcoding-command-line.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/logo-ffmpeg-nvidia-transcoding-command-line.jpg 1080w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/logo-ffmpeg-nvidia-transcoding-command-line-300x188.jpg 300w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/logo-ffmpeg-nvidia-transcoding-command-line-1024x640.jpg 1024w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/logo-ffmpeg-nvidia-transcoding-command-line-768x480.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Working With Output<\/h2>\n<p>One of PowerShell&#8217;s greatest strengths is treating the output as objects. This means you can pass the output of <b>Get-ChildItem<\/b> to other cmdlets using the pipeline (<code>|<\/code>) to perform additional operations:<\/p>\n<pre><code>Get-ChildItem -Path \"C:\\Data\" -Recurse -File | Where-Object {$_.Length -gt 1MB}<\/code><\/pre>\n<p>This command filters for files larger than 1 MB in the <i>C:\\Data<\/i> folder and its subdirectories.<\/p>\n<p>Want to sort files by size?<\/p>\n<pre><code>Get-ChildItem -Path C:\\Videos -File | Sort-Object Length -Descending<\/code><\/pre>\n<p>This will arrange all video files in descending order of their size.<\/p>\n<h2>Using Get-ChildItem Remotely<\/h2>\n<p>When combined with PowerShell remoting, you can use <i>Get-ChildItem<\/i> to explore file systems on remote machines:<\/p>\n<pre><code>Invoke-Command -ComputerName \"Server01\" -ScriptBlock { Get-ChildItem \"D:\\Logs\" -Recurse }<\/code><\/pre>\n<p>Just ensure PowerShell remoting is enabled on the target machine using <i>Enable-PSRemoting<\/i>.<\/p>\n<h2>Practical Use Case: Cleaning Up Old Files<\/h2>\n<p>Here&#8217;s a real-world scenario\u2014removing all files older than 90 days:<\/p>\n<pre><code>Get-ChildItem \"C:\\Temp\" -Recurse -File | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-90) } | Remove-Item<\/code><\/pre>\n<p>This is especially useful for system administrators managing temporary directories or log files that pile up over time.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1193\" src=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/white-envelope-on-white-surface-computer-cleanup-file-comparison-backup-folders.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/white-envelope-on-white-surface-computer-cleanup-file-comparison-backup-folders.jpg 1080w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/white-envelope-on-white-surface-computer-cleanup-file-comparison-backup-folders-272x300.jpg 272w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/white-envelope-on-white-surface-computer-cleanup-file-comparison-backup-folders-927x1024.jpg 927w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/10\/white-envelope-on-white-surface-computer-cleanup-file-comparison-backup-folders-768x848.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Tips and Best Practices<\/h2>\n<ul>\n<li><b>Always test your commands<\/b> using <i>-WhatIf<\/i> before deletion or modification operations. Example:<\/li>\n<pre><code>Remove-Item -Path \"C:\\Temp\\*\" -WhatIf<\/code><\/pre>\n<li><b>Use aliases sparingly<\/b>: While <i>gci<\/i> is a common alias for <i>Get-ChildItem<\/i>, writing out the full command improves readability and reduces confusion in shared scripts.<\/li>\n<li><b>Use output formatting<\/b>: You can format the output to display only specific properties.<\/li>\n<\/ul>\n<pre><code>Get-ChildItem | Select-Object Name, Length, LastWriteTime<\/code><\/pre>\n<h2>Conclusion<\/h2>\n<p>From simple file listings to advanced recursive searches and even automation of cleanup tasks, <b>Get-ChildItem<\/b> is a fundamental cmdlet every PowerShell user should master. Its flexibility makes it an ideal tool for managing files and directories efficiently across local and remote environments.<\/p>\n<p>With just a few lines of code, you can gain deep insights into your file system and even automate complex file management workflows\u2014putting the real power in PowerShell.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>PowerShell is a powerful scripting language and command-line shell designed especially for system administrators. One of the most commonly used cmdlets in PowerShell is Get-ChildItem, which allows users to list &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Use Get-ChildItem in PowerShell for File Listings\" class=\"read-more button\" href=\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#more-10055\" aria-label=\"Read more about How to Use Get-ChildItem in PowerShell for File Listings\">Read more<\/a><\/p>\n","protected":false},"author":88,"featured_media":9109,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[495],"tags":[],"class_list":["post-10055","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Use Get-ChildItem in PowerShell for File Listings - Save the Video Blog<\/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:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use Get-ChildItem in PowerShell for File Listings - Save the Video Blog\" \/>\n<meta property=\"og:description\" content=\"PowerShell is a powerful scripting language and command-line shell designed especially for system administrators. One of the most commonly used cmdlets in PowerShell is Get-ChildItem, which allows users to list ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/\" \/>\n<meta property=\"og:site_name\" content=\"Save the Video Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-14T11:12:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-14T11:12:03+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"608\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jonathan Dough\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jonathan Dough\" \/>\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:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/\"},\"author\":{\"name\":\"Jonathan Dough\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700\"},\"headline\":\"How to Use Get-ChildItem in PowerShell for File Listings\",\"datePublished\":\"2025-08-14T11:12:00+00:00\",\"dateModified\":\"2025-08-14T11:12:03+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/\"},\"wordCount\":530,\"publisher\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/\",\"url\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/\",\"name\":\"How to Use Get-ChildItem in PowerShell for File Listings - Save the Video Blog\",\"isPartOf\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg\",\"datePublished\":\"2025-08-14T11:12:00+00:00\",\"dateModified\":\"2025-08-14T11:12:03+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#primaryimage\",\"url\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg\",\"contentUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg\",\"width\":1080,\"height\":608},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/savethevideo.net\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use Get-ChildItem in PowerShell for File Listings\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#website\",\"url\":\"https:\/\/savethevideo.net\/blog\/\",\"name\":\"Save the Video Blog\",\"description\":\"Everything you need to know about videos\",\"publisher\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/savethevideo.net\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\",\"name\":\"Save the Video Blog\",\"url\":\"https:\/\/savethevideo.net\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png\",\"contentUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png\",\"width\":500,\"height\":119,\"caption\":\"Save the Video Blog\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700\",\"name\":\"Jonathan Dough\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g\",\"caption\":\"Jonathan Dough\"},\"url\":\"https:\/\/savethevideo.net\/blog\/author\/jonathand\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Use Get-ChildItem in PowerShell for File Listings - Save the Video Blog","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:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Get-ChildItem in PowerShell for File Listings - Save the Video Blog","og_description":"PowerShell is a powerful scripting language and command-line shell designed especially for system administrators. One of the most commonly used cmdlets in PowerShell is Get-ChildItem, which allows users to list ... Read more","og_url":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/","og_site_name":"Save the Video Blog","article_published_time":"2025-08-14T11:12:00+00:00","article_modified_time":"2025-08-14T11:12:03+00:00","og_image":[{"width":1080,"height":608,"url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg","type":"image\/jpeg"}],"author":"Jonathan Dough","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jonathan Dough","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#article","isPartOf":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/"},"author":{"name":"Jonathan Dough","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700"},"headline":"How to Use Get-ChildItem in PowerShell for File Listings","datePublished":"2025-08-14T11:12:00+00:00","dateModified":"2025-08-14T11:12:03+00:00","mainEntityOfPage":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/"},"wordCount":530,"publisher":{"@id":"https:\/\/savethevideo.net\/blog\/#organization"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#primaryimage"},"thumbnailUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg","articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/","url":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/","name":"How to Use Get-ChildItem in PowerShell for File Listings - Save the Video Blog","isPartOf":{"@id":"https:\/\/savethevideo.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#primaryimage"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#primaryimage"},"thumbnailUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg","datePublished":"2025-08-14T11:12:00+00:00","dateModified":"2025-08-14T11:12:03+00:00","breadcrumb":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#primaryimage","url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg","contentUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/03\/an-abstract-image-of-a-sphere-with-dots-and-lines-network-resetcommand-promptdns-flush.jpg","width":1080,"height":608},{"@type":"BreadcrumbList","@id":"https:\/\/savethevideo.net\/blog\/how-to-use-get-childitem-in-powershell-for-file-listings\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/savethevideo.net\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Use Get-ChildItem in PowerShell for File Listings"}]},{"@type":"WebSite","@id":"https:\/\/savethevideo.net\/blog\/#website","url":"https:\/\/savethevideo.net\/blog\/","name":"Save the Video Blog","description":"Everything you need to know about videos","publisher":{"@id":"https:\/\/savethevideo.net\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/savethevideo.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/savethevideo.net\/blog\/#organization","name":"Save the Video Blog","url":"https:\/\/savethevideo.net\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png","contentUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png","width":500,"height":119,"caption":"Save the Video Blog"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700","name":"Jonathan Dough","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g","caption":"Jonathan Dough"},"url":"https:\/\/savethevideo.net\/blog\/author\/jonathand\/"}]}},"_links":{"self":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/10055","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/users\/88"}],"replies":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/comments?post=10055"}],"version-history":[{"count":1,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/10055\/revisions"}],"predecessor-version":[{"id":10065,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/10055\/revisions\/10065"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/media\/9109"}],"wp:attachment":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/media?parent=10055"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/categories?post=10055"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/tags?post=10055"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}