{"id":28648,"date":"2026-04-21T11:57:08","date_gmt":"2026-04-21T18:57:08","guid":{"rendered":"https:\/\/www.edelalon.com\/blog\/?p=28648"},"modified":"2026-04-21T11:59:47","modified_gmt":"2026-04-21T18:59:47","slug":"mastering-windows-powershell-practical-commands-that-actually-save-you-time","status":"publish","type":"post","link":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/","title":{"rendered":"Mastering Windows PowerShell: Practical Commands That Actually Save You Time"},"content":{"rendered":"<p>If you\u2019ve ever felt limited by clicking through endless menus in Windows, <strong>Windows PowerShell<\/strong> is your way out. It\u2019s more than just a command-line tool\u2014it\u2019s a powerful scripting environment that lets you automate tasks, manage files at scale, and take full control of your system.<\/p>\n<p>Recently, I put it to work migrating data from one drive to another, and one command stood above the rest: <strong>robocopy<\/strong>. If you\u2019re moving large amounts of data, this tool is a game changer.<\/p>\n<hr \/>\n<h2>Why PowerShell Matters<\/h2>\n<p>PowerShell combines the simplicity of command-line tools with the flexibility of scripting. Whether you&#8217;re a casual user or someone who likes to tinker, it allows you to:<\/p>\n<ul>\n<li>Automate repetitive tasks<\/li>\n<li>Manage files and directories efficiently<\/li>\n<li>Access system-level tools quickly<\/li>\n<li>Handle bulk operations without third-party software<\/li>\n<\/ul>\n<hr \/>\n<h2>The Star of the Show: Robocopy<\/h2>\n<p>Let\u2019s talk about the MVP.<\/p>\n<h3>What is Robocopy<\/h3>\n<p><strong>Robust File Copy (robocopy)<\/strong> is built into Windows and designed for <strong>reliable, high-performance file transfers<\/strong>. It\u2019s especially useful when dealing with:<\/p>\n<ul>\n<li>Large datasets<\/li>\n<li>Network transfers<\/li>\n<li>Backup operations<\/li>\n<li>Drive-to-drive migrations<\/li>\n<\/ul>\n<h3>The Command I Used<\/h3>\n<p>When I needed to copy data from one drive to another, here\u2019s the kind of command that gets the job done:<\/p>\n<pre><code>robocopy D:\\Source E:\\Destination \/E \/Z \/R:3 \/W:5 \/MT\r\n<\/code><\/pre>\n<h3>What These Flags Do<\/h3>\n<ul>\n<li><code>\/E<\/code> Copies all subdirectories, including empty ones<\/li>\n<li><code>\/Z<\/code> Enables restartable mode (great for interruptions)<\/li>\n<li><code>\/R:3<\/code> Retries failed copies 3 times<\/li>\n<li><code>\/W:5<\/code> Waits 5 seconds between retries<\/li>\n<li><code>\/MT<\/code> Multi-threaded copying (faster performance)<\/li>\n<\/ul>\n<h3>Why Robocopy Wins<\/h3>\n<ul>\n<li>Resumes transfers if interrupted<\/li>\n<li>Handles file permissions and timestamps<\/li>\n<li>Skips unchanged files (huge time saver)<\/li>\n<li>Way faster than drag-and-drop for large jobs<\/li>\n<\/ul>\n<p>If you\u2019re moving drives, backing up data, or syncing folders\u2014this is the tool you want.<\/p>\n<hr \/>\n<h2>Other Useful PowerShell Commands<\/h2>\n<p>Here\u2019s a solid list of commands you\u2019ll actually use:<\/p>\n<h3>File &amp; Directory Management<\/h3>\n<ul>\n<li><code>Get-ChildItem<\/code> Lists files and directories (like <code>dir<\/code>)<\/li>\n<li><code>Set-Location<\/code> Change directories (<code>cd<\/code>)<\/li>\n<li><code>New-Item<\/code> Create files or folders<\/li>\n<li><code>Remove-Item<\/code> Delete files or folders<\/li>\n<li><code>Copy-Item<\/code> Copy files (simpler than robocopy, but less powerful)<\/li>\n<\/ul>\n<hr \/>\n<h3>System &amp; Process Management<\/h3>\n<ul>\n<li><code>Get-Process<\/code> View running processes<\/li>\n<li><code>Stop-Process<\/code> Kill a process<\/li>\n<li><code>Get-Service<\/code> List services<\/li>\n<li><code>Restart-Computer<\/code> Restart your machine<\/li>\n<\/ul>\n<hr \/>\n<h3>Networking &amp; Diagnostics<\/h3>\n<ul>\n<li><code>Test-Connection<\/code> Ping a device<\/li>\n<li><code>Get-NetIPAddress<\/code> View IP configuration<\/li>\n<li><code>Invoke-WebRequest<\/code> Fetch data from the web<\/li>\n<\/ul>\n<hr \/>\n<h3>Scripting &amp; Automation<\/h3>\n<ul>\n<li><code>ForEach-Object<\/code> Loop through items<\/li>\n<li><code>Where-Object<\/code> Filter results<\/li>\n<li><code>Start-Job<\/code> Run background jobs<\/li>\n<\/ul>\n<hr \/>\n<h2>When to Use Robocopy vs Copy-Item<\/h2>\n<table>\n<thead>\n<tr>\n<th>Task<\/th>\n<th>Best Tool<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Simple file copy<\/td>\n<td><code>Copy-Item<\/code><\/td>\n<\/tr>\n<tr>\n<td>Large data transfer<\/td>\n<td><strong>robocopy<\/strong><\/td>\n<\/tr>\n<tr>\n<td>Backup\/sync folders<\/td>\n<td><strong>robocopy<\/strong><\/td>\n<\/tr>\n<tr>\n<td>Network transfers<\/td>\n<td><strong>robocopy<\/strong><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<hr \/>\n<h2>Real-World Use Case: Drive Migration<\/h2>\n<p>When I moved data from one drive to another, I didn\u2019t want to deal with:<\/p>\n<ul>\n<li>Files failing halfway through<\/li>\n<li>Restarting from scratch<\/li>\n<li>Missing hidden\/system files<\/li>\n<\/ul>\n<p>Robocopy handled all of it. I could literally walk away, come back, and trust that everything transferred correctly.<\/p>\n<hr \/>\n<h2>Final Thoughts<\/h2>\n<p>PowerShell might look intimidating at first, but once you start using it, it becomes one of the most valuable tools in your workflow. And if there\u2019s one command to learn early, make it <strong>robocopy<\/strong>.<\/p>\n<p>It\u2019s fast, reliable, and built for real-world tasks\u2014like moving your entire digital life from one drive to another without breaking a sweat.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you\u2019ve ever felt limited by clicking through endless menus in Windows, Windows PowerShell is your way out. It\u2019s more than just a command-line tool\u2014it\u2019s a powerful scripting environment that lets you automate tasks, manage files at scale, and take full control of your system. Recently, I put it to work migrating data from one [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":28650,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"tdm_status":"","tdm_grid_status":"","footnotes":""},"categories":[44],"tags":[5697],"class_list":{"0":"post-28648","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-technology","8":"tag-powershell"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Mastering Windows PowerShell: Practical Commands That Actually Save You Time &#8226; Edel Alon<\/title>\n<meta name=\"description\" content=\"Learn how to use Windows PowerShell with essential commands and a practical robocopy guide for fast, reliable file transfers and drive-to-drive data migration.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mastering Windows PowerShell: Practical Commands That Actually Save You Time &#8226; Edel Alon\" \/>\n<meta property=\"og:description\" content=\"Learn how to use Windows PowerShell with essential commands and a practical robocopy guide for fast, reliable file transfers and drive-to-drive data migration.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/\" \/>\n<meta property=\"og:site_name\" content=\"Edel Alon\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-21T18:57:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-21T18:59:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2026\/04\/powershell.png\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Edel Alon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Edel Alon\" \/>\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:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/\"},\"author\":{\"name\":\"Edel Alon\",\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/#\\\/schema\\\/person\\\/aaf86bfa75efb59a5f0855c63e330e42\"},\"headline\":\"Mastering Windows PowerShell: Practical Commands That Actually Save You Time\",\"datePublished\":\"2026-04-21T18:57:08+00:00\",\"dateModified\":\"2026-04-21T18:59:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/\"},\"wordCount\":500,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/#\\\/schema\\\/person\\\/aaf86bfa75efb59a5f0855c63e330e42\"},\"image\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/powershell.png\",\"keywords\":[\"powershell\"],\"articleSection\":[\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/\",\"url\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/\",\"name\":\"Mastering Windows PowerShell: Practical Commands That Actually Save You Time &#8226; Edel Alon\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/powershell.png\",\"datePublished\":\"2026-04-21T18:57:08+00:00\",\"dateModified\":\"2026-04-21T18:59:47+00:00\",\"description\":\"Learn how to use Windows PowerShell with essential commands and a practical robocopy guide for fast, reliable file transfers and drive-to-drive data migration.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/powershell.png\",\"contentUrl\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/powershell.png\",\"width\":750,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mastering Windows PowerShell: Practical Commands That Actually Save You Time\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/\",\"name\":\"Edel Alon\",\"description\":\"Projects, Tools, Craft, Food, Music, and Other Stuff\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/#\\\/schema\\\/person\\\/aaf86bfa75efb59a5f0855c63e330e42\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/#\\\/schema\\\/person\\\/aaf86bfa75efb59a5f0855c63e330e42\",\"name\":\"Edel Alon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/edel-alon-logobl.png\",\"url\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/edel-alon-logobl.png\",\"contentUrl\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/edel-alon-logobl.png\",\"width\":136,\"height\":80,\"caption\":\"Edel Alon\"},\"logo\":{\"@id\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/09\\\/edel-alon-logobl.png\"},\"description\":\"Edel-Ryan Alon is a starving musician, failed artist, connoisseur of fine foods, aspiring entrepreneur, husband, father of two, geek by day, cook by night, and an all around great guy.\",\"sameAs\":[\"https:\\\/\\\/edelalon.com\"],\"url\":\"https:\\\/\\\/www.edelalon.com\\\/blog\\\/author\\\/edelalon\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Mastering Windows PowerShell: Practical Commands That Actually Save You Time &#8226; Edel Alon","description":"Learn how to use Windows PowerShell with essential commands and a practical robocopy guide for fast, reliable file transfers and drive-to-drive data migration.","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:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/","og_locale":"en_US","og_type":"article","og_title":"Mastering Windows PowerShell: Practical Commands That Actually Save You Time &#8226; Edel Alon","og_description":"Learn how to use Windows PowerShell with essential commands and a practical robocopy guide for fast, reliable file transfers and drive-to-drive data migration.","og_url":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/","og_site_name":"Edel Alon","article_published_time":"2026-04-21T18:57:08+00:00","article_modified_time":"2026-04-21T18:59:47+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2026\/04\/powershell.png","type":"image\/png"}],"author":"Edel Alon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Edel Alon","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/#article","isPartOf":{"@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/"},"author":{"name":"Edel Alon","@id":"https:\/\/www.edelalon.com\/blog\/#\/schema\/person\/aaf86bfa75efb59a5f0855c63e330e42"},"headline":"Mastering Windows PowerShell: Practical Commands That Actually Save You Time","datePublished":"2026-04-21T18:57:08+00:00","dateModified":"2026-04-21T18:59:47+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/"},"wordCount":500,"commentCount":0,"publisher":{"@id":"https:\/\/www.edelalon.com\/blog\/#\/schema\/person\/aaf86bfa75efb59a5f0855c63e330e42"},"image":{"@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2026\/04\/powershell.png","keywords":["powershell"],"articleSection":["Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/","url":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/","name":"Mastering Windows PowerShell: Practical Commands That Actually Save You Time &#8226; Edel Alon","isPartOf":{"@id":"https:\/\/www.edelalon.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/#primaryimage"},"image":{"@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2026\/04\/powershell.png","datePublished":"2026-04-21T18:57:08+00:00","dateModified":"2026-04-21T18:59:47+00:00","description":"Learn how to use Windows PowerShell with essential commands and a practical robocopy guide for fast, reliable file transfers and drive-to-drive data migration.","breadcrumb":{"@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/#primaryimage","url":"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2026\/04\/powershell.png","contentUrl":"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2026\/04\/powershell.png","width":750,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/www.edelalon.com\/blog\/mastering-windows-powershell-practical-commands-that-actually-save-you-time\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edelalon.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Mastering Windows PowerShell: Practical Commands That Actually Save You Time"}]},{"@type":"WebSite","@id":"https:\/\/www.edelalon.com\/blog\/#website","url":"https:\/\/www.edelalon.com\/blog\/","name":"Edel Alon","description":"Projects, Tools, Craft, Food, Music, and Other Stuff","publisher":{"@id":"https:\/\/www.edelalon.com\/blog\/#\/schema\/person\/aaf86bfa75efb59a5f0855c63e330e42"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edelalon.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.edelalon.com\/blog\/#\/schema\/person\/aaf86bfa75efb59a5f0855c63e330e42","name":"Edel Alon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2017\/09\/edel-alon-logobl.png","url":"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2017\/09\/edel-alon-logobl.png","contentUrl":"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2017\/09\/edel-alon-logobl.png","width":136,"height":80,"caption":"Edel Alon"},"logo":{"@id":"https:\/\/www.edelalon.com\/blog\/wp-content\/uploads\/2017\/09\/edel-alon-logobl.png"},"description":"Edel-Ryan Alon is a starving musician, failed artist, connoisseur of fine foods, aspiring entrepreneur, husband, father of two, geek by day, cook by night, and an all around great guy.","sameAs":["https:\/\/edelalon.com"],"url":"https:\/\/www.edelalon.com\/blog\/author\/edelalon\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/posts\/28648","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/comments?post=28648"}],"version-history":[{"count":3,"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/posts\/28648\/revisions"}],"predecessor-version":[{"id":28653,"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/posts\/28648\/revisions\/28653"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/media\/28650"}],"wp:attachment":[{"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/media?parent=28648"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/categories?post=28648"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edelalon.com\/blog\/wp-json\/wp\/v2\/tags?post=28648"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}