|
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 to get to with it? Is there additional overhead that...
Started by Pete McKinney on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can write a simple....
At the risk development in C#.
Of looking like a shill, EZShellExtensions is a wonderful (but non-free) framework for shell extensionA Raymond's post: Do not write in-process shell extensions in managed code .
|
|
Hello.
I'm trying to debug shell extension (IContextMenu) in Windows 7 with Visual C++ 2008. I have set DesktopProcess=1 in the registry and set host app to explorer.exe. But when I start the debugger, it launches explorer.exe and then detaches from the...
Answer Snippets (Read the full thread at stackoverflow):
You should take a look at gflags....
This should launch the just-in-time debugger at the call and give you an idea of what is going on .
You could try putting a DebugBreak() call in your code .
Try launching explorer and THEN attaching the debugger to it .
|
|
Hi,
I have created a Windows Shell Extension using ATL (Visual Studio 2008). It has the following modules and each module is a separate ATL Simple Object with its own .rgs file for registration:-
IShellFolder/IShellView -> For a virtual drive in windows...
Started by A9S6 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
See here for....
Verclsid.exe first loads the shell extensions and does a quick check on them before it sends an 'ok' to the shell indicating that it's safe to load the extension.
Won't let your extension getting loaded.
|
Ask your Facebook Friends
|
Hi,
I am looking for a Windows Explorer shell extension that will install a column handler to display the targets of shortcuts and bookmarks (ie .LNK and .URL files).
Please tell me that such an extension exists so that I don’t have to resort to writing...
Started by Synetech inc. on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
I don't know of any extension but xplorer² has a 'shortcut to' column that shows information about.
|
|
Hi all,
I am trying to get file extension for a file in shell script. But without any luck.
The command I am using is
file_ext=${filename##*.}
and
file_ext = $filename |awk -F . '{if (NF>1) {print $NF}}'
But both of the commands failed to put value...
Started by vijay.shad on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Variable1="string" # assign a string value variable3=`command` # assign output from command variable2=$(command) # assign output from command
Notice that you cannot put a space after the variable, because... .
You have to be careful when declaring variables.
|
|
I want to create a file that only resides in memory... In looking through some documentation I saw a recommendation to use a shell extension as a virtual file. Im not sure that is a workable solution but I would like to know
Is it a good approach (or ...
Answer Snippets (Read the full thread at stackoverflow):
As I understand....
Win32 API may have something akin to mmap() but I don't know it .
Is mmap() available? If not, I think BerkeleyDB has been ported to Windows so you should be able to use that .
You don't say on which plateform you are but I'm guessing Windows .
|
|
I would like to write a shell extensions to completely customize the display of a particular folder, ala the Assembly Cache Viewer (browse to c:\windows\assembly and you will see what I mean). Which COM interfaces are responsible for providing these hooks...
Started by Adam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Example problem: If you target....
This article illustrates the process of creating custom shell namespace extensions using C# .
With the .NET Framework Extending the Windows shell with namespace extensions allows you to create.
|
|
I have a directory with automatically generated files that all end with the .sample extension. I would like to have a way to remove the .sample extension from them all in one terminal command.
I tried this:
mv ./{$1}*.sample ./$1
But it doesn't work because...
Started by rogeriopvl on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
Time :~)
These expansions also support shell wildcards:
$ echo "${FILENAME%.*}" 140909_stats_report.
|
|
Hello all,
I have this Shell script and I've managed to muck it up and I was hoping I could be corrected and put on the right path and hopefully add a few things that I am not competent enough to do myself. I have put what I want do as comments in the...
Started by Abs on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So $(($x-$y)) instead of piping to bc
Many things are... .
Done
4) You can do basic arithmetic in bash with double parens .
Where is $line defined?
2) Do you ever use $i ?
3) You can loop over extensions via
for ext in avi mov mpg wmv; do ffmpg ...
|
|
On Windows 7 Ctrl + Shift + N works but not on Vista. I found this http://www.baxbex.com/products.html
but it doesn't install correctly on Vista.
So any alternative including tweaking the registry ?
Started by asksuperuser on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Judging?
CFI's ShellToys will....
Barring a spot-on answer that involves a shell extension, what about an AutoHotkey script? (I don't "shell extension" for Windows XP's Explorer has always just been Alt+F+W+F (File|New|Folder).
|