Skip to content

Instantly share code, notes, and snippets.

@turboBasic
Last active September 7, 2017 06:11
Show Gist options
  • Save turboBasic/d011296924bf5faf57d6fa55dc6ca2f1 to your computer and use it in GitHub Desktop.
Save turboBasic/d011296924bf5faf57d6fa55dc6ca2f1 to your computer and use it in GitHub Desktop.
[Get list of all known folders] in Windows, even if user moved them to other non-standard locations. Answers the questions "How do I learn the path to the Desktop/Start Menu/Send To etc. directories?" #powershell #windows
$result = [ordered]@{};
[Environment+SpecialFolder].GetEnumNames() |
Sort |
ForEach {
$result += @{
$_ = [Environment]::GetFolderPath($_)
}
}
$result
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment