Removing Start Menu Icons? - Dash 3G, Snap General

Hello!
I am returning to Windows Mobile from Android. I purchased a T-Mobile Dash 3G, and am liking it so far, however I'm having a heck of a time trying to figure out how to remove a lot of the applications from the start menu because they're really cluttering things and I want them gone. I can't access them through the File Explorer. When I find something, for example TeleNav, that I want to delete, the option to delete it is grayed out.
If anyone knows of a tweak, a hack, or a .cab I need to install to get this done, I would be GREATLY apprecative!
Have an awesome day!

here is the app called totalcommander download it install from phone. then you can go into the windows folder and then go into the start menu folder and from there you can create new folders to uncluter or delete what you dont want.

You can remove elements in Windows/Start Menu
You can also make folders and sub-categorize items to make the start menu clutter free.
The file explorer all ready on your device will support this.
You can change the start menu order using a registry editor and editing HKEY_CURRENT_USER\Software\Microsoft\Shell\StartMenu\Order

can i change the folder icon?

Devora said:
can i change the folder icon?
Click to expand...
Click to collapse
Yes you can, Just kidding you cant...

Have you searched? Look here: http://forum.xda-developers.com/showthread.php?t=567080.
I hope that helps,

cswroe said:
.
You can change the start menu order using a registry editor and editing HKEY_CURRENT_USER\Software\Microsoft\Shell\StartMenu\Order
Click to expand...
Click to collapse
i have tried to use this method and changed the order but the start menu order still isnt changed. any ideas why?

flamekid said:
i have tried to use this method and changed the order but the start menu order still isnt changed. any ideas why?
Click to expand...
Click to collapse
You may have to restart.

Related

Hide all Programs, Customize Start Menu

