MSFN Forum: Here's some shell extensions... - MSFN Forum

Jump to content


  • 11 Pages +
  • « First
  • 4
  • 5
  • 6
  • 7
  • 8
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

Here's some shell extensions... what's your favorite? :P Rate Topic: ***** 2 Votes

#101 User is offline   spiritpyre 

  • Grand Poobah
  • PipPip
  • Group: Members
  • Posts: 191
  • Joined: 28-April 05

Posted 10 April 2006 - 07:50 AM

View Postslimzky, on Mar 29 2006, 01:37 AM, said:

what happened to Spiritpyre? where is he?


yeah... sorry i hvaen't been on in awhile. I've been in over my head at school and trying to make a comeback before it affects my gpa. Unfortunately, I still have a few weeks left but I do have some good news. slimzky, Djé. I finally got around to reinstalling VisStudio again and have the basic code for the two extensions ready -- BUT I'm almost finished on a big update that will affect all of my extensions, so I'm just gonna finish up and then I'll post everything at the same time. If there aren't any nasty surprises at school, hopefully it'll only take a few days. I'll try to check out the new cmd & inf when i finish up with that.

eidenk good news for you too. If you look back a few pages somewhere in this thread I was planning on just such an idea. I was calling it my 'SubMenu Project' but was trying to add support for parsing the info from a text file (as unfortunately the simplest c++ read technique wasn't working... :angry: ). anyway with all i've had going on I've decided I'm gonna drop that support-- at least for the time being, and just use the registry based part of the code. A config utility still needs to be written and I need to either find an old build or weed out the incomplete file-parsing code from the current build... sorry don't have any kind of ETA yet though... I would also like to release standalone exes for all of my extensions with SubMenu Pack (most of these are already finished except the newer extensions). The standalones would also come in nice if someone wanted to use them in apps such as DropBar (see 2nd post) if someone wanted to use them from the Windows Explorer Toolbar. Again no ETA, but hopefully I'll be able to at least get started on it by the weekend.

This post has been edited by spiritpyre: 10 April 2006 - 11:25 AM



#102 User is offline   spiritpyre 

  • Grand Poobah
  • PipPip
  • Group: Members
  • Posts: 191
  • Joined: 28-April 05

Posted 14 April 2006 - 08:56 PM

Posted new versions of everything in the first post [here]. I tested the links and extensions from school and everything worked fine. Added ability to install on Nonadmin accounts and use custom captions on all of them (as opposed to just some). Also released UpOneLevel and CmdPromptHere.

The only problem I noticed was that, as of right now, Cmd Prompt Here (actually cmd.exe) won't work with UNC paths so you have to map them to a drive letter and work only through the mapping. But it works great for all local paths and mapped network paths. If I get ambitous I may try to find some kind of workaround for this, but I have finals and end of semester tests coming up so I'm going to be pretty preoccupied for the next couple of weeks. I tried to test everything pretty thoroughly but if anyone has problems, suggestions, or ideas please let me know (I'll might some details too). and FYI - if you install to a Nonadmin account you'll have to change the default path to somewhere where you will have write access to. Enjoy.

This post has been edited by spiritpyre: 14 April 2006 - 09:04 PM


#103 User is offline   HyperHacker 

  • Just plain nuts
  • PipPipPip
  • Group: Members
  • Posts: 473
  • Joined: 01-May 05

Posted 15 April 2006 - 04:47 AM

View Posteidenk, on Jan 5 2006, 11:31 AM, said:

Quote

Anyone know where I can get an extension that will let me open a folder in a new window from the context menu?

You don't need an extension for doing this. Editing the registry is enough :

REGEDIT4

[HKEY_CLASSES_ROOT\Directory\shell\New Window]
@="Open in New &Window"

[HKEY_CLASSES_ROOT\Directory\shell\New Window\Command]
@="explorer.exe %1"

Nice tweak, but it doesn't show up on desktop icons. Is there a way to do this?
BTW I added a line that you seem to have missed (@="Open in New &Window").

This post has been edited by HyperHacker: 15 April 2006 - 04:48 AM


#104 User is offline   slimzky 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 412
  • Joined: 09-February 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 15 April 2006 - 06:50 AM

@spiritpyre, thank you very much dude!!!! :thumbup

u know the "uponelevel" shellext will be very useful for those who are trying to mimic the looks of Woindows Vista like me. because i only use back & forward button in explorer. its pain in the a** without up one level.. but now its easier :D

#105 User is offline   spiritpyre 

  • Grand Poobah
  • PipPip
  • Group: Members
  • Posts: 191
  • Joined: 28-April 05

Posted 16 April 2006 - 09:46 AM

View PostHyperHacker, on Apr 15 2006, 06:47 AM, said:

View Posteidenk, on Jan 5 2006, 11:31 AM, said:

Quote

Anyone know where I can get an extension that will let me open a folder in a new window from the context menu?

You don't need an extension for doing this. Editing the registry is enough :

REGEDIT4

[HKEY_CLASSES_ROOT\Directory\shell\New Window]
@="Open in New &Window"

[HKEY_CLASSES_ROOT\Directory\shell\New Window\Command]
@="explorer.exe %1"

Nice tweak, but it doesn't show up on desktop icons. Is there a way to do this?
BTW I added a line that you seem to have missed (@="Open in New &Window").


the only thing I can see is that you might need to put the path in quotes like so:

[HKEY_CLASSES_ROOT\Directory\shell\New Window\Command]
@="explorer.exe \"%1\""

don't know if that's the problem, but since the default desktop path contains spaces it might make sense.

#106 User is offline   eidenk 

  • MSFN Addict
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,527
  • Joined: 28-March 05

Posted 17 April 2006 - 07:13 AM

View PostHyperHacker, on Apr 15 2006, 04:47 AM, said:

View Posteidenk, on Jan 5 2006, 11:31 AM, said:

Quote

Anyone know where I can get an extension that will let me open a folder in a new window from the context menu?

You don't need an extension for doing this. Editing the registry is enough :

REGEDIT4

[HKEY_CLASSES_ROOT\Directory\shell\New Window]
@="Open in New &Window"

[HKEY_CLASSES_ROOT\Directory\shell\New Window\Command]
@="explorer.exe %1"

Nice tweak, but it doesn't show up on desktop icons. Is there a way to do this?
BTW I added a line that you seem to have missed (@="Open in New &Window").

Well you don't really need that line you've added. It displays as "New Window" on my folder context menu (I am on WinME) and it also works on the folders or shortcut to folders that are on the Desktop but it is redundant there as it will not do a different job than the open command.

I don't know if I posted this one already or not (in your style this time) :

REGEDIT4

[HKEY_CLASSES_ROOT\Directory\shell\rootexplore]
@="&Root Explore"

[HKEY_CLASSES_ROOT\Directory\shell\rootexplore\command]
@="Explorer.exe /e,/root,/idlist,%I"


It opens the folder as root in explorer tree view. Quite handy sometimes.

This post has been edited by eidenk: 17 April 2006 - 07:05 AM


#107 User is offline   Djé 

  • accent artist
  • PipPipPip
  • Group: Members
  • Posts: 359
  • Joined: 10-January 06

Posted 18 April 2006 - 03:42 PM

Gorgeous!
Many thanks, SpiritPyre

#108 User is offline   Nighted 

  • Junior
  • Pip
  • Group: Members
  • Posts: 52
  • Joined: 10-November 05

Posted 30 May 2006 - 08:31 AM

eidenk,

That registry fix for opening a window in a new window is interesting, but not fool proof.

You can't open a folder that's named with certain characters, like "-= Photos =-" for example. I use folders like this all of the time to keep them at the top of the sorting order.


Thanks though.

#109 User is offline   eidenk 

  • MSFN Addict
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,527
  • Joined: 28-March 05

Posted 03 June 2006 - 04:37 PM

I have no problem using it with a -= Photos =- folder here.

#110 User is offline   kof94 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 433
  • Joined: 28-November 05

Posted 05 September 2006 - 05:47 PM

@Spiritpyre

You may need to change your download provider buddy. All your links are dead!

#111 User is offline   KenanBalamir 

  • Junior
  • Pip
  • Group: Members
  • Posts: 58
  • Joined: 16-April 05

Posted 08 September 2006 - 02:33 PM

Are you update ?

#112 User is offline   geo411m 

  • Junior
  • Pip
  • Group: Members
  • Posts: 78
  • Joined: 03-June 05

Posted 09 September 2006 - 05:44 PM

does anyone have the file SP Ext Pack 1.0. if so can it be put up and rapid share or something.. thanks in advance

#113 User is offline   bigbadmoshe 

  • Group: Members
  • Posts: 1
  • Joined: 26-September 06

Posted 26 September 2006 - 08:38 AM

hey man i love these but the links are all dead can you repost new links please

#114 User is offline   pedro80 

  • Newbie
  • Group: Members
  • Posts: 17
  • Joined: 24-April 05

Posted 04 October 2006 - 01:57 AM

I'm bumping this in hope of update of download mirrors, or maybe somone else would care to upload these files elsewhere if they have already downloaded them..

#115 User is offline   BLeU 

  • Newbie
  • Group: Members
  • Posts: 39
  • Joined: 20-September 06

Posted 23 October 2006 - 08:41 AM

@spiritpyre

Download links are all dead..Please re up..

#116 User is offline   skywalka 

  • Newbie
  • Group: Members
  • Posts: 15
  • Joined: 25-August 05

Posted 09 November 2006 - 12:23 PM

The CMD entry should be available when rightclicking any file or folder. For me it is only available when rightclicking an empty area of an open window. When rightclicking a file the CMD should open at that file.

SendToToys does this.
http://www.gabrieleponti.com/software/

#117 User is offline   skywalka 

  • Newbie
  • Group: Members
  • Posts: 15
  • Joined: 25-August 05

Posted 09 November 2006 - 12:47 PM

I'm trying to do some toubleshooting. Every time I try to uninstall the extension pack I get this message:

---------------------------
Uninstaller Error
---------------------------
An error occurred while trying to remove SpiritPyre Extensions Pack. It may have already been uninstalled.



Would you like to remove SpiritPyre Extensions Pack from the Add or Remove programs list?
---------------------------
Yes No
---------------------------

#118 User is offline   spiritpyre 

  • Grand Poobah
  • PipPip
  • Group: Members
  • Posts: 191
  • Joined: 28-April 05

Posted 27 November 2006 - 08:57 PM

@all: sorry I haven't checked back in awhile. It appears that the file-host was down for awhile but I just tested it and it worked ok...

@skywalka: I'll try to check out the Extensions Pack but I have finals coming up and school comes first. I remember that I had a different script for that package than for the rest so its possible that I might have made a mistake.

As for the CmdPromptHere it is working correctly. I never added functionality to do that work on the file/folder menus, just the background menu because the other two could be done by a registry hack. BUT I do like the idea...just never thought to add it. I might try to add it if I get time.

#119 User is offline   Input 

  • Group: Members
  • Posts: 1
  • Joined: 01-December 06

Posted 01 December 2006 - 01:45 PM

Very nice list of shell extensions! Thanks for the links! :thumbup

#120 User is offline   K_O_ 

  • Newbie
  • Group: Members
  • Posts: 15
  • Joined: 24-August 06

Posted 02 December 2006 - 12:28 AM

Hey spiritpyre, thanks for sharing buddy, i'm into this sort of tweaking
myself..
I find i'm using either reshack, exescope, notepad or XVi32 hex editor
that much , that I made my own installer packages that also add the
right click menu entries to open files with either of the progs I listed
above..
Only seems to work on Win 95 through to Win 2000 though, still working
out the reg entries needed to make them work on XP / 2003..

Posted Image
Posted Image
Posted Image

I have a package that allows to view all files binaries to via the right
click method called PEEK, downloaded it off the net somewhere a while
ago now..
Posted Image

Share this topic:


  • 11 Pages +
  • « First
  • 4
  • 5
  • 6
  • 7
  • 8
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy