Tagged Questions
The Windows Shell is Windows Explorer. Shell programming deals with Start menu shortcuts, file associations and shell extensions.
23
votes
6answers
11k views
C# get thumbnail from file via windows api
Windows explorer has the ability to show thumbnails of files. These thumbnails are provided by core and third-party shell extensions.
I know how to extend the shell to provide thumbnails to Windows.
...
16
votes
12answers
5k views
windows batch: sleep
How do I get a windows batch script to wait a few seconds? sleep and wait don't seem to work (unrecognized command).
9
votes
3answers
957 views
What are all of the well-known virtual folder GUIDs?
There seem to be a few virtual folders which have GUIDs associated to them (control panel, desktop) -
::{00021400-0000-0000-c000-000000000046} // desktop
Where the blazes are these defined? When ...
8
votes
1answer
995 views
ShellIconOverlayIdentifiers - why so few?
At this point, everyone knows that there's a limit to the number of ShellIconOverlayIdentifiers (from MSDN):
The number of different icon overlay handlers that the system can support is limited by ...
8
votes
3answers
731 views
Check if a php script is still running
I have a script that listens to a jabber server and responds accordingly. Though it's not supposed to stop, last night it did. Now I want to run a cron job every minute to check if the script is ...
7
votes
1answer
183 views
Change the icon on windows 7 taskbar for a pinned application
My software Pomodoro Timer is going to display a dynamic icon on Windows 7 taskbar. You may wonder why the application icon need to be dynamic. It's actually a counting down timer for me to help me ...
7
votes
2answers
358 views
Windows icon overlays - alternatives, improvements and thoughts?
As Cody Gray mentioned when answering my other question here, Raymond Chen talks about how icon overlays are a poor choice here (note that the article is a year old).
The substantive argument against ...
7
votes
4answers
629 views
How to tell Windows Explorer not to request file details and thumbnails in certain folder?
Is there a way (via shell extension or registry setting) to tell Windows Explorer that it shouldn't read files in the folder being shown in order to extract metadata or create thumbnails?
The ...
7
votes
3answers
4k views
Windows shell extension with C# [closed]
I was wanting to write a simple windows shell extension to add to the context menu, and C# is the language I most use these days. Is it a decent choice for a shell extension? Are the interfaces easy ...
6
votes
1answer
155 views
How to enter Windows Flip 3D mode on Windows Vista and above?
Is it possible to trigger the Flip 3D mode on Windows Vista above systems programmatically?
It is the same as if you manually press CTRL + WIN + TAB
5
votes
1answer
104 views
Why does SHParseDisplayName give an access violation if I've imported it myself?
I get an access violation when trying to get a pidl form a path in Delphi, and the returned pidl is nil. This is my code:
type
// TParseDisplayName = function(pszPath: PChar; pbc: pointer; var ...
5
votes
1answer
539 views
Windows 7: Prevent application from losing focus
I have a self-made fullscreen application for Windows 7 written in C++ which should run for a long time on its own as a public presentation.
Problem is, there are several applications or drivers or ...
4
votes
1answer
57 views
How to resize Windows Icon Overlay?
I made a icon overlay to my file, *.myfile, but the overlay size is wrong. When the icon shows in size 16x16, the overlay covers the icon.
How can I change the overlay size? ...
4
votes
1answer
153 views
How to get embedded Explorer IShellView to be browsable (i.e. trigger BrowseObject event)
i am "embedding Windows Explorer" in my Win32 application. (Technically i am hosting a ShellView of a folder in my application, which is what Windows Explorer does).
The problem is that the view is ...
4
votes
1answer
71 views
How can I programmatically change Windows Shell settings using PowerShell?
Using PowerShell, I can do:
$shell = new-object -com Shell.Application
$shell.GetSetting(0x2)
Which correctly returns whether the shell shows extensions for known file types.
Note: see ...
4
votes
1answer
156 views
Why were all the C# Shell Extension Examples removed from the All-In-One code framework in April?
The samples and the code were described here:
http://blogs.msdn.com/b/codefx/archive/2010/09/14/writing-windows-shell-extension-with-net-framework-4-c-vb-net-part-1.aspx
And the framework itself is ...
4
votes
3answers
518 views
How can I write a Windows Shell Namespace Extension in Delphi?
First, sorry for my poor English...
I want to add a virtual folder to Windows Explorer using a Namespace Extension (NSE), and I want users to be able to open this virtual folder to explore some path ...
4
votes
5answers
273 views
Most useful Explorer shell extensions
I'd like to know which are the most common (and useful) shell extensions you're using as developers. I bet the following are on the list, but I'd like to know which others you would add:
Tortoise ...
4
votes
4answers
885 views
API to toggle “Show hidden files, folders and drives”
Is there a function in Windows API to toggle the "Show hidden files, folders and drives" option in Windows Explorer (Tools >> Folder Options... >> View tab).
I know of a related registry key, but ...
4
votes
2answers
304 views
How to reproduce “Show in Folder” / “Find Target” via C#
When using Chrome, if you download a file you can then choose an option (Show in Folder) which will open the containing directory and highlight the file. Similarly, if you view the properties of a ...
4
votes
2answers
644 views
Drag & drop of a dynamically created shortcut
I have a C# application that creates shortcuts to launch other programs with specific arguments and initial directories. I would like the user to be able to drag a shortcut from the Windows form and ...
4
votes
7answers
1k views
How can I create my custom Shell Context Handlers for Windows?
Problem
Language: C# 2.0 or later
I would like to register context handlers to create menues when the user right clicks certain files (in my case *.eic). What is the procedure to register, ...
3
votes
1answer
66 views
Why is my DLL registering only for one user?
I've written a shell extension using EZShellExtensions.net. It works great in my development environment when I'm logged in as me, as well as any other system when logged in as me. For all other ...
3
votes
1answer
112 views
How to write a shell extension in C++?
This seemed like a common question but after doing some searching, I wasn't really able to find my answers. There is an article on this here:
http://www.codeproject.com/KB/shell/shellextguide1.aspx
...
3
votes
2answers
155 views
When is a file not a file system object?
I have code which enumerates the Favorites folder (recursively) by means of the shell API. I use the GetAttributesOf function to obtain the attributes of each object I find.
Because I never advance ...
3
votes
0answers
233 views
How can I immediately reload a folder icon when desktop.ini is changed
I'm trying to change folder icon programmatically using changing desktop.ini on the folder. I can set a icon, but can't change it immediately through changing "IconIndex". The icon is also changed in ...
3
votes
3answers
187 views
Changing environment variables of the calling process
This one seems trivial but the answer has eluded me for a few days now.
I have a Windows batch file, that calls a C# program to do an extra verification that cannot be done in a batch file. After the ...
3
votes
1answer
185 views
How do I write a custom search provider for Windows Explorer search UI
I am working on a Windows Explorer Namespace Extension which is a virtual filesystem. With regards to this, I would like to support search from the search dialog available in Windows Explorer:
...
3
votes
1answer
340 views
Get a file's size through `IShellItem`
I've implemented a directory walking algorithm for the Windows Shell using IShellItem, IShellFolder, IStorage, IStream, etc. All is well and good. I can even walk inside shell namespace extensions ...
3
votes
1answer
732 views
Make Windows refresh icon cache
I really liked the oxygen appearance of KDE SC 4. I wrote a program to apply these icons to windows. The program is written in NSIS, and is currently nearly fully functional. However, the only way I ...
3
votes
2answers
11k views
Tasklist CPU % usage
I'm trying to use tasklist to find out which process is consuming more than X percent of my CPU (to later kill it with taskkill.)
How do I know what percent does a time format represents?
The ...
2
votes
1answer
66 views
How can I get large icons for a file extension using Windows shell?
I have found various articles on getting the system images for a file or even file extension. I have the belows methods which are working for obtaining small 16x16 and large 32x32 images.
// DLL ...
2
votes
0answers
49 views
Windows command line listener?
My application registers a file type and double-clicking or opening files via cmd line always starts my application but there is another application (which claims to simply send the file path to the ...
2
votes
2answers
82 views
How can I delete an object flagged as SFGAO_STREAM?
I have a file that I can reach by pidl via IShellFolder. This file has the flag SFGAO_CANDELETE and its parent folder has the flag SFGAO_STORAGEANCESTOR only.
How can I delete the file?
Conditions:
...
2
votes
1answer
152 views
Loop over files in a directory using the shell in delphi
I want to loop through all the files in a given directory and return their version number and exe name. I have tried digging into the shell to see if I can pull this off, however I have not been able ...
2
votes
1answer
160 views
Shell Namespace Extension fails to load in Windows 7
I'm currently trying to create a custom Shell Namespace Extension (for presenting a virtual folder containing "subfolders" and "files", which are actually the representation of data in a hierarchical ...
2
votes
1answer
344 views
show output from shell command run from Jscript
I want to run a shell command from jscript from IE on a Windows machine.
I have the following jscript function:
function execCommand( command ){
var myShell = new ...
2
votes
3answers
341 views
Minimize/restore windows programmatically skipping the animation effect
I need to perform several operations on a list of windows (minimize some of them, restore others) in order to switch between two or more set of windows at once.
The problem with this are those ...
2
votes
1answer
338 views
C++.Icon оverlay over all empty folders. (Shell Icon Overlay)
I am not really familiar with c++ but I need to use it because there are some problems with .net\java +Shell.
So I have example how to do add icon over files which contains some text: ...
2
votes
2answers
303 views
Is it possible to write a Windows shell icon overlay handler in C#?
Any examples or libraries which can help me to draw overlay image over folders?
Example from TortoiseSVN:
2
votes
2answers
670 views
Export registry in plain text format
My object is to export the Windows registry in txt format using a batch file.
If I use either of the following two lines from a batch file:
REG EXPORT C:\t.txt "HKEY_CURRENT_USER\Software"
REGEDIT ...
2
votes
1answer
301 views
Creating an IShellItem instance for a non-existent file
How can I get an IShellItem object for a non-existent file (or directory)?
SHCreateItemFromParsingName and SHCreateItemFromRelativeName fail with 0x80070002 (file not found) and
ILCreateFromPath ...
2
votes
3answers
923 views
How do you drag and drop a file from Explorer Shell into a VirtualTreeView control in a Delphi application?
There is extensive drag and drop support in VirtualTreeView by Mike Lischke, and I am using TVirtualStringTree, which has some on-drag-and-drop events, but I can not figure out how to get it to ...
2
votes
2answers
554 views
Recognize Windows Shell Special Folder (i.e. get its CSIDL) via its pIDL (Now determine if pIDLs are equal with C#)
I have a situation where I want to perform special processing on some Windows shell special folders (those corresponding to values in the CSIDL enum.) (My solution must be WinXP compatible.) The ...
2
votes
2answers
237 views
What languages to write windows shell extensions
I know how to write shell extesions in python.
The drawbacks are
it does not work on 64 bit Windows
I am unsure how creating a python process everytime something “happens” reduces performance.
I ...
2
votes
1answer
117 views
How to do DragAcceptFiles in C#?
I'm looking for the least painful way (that is, with the least code) to implement DragAcceptFiles on the main window of a C# project.
I've been searching on the net, and it looks like I'll have to ...
2
votes
1answer
210 views
How does one add a secondary verb to a file type in Windows shell?
The basic idea with Windows shell programming is that you can associate a given file type (extension) with what MS is currently calling a progid (e.g. Company.Type.Ver):
HKCR\.txt
@=Acme.Text.1
...
2
votes
3answers
609 views
C#: How to use SHOpenFolderAndSelectItems
Could someone give an example on how to use the shell function SHOpenFolderAndSelectItems from C#? I don't quite get how to use these kind of functions and couldn't find it on pinvoke.net... =/
Say I ...
2
votes
1answer
402 views
IShellLink::SetIconLocation translates my icon path into %Program Files% which is WRONG
Does anyone know how to correct for this behavior?
Currently, when our installer installs our application, it obtains an IShellLink, then loads it up with the data necessary for our shortcut icon (in ...
2
votes
2answers
491 views
Thumbnail Provider not working
I'm trying to write a Windows Explorer thumbnail handler for our custom file type. I've got this working fine for the preview pane, but am having trouble getting it to work for the thumbnails.
...