A lightweight Windows utility that displays folder contents in a popup window with icons. Perfect for creating custom taskbar launchers.
- Clean popup interface - Displays folder contents as clickable icons
- Dark/Light mode - Automatically matches your Windows theme
- Windows 11 styling - Rounded corners and modern appearance
- Single-click launch - Open files and applications instantly
- Smart positioning - Window appears near cursor, respects taskbar location
- Fade-out animation - Smooth close animation
- Tooltips - Hover over icons to see file names
| Dark Mode | Light Mode |
|---|---|
FolderIcon.exe [--folder|-f] <path>
FolderIcon.exe <path>
FolderIcon.exe # Opens Desktop folder by defaultTransform FolderIcon into a powerful app launcher pinned to your taskbar.
Create a folder somewhere on your system to hold your application shortcuts. For example:
C:\Users\YourName\MyLauncher
Inside your launcher folder, add shortcuts to your favorite applications:
- Navigate to the application you want to add
- Right-click the
.exefile and select Create shortcut - Move the shortcut to your launcher folder
- Repeat for all applications you want in your launcher
Tip: You can also drag applications from the Start Menu into your launcher folder.
- Right-click on
FolderIcon.exeand select Create shortcut - Move the shortcut to a convenient location (e.g., Desktop)
-
Right-click on the FolderIcon shortcut and select Properties
-
In the Target field, add your launcher folder path as an argument:
"C:\Path\To\FolderIcon.exe" "C:\Users\YourName\MyLauncher" -
(Optional) Click Change Icon... to customize the shortcut icon
-
Click OK to save
- Drag the configured FolderIcon shortcut to your taskbar
- Drop it where you want it to appear
- Left-click the taskbar icon to open the launcher popup
- Single-click any icon to launch that application
- The popup closes automatically after launching
- Click outside the popup or press Escape to close without launching
- Organize by category: Create multiple launcher folders (Games, Dev Tools, Office) with separate taskbar shortcuts
- Use descriptive names: Rename shortcuts in your launcher folder for clearer tooltips
- Add folders: You can include folder shortcuts to quickly access directories
- Drag the header: Click and drag the header bar to reposition the popup window
- Double-click header: Opens the launcher folder itself in Explorer
- Windows 10/11 (x64)
- Visual Studio 2019+ with "Desktop development with C++" workload
- Windows SDK 10.0+
msbuild FolderIcon.sln /p:Configuration=Release /p:Platform=x64mkdir build && cd build
cmake ..
cmake --build . --config Release| Configuration | Output Path |
|---|---|
| Debug | bin\Debug\FolderIcon.exe |
| Release | bin\Release\FolderIcon.exe |
- Written in pure C (C17)
- No external dependencies beyond Windows SDK
- Single-file implementation (~550 lines)
- Uses Win32 API directly (no MFC/ATL/WTL)
MIT License - See LICENSE for details.