Hi folks,
My first post on the list here. Hopefully I've come to the right place.
I have a M1500 SPV pocket pc device. I would like to customize the Start Menu items by removing two of them -Active Sync and Internet Explorer. I have made a cab file which makes changes to the registry and would like (if possible) to delete the above mentioned items from the start menu via making a change to the registry. I know I can delete the shortcut links from the Start Menu folder but I would prefer to do it via a registry edit if possible. Or if possible, use the same cab to delete the shortcuts from the Start Menu (not sure if this is possible!?)
I'm also looking for a way to hide *all* programs from the Start->Programs screen. Any ideas how to achieve this via a registry hack?
Best Regards and thanks a lot for any help,
dav7
Dan - do you want to delete the start menu ("\windows\start menu" and all subfolders and entry on the start menu?)
Or remove most recently used entries on the start menu?
Or programs in "\windows\start menu"?
Registry isn't really your friend here, other then for the MRU list.
V
Hi vijay555,
Thanks for the quick reply. I only want to remove certain programs from Start Menu, this one...
>Or programs in "\windows\start menu"?
I know if I delete those programs from My Device->Windows->Start Menu then it will remove them from the Start Menu without deleteing the actual program. I was just wondering if there was a way to do that via the registry? i.e. perhaps there is a key in the registry somewhere that lists the items to put in the Start Menu following a hard reset?
I am also looking to hide all programs from the main Programs page i.e. the Programs screen\page that shows all the actual Programs. I was wondering if there is a way to do that via the registry?
I know for example I am able to hide things that reside in the Control Panel settings i.e. Connections->Beam. I was wondering if there is a similar way to do that in the Programs screen?
Hope that is clear! or clearer!
Cheers,
dav
dAV:
sounds like you want to edit your startmenu.
Get a file explorer like GSFinder/Resco etc.
navigate to \windows\start menu
and delete/move everything you want to clear out.
V
perhaps there is a key in the registry somewhere that lists the items to put in the Start Menu following a hard reset?
Click to expand...
Click to collapse
heh problem is that the registry is reset when you do a hardreset
so it would just go back to default
same thing with the content of your \windows\start menu
all shortcuts would reappear after a hardreset
unless you made a program in the extented rom which removed them when it was run
Hi,
Thats basically what I'm trying to do. I've made a cab file which when run sets a lot of registry settings following a hard reset. As you said, after a hard reset the device is restored to its normal build. My cab runs right after a hard reset to make sure the device is configured the way I want it. Are there any keys in the registry which are responsible for configuring the Start Menu? I cant seem to find one for Start Menu, only the New Menu
An alternative approach is running an exe which deletes the Programs from the Start Menu folder...but I would prefer to parcel it all up in a tiny little cab file if possible...
Thanks again for any suggestions...
Cheers,
dav
i never seen anything like it in the reg
Thats a pity. I cant find anything either. I prefer to do as much as possible in either the CPF or a cab. exe's do the job but there big and more complicated to change. Neverthless seems I'm stuck with an exe for now. Oh well...
Cheers,
Dav
Hi, Dav!
Even though there is no registry solution, exe file is not your only option.
Cabs can contain a setup.dll that exports 4 functions which the system calls before and after installation or uninstall (separate function for each event).
Check MSDN for setup.dll specifics.
Get a cab file that will start up automatically after a hardreset to delete all the fies in the start menu? I think if you delete the files in the start menu, it will be removed in the Programs list. It is basically a short cut file.
levenum said:
Hi, Dav!
Even though there is no registry solution, exe file is not your only option.
Cabs can contain a setup.dll that exports 4 functions which the system calls before and after installation or uninstall (separate function for each event).
Check MSDN for setup.dll specifics.
Click to expand...
Click to collapse
Excellent! Thanks a lot, I'll look into that.
Cheers!
Dav
hanmin said:
Get a cab file that will start up automatically after a hardreset to delete all the fies in the start menu? I think if you delete the files in the start menu, it will be removed in the Programs list. It is basically a short cut file.
Click to expand...
Click to collapse
Hi Hanmin,
I think you are correct...if you delete *all* files and folders from the Start Menu it will remove the files which are directly situated in the Start Menu folder as well as all files in the Program folder which also resides in the Start Menu folder. This will remove items from both the Start menu and the Programs screen. This is ok for me though as luckily I want to also hide all Programs from the Program screen. A lot of the device functionality has to be hidden from the end users, to prevent them from fiddling with anything and to also hide things like Games etc...
Cheers,
Dav
Hi,
I've managed to get the setup.dll working. Its really useful and stops me needing an exe for many things. However, is it possible to get the dll to show a Dialog window? I've tried incorporating a dialog to the dll but it never seems to show up. I need the user to set a value and was considering doing it via the setup dll, but so far not been able to get the dialog, or even a Message Box to show up when called within the dll?
Any ideas?
Thanks,
Dav
Here is a line of code from Install_Init function that's working perfectly for me:
Code:
g_dlg = CreateDialog(g_hInst, MAKEINTRESOURCE(IDD_MSGDLG), hwndParent, MyDlgProc);
I save g_hInst in DllMain.
As for message boxes, just call them as usual, never had a problem there, but you need to make sure you put your code in the correct function or it will not be called at the right time.

shortcut to games folder?

hi folks,
have spent most of the day searching the forum and must be missing this
is there a way to create a shortcut that will open the games folder? wanting to use with slithers c++ cube
many thanks
chris
\Windows\Start Menu\Programs\games
ather90 said:
\Windows\Start Menu\Programs\games
Click to expand...
Click to collapse
LMFAO!!!!!! He should ask more questions in the Slither Cube thread....
ather90 said:
\Windows\Start Menu\Programs\games
Click to expand...
Click to collapse
cheers for the assistance I tried that one, the link comes up as intrusted / unsigned
works fine as a direct link through programs , just not through the cube
any ideas?
First Go here then try here
no joy so far
tries shortcut creator, been through the lnk thread... again....
tried google...
there must be a way to shortcut to a specific folder???
if you read the actual 051 thread, slither discusses this many times and says it won't be available until 052
I think it involves passing a parameter to fileexplorer...
Look at this post: http://forum.xda-developers.com/showpost.php?p=2120755&postcount=140
chrisd1a1 said:
hi folks,
have spent most of the day searching the forum and must be missing this
is there a way to create a shortcut that will open the games folder? wanting to use with slithers c++ cube
many thanks
chris
Click to expand...
Click to collapse
create a link to your file explorer
tap and hold
select properties
add '-windows\start menu\games' to the end of the link so you should end up with something like
program files\file explorer.exe -windows\start menu\games
cheers for the help folks, still no go.
will have to see if slither can resolve in the next release
bbobeckyj said:
create a link to your file explorer
tap and hold
select properties
add '-windows\start menu\games' to the end of the link so you should end up with something like
program files\file explorer.exe -windows\start menu\games
Click to expand...
Click to collapse
I got it wrong, no '-' before the address
"fexplore.exe" windows\start menu\programs\Games
exactly as above in the properties of any .LNK will do it
bbobeckyj said:
I got it wrong, no '-' before the address
"fexplore.exe" windows\start menu\programs\Games
exactly as above in the properties of any .LNK will do it
Click to expand...
Click to collapse
cheers mate but vust links to the 'my device' page on file explorer no matter what i do.
have looked into and edited folderview.exe so it should route to an alternative folder but the signature is not taking via msigner.
was thinking that this might be the 'simple' way but must be doing something wrong, was thinking set the shortcut to a generic option (ie Windows/Start Menu/Programs/Test) would give some flexibility (we could just add/rename folders in the program list
any idea what i am doing wrong on the resign?
edit: unsign/resign done will work on the edit to see if i can get this to work
chrisd1a1 said:
cheers mate but vust links to the 'my device' page on file explorer no matter what i do.
have looked into and edited folderview.exe so it should route to an alternative folder but the signature is not taking via msigner.
was thinking that this might be the 'simple' way but must be doing something wrong, was thinking set the shortcut to a generic option (ie Windows/Start Menu/Programs/Test) would give some flexibility (we could just add/rename folders in the program list
any idea what i am doing wrong on the resign?
edit: unsign/resign done will work on the edit to see if i can get this to work
Click to expand...
Click to collapse
well i can find the path, edit the path and run on my xda...
but the dam think defaults to the program folder no matter what i do!!!!
anyone any ideas?????
Please try this It's part of Wisbar Advance 3, Start Panel. Files in folder my documents > my documents and exe put somewhere.
http://ike-dats.thez.info/public/startpanel.rar
If you have problems with startup (blank white page) and using wktask or programs like this, make exception to run always in background. Then to refresh list you must restart it.
IkE Blaster said:
Please try this It's part of Wisbar Advance 3, Start Panel. Files in folder my documents > my documents and exe put somewhere.
http://ike-dats.thez.info/public/startpanel.rar
If you have problems with startup (blank white page) and using wktask or programs like this, make exception to run always in background. Then to refresh list you must restart it.
Click to expand...
Click to collapse
Hi IkE Blaster, Spot on, works perfectly!!!! is it possible to edit the config to allow folks to choose the folder?
if this works, it is a configarable menu option that will work with any 3rd party app
all credit to you!!!!
hope you dont mind but have added the link to Slither's c++ cube thread
rename this .txt file to .LNK and you should have it
bbobeckyj said:
rename this .txt file to .LNK and you should have it
Click to expand...
Click to collapse
thanks for trying, this works as a seperate link but not through the cube??? for some reason it brings up Internet Explorer????
You can change the "url" of folder in config file, if you select for example start menu, than can you change folder tapping the top curtain. But you can go only in includes folder. I can't explain it, try it yourself
cheers man,
appreciate the work
thanks for your help
IkE Blaster said:
Please try this It's part of Wisbar Advance 3, Start Panel. Files in folder my documents > my documents and exe put somewhere.
http://ike-dats.thez.info/public/startpanel.rar
If you have problems with startup (blank white page) and using wktask or programs like this, make exception to run always in background. Then to refresh list you must restart it.
Click to expand...
Click to collapse
Is their a way to elaborate a bit further on this solution?? I have WA3 but no idea on how to use this?

Unhide system files

How can I unhide system files in HD2?
stef2000 said:
How can I unhide system files in HD2?
Click to expand...
Click to collapse
In File Explorer, click "Menu" and then "Show all files".
That should do the trick
johncmolyneux said:
In File Explorer, click "Menu" and then "Show all files".
That should do the trick
Click to expand...
Click to collapse
It does'nt work.
I tried to do what in "Leo Hints & Tips" for exp:
"1. Enable Hidden Default Games
Go to the Windows directory and copy bubblebreaker.exe and solitaire.exe to the games folder as shortcuts in Windows\Start Menu. Make sure to unhide system files to see the games listed."
I can't copy files as instructed (working with total commander) and if the files were copied I can't reach/see them.
I think you may have misunderstood the original instructions.
Open file manager (not total commander) and navigate to Windows folder.
Locate the file BubbleBreaker (it's 46K, not one of the others)
Highlight it and keep it pressed till you get the menu with "Copy" in it. Do Copy.
Scroll back to the top and go into "Start Menu\Programs\Games".
Do "Menu, Edit, Paste Shortcut".
As I'm a pedant, I renamed the shortcut, removing the "Shortcut to" prefix.
Then, when you go Start Menu & then Games, BubbleBreaker is in there.
Now I've just done that exactly as typed above, whilst describing it for you, so it should work for you.
Let us know if you still have a problem.
Hi,
It works!
Now I got the idea.
Thanks.
stef2000 said:
Hi,
It works!
Now I got the idea.
Thanks.
Click to expand...
Click to collapse
Glad to help
hidden "eT9MyWords.exe"
Hi,
I've made the change & so could shortcut the Games as suggested (great tip btw) - but when i go to do the same thing with "eT9MyWords.exe" i can't see it in the Windows directory or find it when i search.....
Any suggestions?
BGM said:
Hi,
I've made the change & so could shortcut the Games as suggested (great tip btw) - but when i go to do the same thing with "eT9MyWords.exe" i can't see it in the Windows directory or find it when i search.....
Any suggestions?
Click to expand...
Click to collapse
Don't know what to say mate - it's in my Windows folder. There's a bunch of files called eT9.Rhodium.xxxx and then eT9MyWords is after them (directly after eT9DeadKeys).
I take it you did unhide system files as previously suggested? (I'm not sure if you need to do that for the games suggestion).
I have a slide deferent question. I would like to delet exe file from thew windows folder but I can't because I can't select Delete, have anyone some advice?
delete exe file
it has been awhile since i have done this, also some files are impossible or almost impossible to delete.
if you have been trying to do it from ur phone, go instead, to your active sync/windows mobility center. click file mgt and browse contents of device, navigate to the exe u want to delete. i have done it before and it has worked on several ocassions. be careful on what u r deleting, you may want to do a google on it b/f u do it
if this does not do it, i got no clue hope this helps someone
johncmolyneux - special thanks to u for the hidden games trick, ? are there any other hidden games in the hd2 winmo 6.5 professional, or where i may find out?
AaBoyXX said:
I have a slide deferent question. I would like to delet exe file from thew windows folder but I can't because I can't select Delete, have anyone some advice?
Click to expand...
Click to collapse
Thanks johncmolyneux,
Got there in the end - I had shown system files, but seems like it somehow "reverted".
Cheers!

how can I recover start menu

Incidentally I have deleted both folders (programs) in Start menu folder
What would be the easiest way to recover all shortcuts (without reinstalling ROM again)?
yoinjo said:
Incidentally I have deleted both folders (programs) in Start menu folder
What would be the easiest way to recover all shortcuts (without reinstalling ROM again)?
Click to expand...
Click to collapse
What ROM are you on?
Rom - 1.66.405.2 (76641) wwe
Here you go mate. It's the program folder (from \windows\start menu\) zipped up.
Now be careful with it in future lol
Thank you
I can now add programs to quick links, but I still can't see anything inside start menu
yoinjo said:
Thank you
I can now add programs to quick links, but I still can't see anything inside start menu
Click to expand...
Click to collapse
Bizarre. Have you restarted since copying the shortcuts? (I don't actually believe that it will help, but it may)
I have restarted, it didn't help
There was another folder inside start menu (beside programs).
I am missing that one too Could you send me this one too, please
yoinjo said:
I have restarted, it didn't help
There was another folder inside start menu (beside programs).
I am missing that one too Could you send me this one too, please
Click to expand...
Click to collapse
The settings folder is empty for everyone, that's why I just gave you the programs folder. It's thrown me that you can't see anything in your start menu, even though you can add quicklinks. Maybe a hard reset is called for. That will definitely fix it, but it's obviously a pain.
I'll play a bit with [HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start]
yoinjo said:
I'll play a bit with [HKEY_LOCAL_MACHINE\Security\Shell\StartInfo\Start]
Click to expand...
Click to collapse
Good luck man
got icons back with reSTART
yoinjo said:
got icons back with reSTART
Click to expand...
Click to collapse
Nice one mate. Glad you got it sorted

Help a Windows Mobile Newb....

Sorry...As a former Symbian user (and Mac user) I am not so familiar with Windows Mobile file management.
How can I organize my apps into the folders I have in my "Start" menu?
Whenever I install something, it just dumps it there. I assume there must be a way to do it, but I cannot figure it out.
Thanks.
(Hoping it is not a registry tweak...why is nothing simple on Windows?)
try going through file manager and creating a new fodlers and move apps to that?
as above answer, but don't try moving anything pre installed because they will re appear when you soft reset.(I'm thinking particularly of the htc apps. there is a tweak to prevent it, but it can be surprising the first time you see it happen)
Sorry, but can I just move the apps to the pre-existing folders, say....
"Games"
or
"Internet," etc?
I want to just move them. How do I do that using the file manager?
I see a "Send..." option, but I am not sure what part of the file to send. IS that how I would 'move' something to a folder?
donalgodon said:
Sorry, but can I just move the apps to the pre-existing folders, say....
"Games"
or
"Internet," etc?
I want to just move them. How do I do that using the file manager?
Click to expand...
Click to collapse
It's a bit of a pain with file manager as you can (usually) only do 1 file at a time. Long-hold a shortcut and select cut. Then go to the folder you want it in and do menu, edit, paste.
If you use something like Resco Explorer or Total Commander then you can do multiple files at a time.
donalgodon said:
Sorry, but can I just move the apps to the pre-existing folders, say....
"Games"
or
"Internet," etc?
I want to just move them. How do I do that using the file manager?
Click to expand...
Click to collapse
from what i understand you just want to reorganize your start menu to look cleaner.
in the start menu you have shortcuts and folders. to access them you need to start file explorer and go to: my device > windows > start menu > programs. then just cut & paste
if you want, you can also make new folders - just tap on menu in file explorer.
some of the shortcuts/folders will reappear after reset. to prevent this you need to do a trick you can find under the "tips, tricks and reg tweaks" thread.
Thanks to all...got it...so far!
donalgodon said:
ahem......
How can I get to my device > windows > start menu > programs?
If I just boot my HD2 and go to the Start menu... all I see is the list of programs that I wish to move. If I long press on them, it says, "move to top"
Click to expand...
Click to collapse
Open file manager and navigate to \Windows\Start Menu\Programs then follow the instructions above to cut and paste the shortcuts.
I assume you'll want to create folders to put some shortcuts in, and you do that by going to menu and then new folder.

Categories

Resources