PC Review


Reply
Thread Tools Rate Thread

Any XP replacement MenuSnap?

 
 
Flounder
Guest
Posts: n/a
 
      9th Nov 2003

I need to be able to sort my Internet Explorer Favorites. I know how
to do this temporarily but need to make it "stick" on a permanent
basis.

Any ideas?

Flounder
 
Reply With Quote
 
 
 
 
Wayne Boatwright
Guest
Posts: n/a
 
      9th Nov 2003
Flounder <(E-Mail Removed)> wrote in
news:(E-Mail Removed):

>
> I need to be able to sort my Internet Explorer Favorites. I know how
> to do this temporarily but need to make it "stick" on a permanent
> basis.
>
> Any ideas?
>
> Flounder
>


Mine stay sorted until I add new ones. Then I just sort again.

What's the problem?

Wayne
 
Reply With Quote
 
Flounder
Guest
Posts: n/a
 
      9th Nov 2003
On Sun, 09 Nov 2003 03:48:04 GMT, Wayne Boatwright
<(E-Mail Removed)> wrote:

>Flounder <(E-Mail Removed)> wrote in
>news:(E-Mail Removed):
>
>>
>> I need to be able to sort my Internet Explorer Favorites. I know how
>> to do this temporarily but need to make it "stick" on a permanent
>> basis.
>>
>> Any ideas?
>>
>> Flounder
>>

>
>Mine stay sorted until I add new ones. Then I just sort again.
>
>What's the problem?
>
>Wayne


Nuthin... I guess you're just the sort guru of the Favorites file!

How'd ya do it?

Flounder
 
Reply With Quote
 
Wayne Boatwright
Guest
Posts: n/a
 
      9th Nov 2003
Flounder <(E-Mail Removed)> wrote in
news:(E-Mail Removed):

> On Sun, 09 Nov 2003 03:48:04 GMT, Wayne Boatwright
> <(E-Mail Removed)> wrote:
>
>>Flounder <(E-Mail Removed)> wrote in
>>news:(E-Mail Removed):
>>
>>>
>>> I need to be able to sort my Internet Explorer Favorites. I know how
>>> to do this temporarily but need to make it "stick" on a permanent
>>> basis.
>>>
>>> Any ideas?
>>>
>>> Flounder
>>>

>>
>>Mine stay sorted until I add new ones. Then I just sort again.
>>
>>What's the problem?
>>
>>Wayne

>
> Nuthin... I guess you're just the sort guru of the Favorites file!
>
> How'd ya do it?
>
> Flounder
>


Are you serious? Right click on the Favorites drop down menu and select
"sort by name".

If you've already done this and the sort didn't remain, then there's
something else wrong I know nothing about. Mine stays sorted until I add
more favorites. I don't know of a way to automate the sorting process
and avoid resorting after additions.

Cheers
Wayne
 
Reply With Quote
 
Flounder
Guest
Posts: n/a
 
      9th Nov 2003
On Sun, 09 Nov 2003 04:40:23 GMT, Wayne Boatwright
<(E-Mail Removed)> wrote:

>Flounder <(E-Mail Removed)> wrote in
>news:(E-Mail Removed):
>
>> On Sun, 09 Nov 2003 03:48:04 GMT, Wayne Boatwright
>> <(E-Mail Removed)> wrote:
>>
>>>Flounder <(E-Mail Removed)> wrote in
>>>news:(E-Mail Removed):
>>>
>>>>
>>>> I need to be able to sort my Internet Explorer Favorites. I know how
>>>> to do this temporarily but need to make it "stick" on a permanent
>>>> basis.
>>>>
>>>> Any ideas?
>>>>
>>>> Flounder
>>>>
>>>
>>>Mine stay sorted until I add new ones. Then I just sort again.
>>>
>>>What's the problem?
>>>
>>>Wayne

>>
>> Nuthin... I guess you're just the sort guru of the Favorites file!
>>
>> How'd ya do it?
>>
>> Flounder
>>

>
>Are you serious? Right click on the Favorites drop down menu and select
>"sort by name".
>
>If you've already done this and the sort didn't remain, then there's
>something else wrong I know nothing about. Mine stays sorted until I add
>more favorites. I don't know of a way to automate the sorting process
>and avoid resorting after additions.
>
>Cheers
>Wayne


Yeah... That's what I've been doing, too.

Which is why I am still looking for a program to make the changes
permanent.

Thank you, anyway.

Flounder
 
Reply With Quote
 
omega
Guest
Posts: n/a
 
      9th Nov 2003
Flounder <(E-Mail Removed)>:

> Which is why I am still looking for a program to make the changes
> permanent.


Pretty sure "permanent" is not an option... You can automate sorting
to alphabetical, by using a .reg file to delete that registry key which
contains sorting data. A main strategy is pointing a .bat at the .reg
file, setting it to process before Windows loads.


--
Karen S.

 
Reply With Quote
 
Flounder
Guest
Posts: n/a
 
      9th Nov 2003
On Sun, 09 Nov 2003 06:08:00 -0800, omega <(E-Mail Removed)> wrote:

>Flounder <(E-Mail Removed)>:
>
>> Which is why I am still looking for a program to make the changes
>> permanent.

>
>Pretty sure "permanent" is not an option... You can automate sorting
>to alphabetical, by using a .reg file to delete that registry key which
>contains sorting data. A main strategy is pointing a .bat at the .reg
>file, setting it to process before Windows loads.


Thanks, Karen...

That sounds like what I'm after. Do you have any pointers to
instructions on how to do this sort of thing? (I'm well qualified in
the area of screwing up my registry and thus need all the help I can
get!)

