{"id":13931,"date":"2026-06-13T20:28:51","date_gmt":"2026-06-13T20:28:51","guid":{"rendered":"https:\/\/savethevideo.net\/blog\/?p=13931"},"modified":"2026-06-13T20:39:07","modified_gmt":"2026-06-13T20:39:07","slug":"how-to-reopen-wsl-previously-created-in-powershell","status":"publish","type":"post","link":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/","title":{"rendered":"How to Reopen WSL Previously Created in PowerShell"},"content":{"rendered":"<p>If you created a Windows Subsystem for Linux environment from PowerShell and later wondered how to get back into it, you are not alone. WSL can feel slightly different from a normal application because a Linux distribution is not always reopened from the same place where it was created. The good news is that once a WSL distribution exists, Windows remembers it, and you can reopen it from PowerShell, Windows Terminal, the Start menu, File Explorer, or even a desktop shortcut.<\/p>\n<p><strong>TLDR:<\/strong> To reopen a previously created WSL instance, open PowerShell and run <code>wsl<\/code> or <code>wsl -d DistroName<\/code>. Use <code>wsl -l -v<\/code> to see the exact names of your installed distributions. If you imported a custom distro, it may not appear like a normal app, but it is still available through the <code>wsl<\/code> command. For regular use, Windows Terminal profiles and shortcuts make reopening WSL much easier.<\/p>\n<h2>Understanding What \u201cReopen WSL\u201d Really Means<\/h2>\n<p>When people say they \u201ccreated WSL in PowerShell,\u201d they may mean one of several things. They might have installed Ubuntu using <code>wsl --install<\/code>, imported a custom Linux root filesystem with <code>wsl --import<\/code>, or enabled WSL features and then launched a distribution for the first time. In all cases, WSL works as a lightweight Linux environment managed by Windows, not as a traditional virtual machine that you open from a separate hypervisor window.<\/p>\n<p>That means reopening WSL is usually as simple as launching the distribution again. You do not need to reinstall it, recreate it, or repeat the original command unless something was removed. Your Linux files, packages, users, and shell configuration should still be there.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"720\" src=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg 1080w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1-300x200.jpg 300w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1-1024x683.jpg 1024w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1-768x512.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Step 1: Open PowerShell<\/h2>\n<p>The most direct way to reopen WSL is through PowerShell, especially if that is where you originally created it. You can use either <strong>Windows PowerShell<\/strong> or <strong>PowerShell 7<\/strong>. For most basic WSL commands, both work the same way.<\/p>\n<ol>\n<li>Press <strong>Windows<\/strong> on your keyboard.<\/li>\n<li>Type <strong>PowerShell<\/strong>.<\/li>\n<li>Open <strong>Windows PowerShell<\/strong> or <strong>PowerShell<\/strong>.<\/li>\n<li>At the prompt, type <code>wsl<\/code> and press <strong>Enter<\/strong>.<\/li>\n<\/ol>\n<pre><code>wsl<\/code><\/pre>\n<p>If you have only one WSL distribution installed, this command usually opens it immediately. You should see a Linux prompt, often ending with a dollar sign such as <code>$<\/code>. That means you are now inside your Linux environment.<\/p>\n<h2>Step 2: List Your Installed WSL Distributions<\/h2>\n<p>If typing <code>wsl<\/code> does not open the distribution you expected, you may have more than one installed. To see all registered WSL distributions, run:<\/p>\n<pre><code>wsl -l -v<\/code><\/pre>\n<p>This command lists your distributions, their current state, and which WSL version they use. The output may look similar to this:<\/p>\n<pre><code>  NAME            STATE           VERSION\n* Ubuntu          Stopped         2\n  Debian          Running         2\n  MyCustomLinux   Stopped         2<\/code><\/pre>\n<p>The asterisk marks the <strong>default distribution<\/strong>. When you run <code>wsl<\/code> without extra options, Windows opens that default distro. If your previously created WSL environment is listed under a different name, you can launch it directly.<\/p>\n<h2>Step 3: Reopen a Specific Distribution<\/h2>\n<p>To open a particular WSL distribution, use the <code>-d<\/code> option followed by its name:<\/p>\n<pre><code>wsl -d Ubuntu<\/code><\/pre>\n<p>For a custom imported distribution, the command might look like this:<\/p>\n<pre><code>wsl -d MyCustomLinux<\/code><\/pre>\n<p>Names are important. Use the exact name shown by <code>wsl -l -v<\/code>. If the name contains spaces, wrap it in quotation marks:<\/p>\n<pre><code>wsl -d \"Ubuntu 22.04\"<\/code><\/pre>\n<p>This is one of the most useful commands to remember because it works even if the distribution does not have a Start menu icon or Windows Terminal profile.<\/p>\n<h2>What If the Distribution Says \u201cStopped\u201d?<\/h2>\n<p>Seeing <code>Stopped<\/code> in the distribution list is normal. It does not mean the Linux system is broken. WSL distributions automatically stop when they are not being used, which helps save memory and CPU resources. When you run <code>wsl -d DistroName<\/code>, Windows starts the distribution again and opens a shell.<\/p>\n<p>Think of it like waking a laptop from sleep rather than reinstalling an operating system. Your files, installed tools, shell history, and configuration are still available.<\/p>\n<h2>Setting the Right Default Distribution<\/h2>\n<p>If you want a specific WSL distribution to open every time you type <code>wsl<\/code>, set it as the default:<\/p>\n<pre><code>wsl --set-default Ubuntu<\/code><\/pre>\n<p>After that, simply running:<\/p>\n<pre><code>wsl<\/code><\/pre>\n<p>will open Ubuntu. This is especially handy if you created multiple distributions for testing, development, or experimentation but mainly use one of them day to day.<\/p>\n<h2>Opening WSL from Windows Terminal<\/h2>\n<p>PowerShell is reliable, but <strong>Windows Terminal<\/strong> is often more comfortable for daily WSL use. It supports tabs, profiles, themes, split panes, and better font rendering. If your WSL distribution was installed normally from the Microsoft Store or with <code>wsl --install<\/code>, Windows Terminal may automatically create a profile for it.<\/p>\n<p>To open WSL from Windows Terminal:<\/p>\n<ol>\n<li>Open <strong>Windows Terminal<\/strong>.<\/li>\n<li>Click the small dropdown arrow next to the tab button.<\/li>\n<li>Select your Linux distribution, such as <strong>Ubuntu<\/strong> or <strong>Debian<\/strong>.<\/li>\n<\/ol>\n<p>If your distribution does not appear, you can still open a PowerShell tab and run <code>wsl -d DistroName<\/code>. For imported distros, Windows Terminal does not always create a profile automatically, but you can add one manually in the Terminal settings.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"720\" src=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/06\/black-flat-screen-computer-monitor-windows-terminal-tabs-ubuntu-shell-command-line.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/06\/black-flat-screen-computer-monitor-windows-terminal-tabs-ubuntu-shell-command-line.jpg 1080w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/06\/black-flat-screen-computer-monitor-windows-terminal-tabs-ubuntu-shell-command-line-300x200.jpg 300w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/06\/black-flat-screen-computer-monitor-windows-terminal-tabs-ubuntu-shell-command-line-1024x683.jpg 1024w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/06\/black-flat-screen-computer-monitor-windows-terminal-tabs-ubuntu-shell-command-line-768x512.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Opening WSL from the Start Menu<\/h2>\n<p>Many standard WSL distributions appear in the Windows Start menu as regular apps. For example, if you installed Ubuntu, you may be able to press <strong>Windows<\/strong>, type <strong>Ubuntu<\/strong>, and launch it directly.<\/p>\n<p>This method is convenient, but it is not universal. A distribution imported using <code>wsl --import<\/code> may not create a Start menu entry. That does not mean it is missing. It simply means Windows registered it as a WSL distribution without adding an app shortcut. In that case, PowerShell remains the most dependable way to reopen it.<\/p>\n<h2>Opening WSL in a Specific Windows Folder<\/h2>\n<p>Sometimes you do not just want to reopen WSL; you want it to start in a particular project directory. WSL can open from the current Windows path when you run it from PowerShell.<\/p>\n<p>For example:<\/p>\n<pre><code>cd C:\\Users\\YourName\\Projects\\myapp\nwsl<\/code><\/pre>\n<p>Inside WSL, that Windows folder appears under <code>\/mnt\/c<\/code>. You can also run a specific command when launching WSL:<\/p>\n<pre><code>wsl -d Ubuntu -- pwd<\/code><\/pre>\n<p>Or start in a Linux home directory:<\/p>\n<pre><code>wsl -d Ubuntu --cd ~<\/code><\/pre>\n<p>This is useful for developers who move between Windows tools and Linux command line workflows. You can edit code in Windows, run scripts in Linux, and keep both environments connected.<\/p>\n<h2>Reopening an Imported WSL Distribution<\/h2>\n<p>Imported distributions deserve special attention because they are often created entirely from PowerShell. A typical import command looks like this:<\/p>\n<pre><code>wsl --import MyCustomLinux C:\\WSL\\MyCustomLinux C:\\Images\\rootfs.tar --version 2<\/code><\/pre>\n<p>After importing, you reopen it with:<\/p>\n<pre><code>wsl -d MyCustomLinux<\/code><\/pre>\n<p>The folder used during import, such as <code>C:\\WSL\\MyCustomLinux<\/code>, stores the virtual disk and supporting files. You normally should not manually edit those files from Windows while WSL is running. Instead, access your Linux filesystem from inside WSL or through the special Windows path:<\/p>\n<pre><code>\\\\wsl$\\MyCustomLinux<\/code><\/pre>\n<p>You can paste that path into File Explorer to browse the Linux files safely.<\/p>\n<h2>Creating a Shortcut to Reopen WSL Quickly<\/h2>\n<p>If you reopen the same distribution often, create a shortcut. On your desktop, right-click and choose <strong>New<\/strong> &gt; <strong>Shortcut<\/strong>. For the location, enter something like:<\/p>\n<pre><code>wsl.exe -d Ubuntu<\/code><\/pre>\n<p>Give it a name such as <strong>Ubuntu WSL<\/strong>. Double-clicking the shortcut will open the distribution. For a custom distribution, replace <code>Ubuntu<\/code> with the exact distro name:<\/p>\n<pre><code>wsl.exe -d MyCustomLinux<\/code><\/pre>\n<p>You can also pin Windows Terminal to the taskbar and configure its default profile to your preferred WSL distribution for an even smoother setup.<\/p>\n<h2>Checking Whether WSL Is Still Installed<\/h2>\n<p>If <code>wsl<\/code> is not recognized, WSL may not be installed or enabled correctly. First, check the command:<\/p>\n<pre><code>wsl --status<\/code><\/pre>\n<p>If Windows reports that the command does not exist, you may need to install or enable WSL again. On modern Windows 10 and Windows 11 systems, this command usually installs WSL and the default Linux distribution:<\/p>\n<pre><code>wsl --install<\/code><\/pre>\n<p>However, be careful: reinstalling WSL is different from reopening an existing distribution. Before making changes, run <code>wsl -l -v<\/code> if possible to verify whether your distributions are still registered.<\/p>\n<h2>Troubleshooting Common Reopening Problems<\/h2>\n<p>Here are some common issues and practical fixes:<\/p>\n<ul>\n<li><strong>\u201cThere are no installed distributions.\u201d<\/strong> This means Windows does not currently see any registered WSL distros. If you previously exported one, you may need to import it again.<\/li>\n<li><strong>The wrong distro opens.<\/strong> Use <code>wsl -l -v<\/code> to check names, then run <code>wsl --set-default DistroName<\/code>.<\/li>\n<li><strong>The distro opens as root.<\/strong> Some imported distros default to the root user. You can specify a user with <code>wsl -d DistroName -u username<\/code>, or configure the default user inside the distribution.<\/li>\n<li><strong>Windows Terminal does not show the distro.<\/strong> Launch it manually with <code>wsl -d DistroName<\/code> or create a custom Terminal profile.<\/li>\n<li><strong>The distro seems frozen.<\/strong> Shut it down with <code>wsl --terminate DistroName<\/code>, then reopen it.<\/li>\n<\/ul>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"720\" src=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/03\/a-laptop-computer-sitting-on-top-of-a-table-windows-defender-alert-screen-antivirus-warning-popup-gta-4-folder-files-1.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/03\/a-laptop-computer-sitting-on-top-of-a-table-windows-defender-alert-screen-antivirus-warning-popup-gta-4-folder-files-1.jpg 1080w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/03\/a-laptop-computer-sitting-on-top-of-a-table-windows-defender-alert-screen-antivirus-warning-popup-gta-4-folder-files-1-300x200.jpg 300w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/03\/a-laptop-computer-sitting-on-top-of-a-table-windows-defender-alert-screen-antivirus-warning-popup-gta-4-folder-files-1-1024x683.jpg 1024w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2026\/03\/a-laptop-computer-sitting-on-top-of-a-table-windows-defender-alert-screen-antivirus-warning-popup-gta-4-folder-files-1-768x512.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Stopping and Reopening Cleanly<\/h2>\n<p>Sometimes you may want to restart a WSL distribution intentionally. To stop one distro, run:<\/p>\n<pre><code>wsl --terminate Ubuntu<\/code><\/pre>\n<p>To stop all running WSL distributions:<\/p>\n<pre><code>wsl --shutdown<\/code><\/pre>\n<p>Then reopen the one you want:<\/p>\n<pre><code>wsl -d Ubuntu<\/code><\/pre>\n<p>This can solve temporary networking, service, or filesystem issues. It is similar to rebooting a small Linux machine, but much faster.<\/p>\n<h2>Final Thoughts<\/h2>\n<p>Reopening a WSL environment previously created in PowerShell is mostly about knowing its registered name. Once you can list your distributions with <code>wsl -l -v<\/code>, you can launch any of them using <code>wsl -d DistroName<\/code>. Whether you prefer PowerShell, Windows Terminal, the Start menu, or a custom shortcut, WSL is designed to be reopened without repeating the original setup process.<\/p>\n<p>The most important thing to remember is that a stopped WSL distribution is not gone. It is simply waiting. With a single command, your Linux environment can be back on screen, ready for package updates, shell scripts, development servers, automation tasks, or whatever project you left unfinished.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you created a Windows Subsystem for Linux environment from PowerShell and later wondered how to get back into it, you are not alone. WSL can feel slightly different from &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Reopen WSL Previously Created in PowerShell\" class=\"read-more button\" href=\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#more-13931\" aria-label=\"Read more about How to Reopen WSL Previously Created in PowerShell\">Read more<\/a><\/p>\n","protected":false},"author":88,"featured_media":10093,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[495],"tags":[],"class_list":["post-13931","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 Reopen WSL Previously Created in PowerShell - 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-reopen-wsl-previously-created-in-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Reopen WSL Previously Created in PowerShell - Save the Video Blog\" \/>\n<meta property=\"og:description\" content=\"If you created a Windows Subsystem for Linux environment from PowerShell and later wondered how to get back into it, you are not alone. WSL can feel slightly different from ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"Save the Video Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-13T20:28:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-13T20:39:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\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=\"8 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-reopen-wsl-previously-created-in-powershell\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/\"},\"author\":{\"name\":\"Jonathan Dough\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700\"},\"headline\":\"How to Reopen WSL Previously Created in PowerShell\",\"datePublished\":\"2026-06-13T20:28:51+00:00\",\"dateModified\":\"2026-06-13T20:39:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/\"},\"wordCount\":1489,\"publisher\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/\",\"url\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/\",\"name\":\"How to Reopen WSL Previously Created in PowerShell - Save the Video Blog\",\"isPartOf\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg\",\"datePublished\":\"2026-06-13T20:28:51+00:00\",\"dateModified\":\"2026-06-13T20:39:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#primaryimage\",\"url\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg\",\"contentUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg\",\"width\":1080,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/savethevideo.net\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Reopen WSL Previously Created in PowerShell\"}]},{\"@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 Reopen WSL Previously Created in PowerShell - 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-reopen-wsl-previously-created-in-powershell\/","og_locale":"en_US","og_type":"article","og_title":"How to Reopen WSL Previously Created in PowerShell - Save the Video Blog","og_description":"If you created a Windows Subsystem for Linux environment from PowerShell and later wondered how to get back into it, you are not alone. WSL can feel slightly different from ... Read more","og_url":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/","og_site_name":"Save the Video Blog","article_published_time":"2026-06-13T20:28:51+00:00","article_modified_time":"2026-06-13T20:39:07+00:00","og_image":[{"width":1080,"height":720,"url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg","type":"image\/jpeg"}],"author":"Jonathan Dough","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jonathan Dough","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#article","isPartOf":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/"},"author":{"name":"Jonathan Dough","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700"},"headline":"How to Reopen WSL Previously Created in PowerShell","datePublished":"2026-06-13T20:28:51+00:00","dateModified":"2026-06-13T20:39:07+00:00","mainEntityOfPage":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/"},"wordCount":1489,"publisher":{"@id":"https:\/\/savethevideo.net\/blog\/#organization"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg","articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/","url":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/","name":"How to Reopen WSL Previously Created in PowerShell - Save the Video Blog","isPartOf":{"@id":"https:\/\/savethevideo.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#primaryimage"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg","datePublished":"2026-06-13T20:28:51+00:00","dateModified":"2026-06-13T20:39:07+00:00","breadcrumb":{"@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#primaryimage","url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg","contentUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg","width":1080,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/savethevideo.net\/blog\/how-to-reopen-wsl-previously-created-in-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/savethevideo.net\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Reopen WSL Previously Created in PowerShell"}]},{"@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\/13931","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=13931"}],"version-history":[{"count":1,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/13931\/revisions"}],"predecessor-version":[{"id":13939,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/13931\/revisions\/13939"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/media\/10093"}],"wp:attachment":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/media?parent=13931"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/categories?post=13931"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/tags?post=13931"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}