The Windows Shell is main graphical user interface in Windows hosted by Windows Explorer.
0
votes
0answers
36 views
Border Margin in Window template doesn't have any effect when used with WindowChrome
I was checking out the WindowChrome class in System.Windows.Shell library (v 3.5.41019.1). When I try to create a Window template, the margin of the Border element in the template seems to have no ...
0
votes
1answer
15 views
MFC SHELLLIST does not paint
If I create a new MFC GUI using VS2010, create a dialog box, add an MFC SHELLLIST control to the dialog box, DoModal on the dialog box, the MFC SHELLLIST is filled with the various high level objects ...
3
votes
0answers
41 views
How to drop files onto .MAPIMail
Given some files (or shell file objects) how do i invoke the .MAPIMail registered shell extension handler with them?
The Question
i have some files on the computer:
...
0
votes
2answers
64 views
Why is this COM code leaking?
I'm maintaining an application which uses Windows Explorer overlay icons. Occasionally some operations require me to forcibly refresh explorers view for a particular folder. I do so using the ...
0
votes
1answer
56 views
Context Shell Menus - Get identifier on click
I have created a context shell menu for / on .txt files.
Its 'action' is similar to that of 'Edit with notepad' option.
I am able to open 'notepad' on clicking the menu using this code -
...
0
votes
1answer
40 views
Shell Context Menus
I am currently running a Windows 7 x64 machine.
I have written the following code to add a context menu on right click:
RegistryKey rKey = ...
0
votes
2answers
40 views
Hiding the folder from the windows explorer
I am looking to hide the folder from the explorer.
It should not be visible when someone unchecks the show hidden file in folder option.
Is there any Shell API to achieve this, or how do I achieve in ...
0
votes
1answer
31 views
Adding copy action in windows to java app
I want to get the event like crtl+c or right click copy in windows , that could do the event to java application running ,
that means if someone copies some text , that should be pasted into the java ...
0
votes
2answers
48 views
lost PATH while trying to set custom winlogon shell in WindowsXP
I have changed the shell key in windows registry to gain custom shell (Kiosk usage):
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
NT\CurrentVersion\Winlogon]
I set shell key to a batch file ...
8
votes
1answer
192 views
Use 3rd party context menu (for Windows Explorer) within a C# application?
Unlike others who wish to add items to the Windows Explorer, I want to display a context menu within my application. Now you may be thinking, the class you are looking for is ContextMenu. Let me show ...
0
votes
0answers
59 views
Issue with windows shell right click extension in folder background
It is very simple to add a custom command to the shell context menu like so:
[HKEY_CLASSES_ROOT\Directory\Background\shell\TestCommand]
@="My Test Command"
...
1
vote
1answer
58 views
Change the taskbar icon of another process in Windows
I'm got 2 applications running in Windows 7. The first application is a C++ bootstrapper that launches the second application. I want to change the second application's icon in the Windows taskbar ...
2
votes
1answer
30 views
Name program in the Open With… context menu
How can I customize the name of the program visible in the Open With... context menu in Windows XP and 7?
For example: I have 3 versions of a product named XYZ installed on Windows; .x files are ...
0
votes
1answer
52 views
what is the difference between ProcessStartInfo's UseShellExecute and CreateNoWindow?
If I were to write a console application that starts another console application as a new process, and use the default "UseShellExecute" and "CreateNoWindow" values, the result is that a new command ...
0
votes
1answer
87 views
Create shortcut to directory via IShellLink
Problem: I need to create shortcut to directory with custom icon in C# (there is no .NET API for that)
So far I've done: In my C# code I am quering IShellLink object (actually IShellLinkA), set it's ...
0
votes
0answers
21 views
Any examples of CDefFolderMenu_Create2 using C#
I have searched the web and find very little about CDefFolderMenu_Create2 in general and nothing using C#. I can't even find a [DllImport("shell32.dll")] declaration for it.
I am trying to implement ...
2
votes
2answers
130 views
How to change icon for a some files of file type?
I have IconHandler to change icon for some files. But other files icons becomes blank. How to leave default icon for other files?
HRESULT CSimpleShlExt::GetIconLocation(UINT uFlags,
PTSTR ...
1
vote
0answers
51 views
Display 'open with' context menu in own context menu
I've written a namespace extension (c++). What I want to do now is to copy the windows explorers 'open with' menu. I've implemented my context menu using IContextMenu, IContextMenu2 and IContextMenu3. ...
3
votes
1answer
77 views
Is there a better way to convert an itemidlist into a path-string than SHGetPathFromIDList()?
Microsoft supplies a class CMFCShellTreeCtrl for browsing the shell namespace hierarchy (essentially the same thing as the left hand side of an explorer window).
This control uses ...
2
votes
1answer
45 views
Why are property sheet extension icons rendered colorless?
I am creating a property sheet shell extension and want to have a little icon to set off my property tab from the standard system tabs. Unfortunately, my icon is being rendered almost entirely in ...
5
votes
2answers
213 views
SelectDirectory/ShBrowseForFolder issue when having a lot of shell items
I'm running into a very strange problem with the Vcl.FileCtrl function SelectDirectory (which is a thin wrapper around the ShBrowseForFolder Win32 API).
I'm using the following code to allow the ...
0
votes
0answers
27 views
How to, using the shell, select a right click option?
I've found that it's possible, according to this question on stackoverflow, however, I don't understand how. I already found the regedit key I need: {5e941d80-bf96-11cd-b579-08002b30bfeb}, but I don't ...
-1
votes
1answer
76 views
Windows Shell: Adding Shell Command to all file extensions by default [closed]
I know that I can add custom shell commands (verbs) to the right-click menu in Windows Explorer by opening the HKEY_CLASSES_ROOT registry key, finding a specific file extension (e.g. '.txt'), finding ...
3
votes
1answer
155 views
windows shell for java kiosk application
i have developed a java application in SWT that should be run on a Windows system operating as kiosk. The application should be the only application running in the system and should open just after ...
0
votes
1answer
35 views
Windows like window look
I am looking on the internet for two days to create a form with the extended titlebar (to have the left, right and an search-bar) and the sidebar. I extracted 3 background images from shell32.dll that ...
0
votes
2answers
153 views
How to retrieve creation date of an IShellItem?
I ve a pidl of a folder (that may exist or have been deleted), I can get an IShellItem with the following code but what I need is to get the creation date of that folder.
I presume I can get it with ...
0
votes
2answers
92 views
Expanding env variables in runtime in windows shell
I got troubles with the following sample. I have a file with a list of filenames. I want to check if these files exist, e.g.:
%ProgramFiles%\Internet Explorer\iexplore.exe
%SystemRoot%\sdfsdfsd.exe
...
1
vote
0answers
31 views
remote debugging a shell extensions
as every one know debugging a shell extension is not easy. and when Visual Studio supports remote debugging from one computer to another, can i use this feature to debug shell extensions on the remote ...
0
votes
2answers
134 views
Compare output of “DOS” command to something
(by DOS I mean windows cmd.exe - I don't want to enforce powershell or similar on the end user)
I want to run a command line file that prints output to CON / the screen.
I want to capture that ...
1
vote
0answers
125 views
Using ShellExecuteEx to open file properties sheet under explorer process, not calling process
My issue is with a PropertySheetExtension, but the same behavior seems present with the default file properties sheet. The issue with the following code:
// Snippet from ...
0
votes
1answer
56 views
How to implement sorting in namespace extension using shell folder defview
I have a working namespace extension using ATL/MFC. To make it look like explorer I used the default shell folder view (defview) using SHCreateShellFolderView. So far everything works pretty well. ...
0
votes
0answers
45 views
solved: using java to perform operations through CMD.EXE and writing the returned info to java [duplicate]
I would like to be able to use java to open command prompt and be able to put input into cmd and show everything that the cmd window displays, I really dont know if this is possible and any other ...
0
votes
1answer
149 views
Run metro app from custom shell
I'd like to create a custom shell (WinForms) for Windows 8 Embedded Standard (Release Preview) which allows the user to run, install, or update applications (can be desktop and/or metro apps).
...
2
votes
2answers
95 views
How do I lock and force the user to re-enter one's windows password?
I want to lock the accessing of current operating user, as if the user
clicked on Start → pointed to shutdown → click on LOCK
How to do that in C#?
1
vote
2answers
161 views
Windows batch: run a process in background and wait for it
I need to start 2 background processes from my batch job and then wait for them. Unix shell analogue is:
myprocess1 -flags1 &
pid1=$!
myprocess2 -flags2 &
pid2=$!
wait ${pid1}
wait ${pid2}
...
0
votes
2answers
82 views
Python file to open a text file and run other python files in the text file
I have a text file inside which I have paths to a few python files and the arguments that I would specify when I run them in a command prompt.
I am looking for a python script that opens up the text ...
2
votes
1answer
101 views
How to add a virtual folder in Windows with C++
I'm not sure if I'm using the correct terminology. Say, the SkyDrive app from Microsoft creates a virtual "Skydrive" folder on a local computer. What I'm curious to know is how to add such virtual ...
0
votes
1answer
66 views
Custom Shell Fails to run ShowWindow
I am running a custom shell Test.exe instead of Explorer.exe which launches a full screen application when the user logs in. However, that application is unable to execute ShowWindow commands ...
0
votes
0answers
80 views
The file path to be opened is provided, how to get a handle to the new window?
I want to implement a shell context menu "Open to Left/Right" that user can open a file with the new window being re-positioned to occupy the left/right half of the screen. Basically I just call ...
3
votes
0answers
63 views
Enabling WebGl without the Windows shell
I am trying to make my own Windows shell(don't ask) but the problem is: when I use Google Chrome while the native shell(Windows Explorer) is not running, Chrome doesn't display web pages properly ...
1
vote
4answers
104 views
Styling a window
Is there a way to apply styles to WPF Windows? Ex: changing the minimize, maximize, and X buttons? I know the graphics are part of the Windows shell and not WPF, so I wasn't sure if it was possible.
7
votes
2answers
195 views
Handle file drop in TShellListView descendant
I am attempting to create a descendant of TShellListView that accepts files dropped from Windows Explorer. I want to handle the drag/drop in my component definition without having to implement it in ...
0
votes
0answers
77 views
Shell extension installer closes explorer on uninstall
I have created a C# app with an installer. The app needed a shell extension and after learning of the pitfalls of creating a shell extension with managed code I decided to go the route of using C++ ...
2
votes
1answer
143 views
Why would the PIDL for the control panel be different?
I see that one should do this to compare PIDLs: IShellFolder::CompareIDs().
In particular, I'm trying to detect if a given absolute PIDL (or relative) is that of the Control Panel.
However, in ...
1
vote
1answer
118 views
How to detect if a given PIDL is actually a .zip file or similar?
VS2010 introduced CMFCShellTreeCtrl which allows for a folder-browser tree ctrl to be dropped into our MFC apps.
However, there seems to be a serious lack of filtering capabilities in this class. ...
7
votes
1answer
220 views
Is there a way to detect if a monitor is plugged in?
I have a custom application written in C++ that controls the resolution and other settings on a monitor connected to an embedded system. Sometimes the system is booted headless and run via VNC, but ...
1
vote
1answer
330 views
Trying to use Shell object and FileSystemObject in VBScript for file manipulation
I am trying to recursively loop through hundreds of directories, and thousands of JPG files to gather sort the files in new folders by date. So far, I am able to individually GetDetailsOf the files ...
0
votes
1answer
147 views
Customize default taskbar tasks in Windows 7 taskbar “jump list”
I have a program A.exe that bootstraps another process B.exe, passing dynamic command line arguments to B.exe. The default Windows 7 taskbar task list will provide an option to start another instance ...
0
votes
2answers
328 views
How to get Windows Explorer's selected files from within C#?
I need to get the current collection of files that are selected in Windows Explorer. I found the following code from here.
I'm not quite there, though. For one thing, where does GetForegroundWindow ...
0
votes
0answers
61 views
CLR dll for registering Context Menu in Window Explorer
I am working on my c# application and get stuck in right click context integration in window explorer.
Is there any dll that i can use directly to -
1. Can add context menu with fly out.
2. When click ...