..Flounder
 
Reply With Quote
 
omega
Guest
Posts: n/a
 
      9th Nov 2003
Flounder <(E-Mail Removed)>:

> >Pretty sure "permanent" is not an option... You can automate sorting
> >to alphabetical, by using a .reg file to delete that registry key which
> >contains sorting data. A main strategy is pointing a .bat at the .reg
> >file, setting it to process before Windows loads.

>
> Thanks, Karen...
>
> That sounds like what I'm after. Do you have any pointers to
> instructions on how to do this sort of thing? (I'm well qualified in
> the area of screwing up my registry and thus need all the help I can
> get!)



The key you would be deleting is this one:

[HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites]

To have a .reg file that deletes a key, you stick a (-) minus sign inside
of the first bracket.

So then your reg file would be like this:

-----------------------------------------------------------------sortfavs.reg
REGEDIT4

[-HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites]

------------------------------------------------------------------sortfavs.reg

You can test the file by right-clicking and selecting "merge." But what you
really want to get done next is a way to run that file, without having to do
all the extra clicking.

So a simple .bat file for that. The command to merge a reg file, is just
"REGEDIT filename.reg". To do it without prompt, the switch is /S (silent).

So then your bat would be like this:

-----------------------------------------------------------------sortfavs.bat
REGEDIT /S sortfavs.reg
cls
-----------------------------------------------------------------sortfavs.bat

Notice that I didn't choose to use a path name to the sortfavs.reg file in
the command above. I would therefore need to make sure that sortfavs.reg
is in the same folder as sortfavs.bat, or else that it is somewhere in
the defined paths (eg the windows directory, etc).

You could create the two files above, stick them together anywhere. Then
create a shortcut from the sortfavs.bat file, to your Startup folder. The
shortcut will actually be a .pif, and you can access properties of that
..pif, to choose "close on exit, run minimized, and change icon," etc.

ITEM. The regkey I gave, it only works in Windows. *

Ok, I feel I did sort of a sloppy job with these instructions. So let me
know what I might need to rewrite, and I'll get back to it in the AM
tomorrow, when I've got a good block of free time to try to be coherent.



--
Karen S.


* Reason so it because the reg path I used was part of a virtual branch,
HKCU (HKEY_CURRENT_USER). I'll skip going into that detailed in this post.
Just the quick sum of it: To have these files work at a pre-Windows level,
the path needs to come from the HKEY_USERS\(name) key, not the
HKEY_CURRENT_USER key.










 
Reply With Quote
 
omega
Guest
Posts: n/a
 
      9th Nov 2003
> -----------------------------------------------------------------sortfavs.reg
> REGEDIT4
>
> [-HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites]
>
> ------------------------------------------------------------------sortfavs.reg
>
> You can test the file by right-clicking and selecting "merge."


Egads!

Correct the one above to this:

-----------------------------------------------------------------sortfavs.reg
REGEDIT4

[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites]

------------------------------------------------------------------sortfavs.reg

Copy between the two scissors markers (-----), out into your notepad. Make
sure no breaks get in there, between the brackets.

Nature of my mistake with the first key. I used the shorthand HKCU, which
works fine when dealing with the GUI of a registry editor. Where I was not
thinking, is that the shorthand does not work for REGEDIT.EXE command line.
It wants the branch names spelled out all the way, here -- HKEY_CURRENT_USER.


Don't lose faith, despite that error, the rest of the operation works fine.
And it is safe and good to delete that key on all Windows OS; I've checked
places like www.regedit.com to verify the compatibility.


 
Reply With Quote
 
Flounder
Guest
Posts: n/a
 
      10th Nov 2003
On Sun, 09 Nov 2003 14:12:59 -0800, omega <(E-Mail Removed)> wrote:

>> -----------------------------------------------------------------sortfavs.reg
>> REGEDIT4
>>
>> [-HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites]
>>
>> ------------------------------------------------------------------sortfavs.reg
>>
>> You can test the file by right-clicking and selecting "merge."

>
>Egads!
>
>Correct the one above to this:
>
>-----------------------------------------------------------------sortfavs.reg
>REGEDIT4
>
>[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Favorites]
>
>------------------------------------------------------------------sortfavs.reg
>
>Copy between the two scissors markers (-----), out into your notepad. Make
>sure no breaks get in there, between the brackets.
>
>Nature of my mistake with the first key. I used the shorthand HKCU, which
>works fine when dealing with the GUI of a registry editor. Where I was not
>thinking, is that the shorthand does not work for REGEDIT.EXE command line.
>It wants the branch names spelled out all the way, here -- HKEY_CURRENT_USER.
>
>
>Don't lose faith, despite that error, the rest of the operation works fine.
>And it is safe and good to delete that key on all Windows OS; I've checked
>places like www.regedit.com to verify the compatibility.
>


Works like the proverbial charm!

Hat's off to you for your help!!

Flounder
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Any way to install replacement instance of Outlook on replacement =?Utf-8?B?amF6enluZG4=?= Microsoft Outlook Installation 2 19th Jan 2006 03:51 PM
MenuSnap (no install) Tramp Freeware 0 16th Feb 2005 07:46 PM
Event Log Replacement Parameters and WriteEntry() - Are replacement parameters deprecated? Mike Microsoft Dot NET Framework 1 21st Oct 2004 10:50 PM
Replacement CD (Windows 2000 Pro Replacement CD) Joe Microsoft Windows 2000 4 29th Dec 2003 10:06 PM
Replacement CD (Windows 2000 Replacement CD) Joe Microsoft Windows 2000 2 29th Dec 2003 10:04 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:35 PM.