Skip to content

Instantly share code, notes, and snippets.

@michaelsanford
Created September 23, 2021 21:18
Show Gist options
  • Save michaelsanford/7fd98b7b6f65e6ec7fcc39749f7d8bea to your computer and use it in GitHub Desktop.
Save michaelsanford/7fd98b7b6f65e6ec7fcc39749f7d8bea to your computer and use it in GitHub Desktop.
Show Directories in $Env:Path that no longer exist
$Env:Path -Split ";" | ForEach-Object { if ($false -eq (Test-Path $_)) { Write-Output $_} }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment