Skip to content

Instantly share code, notes, and snippets.

@scriptingstudio
Last active March 22, 2025 14:52
Show Gist options
  • Select an option

  • Save scriptingstudio/935a23f02d382843239cf934d466e992 to your computer and use it in GitHub Desktop.

Select an option

Save scriptingstudio/935a23f02d382843239cf934d466e992 to your computer and use it in GitHub Desktop.
List Start Menu Items in One Line
"C:\ProgramData\Microsoft\Windows\Start Menu\*.lnk",
"$($ENV:APPDATA)\Microsoft\Windows\Start Menu\Programs\*.lnk" |
Get-ChildItem -Recurse | ForEach-Object {
[PSCustomObject]@{
Name = $_.baseName
Shortcut = $_.Fullname
}
} | Sort-Object Name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment