How to know the path of ext4.vhdx in windows
Finding this file can be a bit of a scavenger hunt because the folder names are often long strings of random characters.
The easiest way to find it is to use PowerShell to tell you exactly where it's hiding.
Method 1: The "Automatic" Way (PowerShell)
Copy and paste this command into a PowerShell window. It will spit out the exact path to your virtual disk:
In powershell, run the command
Get-ChildItem -Path "$env:LOCALAPPDATA\Packages" -Filter "ext4.vhdx" -Recurse -ErrorAction SilentlyContinue | Select-Object FullName, @{Name="SizeGB";Expression={$_.Length / 1GB}}
Comments
Post a Comment