I haven't seen any mention as to whether it's ok to keep the apps that are installed on the SD Card when updating. Will they still work or should I uninstall before the update and then reinstall after? Thanks.
the apps still work, you just need to re-copy the shortcuts to windows\startmenu etc... i've had no problems
But...... if the apps have information in the registry then the information will be wiped and they wont work. Also there is no unistall information. Best to reinstall all apps again.
thanks, I suppose it's easy enough to reinstall if they didn't work but I would definitely try installing a new shortcut and see what happens. Thanks again
Heres what i did for those apps i keep on the storage card.
create links in the windows\start menu folder to the programs,
then apply those to home quicklinks,
then browse in a reg editor to
hklm\software\htc\manila\home
find the quicklink you just created and edit the path and icon path to point not to the link in start menu, but to the exe itself on the storage card.
Once all quicklinks are set up to my liking, use ceregistry editor to export the entire hklm\software\htc\manila\home key, then use wincecabmanager to make it into a cab.
Then, after a hard reset, run the cab and all the quicklinks are back, pointing directly at the .exe's on the storage card.
Takes a little setting up to begin with, but now i have about 30 pre defined quicklinks, of which around ten of them point to my 'sd card\always on' folder, where programs that dont need to be installed live, and its easy to do a quick export/import using ceregistry editor and wincecab manager to update my quicklinks cab if i make any changes.
[EDIT - just found the settings export function on cookies hometab editor, i wont be manually exporting teh quicklinks from now on. Hometab layout and quicklinks exported/imported at a click]
Related
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.
I removed MS Money 2006 but have leftover icons in the Programs screen as well as in the Menu list. I've searched the registry for any related entries, but nothing comes up. Any ideas where I can remove these bad icons from showing up?
no need for registery hacks, mate. just use your file explorer, go to the programs folder (from start menu) and simply delete the icons. or via activesync (through your pc) go to the unit's programs folder and delete the icons.
for the menu; you can do same. just go to the start menu folder via file explorer and delete the icons.
Start Menu pcarvalho 21820LT / WM6.5 UC & Tweaks / phoneAlarm Skin & WM6.5 plugin
Hi, if you are using the Lite Edition , you can try these buttons: (It should work with any rom though)
Cabs latest uploaded: Aug 5th
It uses Bluemetalaxe Icons to create nice looking folders:
It remaps all programs installed by the Lite Edition (other than System Tools, Settings and Games) in the start menu into those folders: GPS, Multimedia, etc. (moves the shortcut, creates reg keys and deletes old reg keys). Thefore you will have easy access to 9x9x2 programs with only one sliding gesture.
It (will) make windows folder lighter: icons are installed in "Program Files/Cruiserrr start menu" and in the short term I will modify the cab so that the old icons are deleted from the windows folder.
Why? well, if you install many programs, you know why...
INSTALLATION NOTES:
Disable S2U2.
Simply install the cab/s (only in main memory) and reset.
It runs smooth but initial load takes a little longer, wait until the signal is back and the task bar battery icon refreshes. Otherwise some folders and icons may not load and will need a new soft reset.
Be aware that any of the original shortcuts icons customized will be replaced by the ones in the cab ! make sure you do not loose any png images that you do not have a copy.
It has been done with CabWizSP.exe with post xml provisioning. I can post the "kitchen" so anybody can adapt to their taste: replace icons or destination folders (or learn how to create cab files for device customization).
Uninstall: Does not work: you end with no shortcuts. Should be easy to uninstall simply importing the file "mxipinit_startmenu_001.provxml" with fdcsoft task manager and deleting all the folders and corresponding regkeys, and the folder containing the icons: program files\cruiserrr start menu.
CREDITS: Even if it is not useful for anybody, at least is a small tribute to pcarvalho and bluemetalaxe.
QUICK INDEX
Post 6: Details on the Folders and shortcuts in each Folder
Post 7: wm6.5 Customization: TimeZone / Wallpaper
Post 8: phoneAlarm stuff: wm6 WM7ish plug-in and Titanium cPhoneAlarm plugin
CHANGES:
[*] Added mortscript shortcuts to the extended menu: btsync, sdconfig autorun, backlight cycle, Toogle ActiveSync/Softick Card Explorer by Twolf...
[*] Added phonealarm tab with shortcuts to the different menus
TODO LIST:
Add version to the cab's (Any help?)
Reduce png footprint (if bluemetalaxe agrees, of course)
Add mortscript shortcuts to the extended menu: update online content when wifi connected, launch program with skin rotation, backup settings, restore settings...
Add a widgets folder
Uninstall: restore pcarvalho original settings
Purge icons: delete non used pcarvalho icons
Extended registry: add additional registry keys/icons for other programs installed by the standard non-3d rom and the 3d rom.
Split the extended version in two cabs: one for freeware appls (acrobat reader, rss hub, powerradio, googlemaps) and some freebies (wifi on-off, btaudiotoggle, screen rotate, bl05 (backlight cycle control)...) and the other for 3rd party apps.
Split phonealarm stuff in a separate cab.
Recode using strings, so it is easier to change destination folders.
What is the idea behind the "extended" versions?: Need not to reinstall most of the programs in the SDcard and loose lots of time classifying them in folders and changing icon, order or location, after a hard-reset/re-flash.
Please, if you try it, give me feedback specially if you try to uninstall or install in non Lite Roms .
Nice work!
As soon as i have time i'll try it out.
so if I understood correctly it is some kind of backup app for startmenu, right? It restores all your shortcuts with icons of startmenu after HR or ROM flash?
Let me try to explain in another way:
Imagine you use reStart to create folders, move shortcuts to these folders and replace icons for all folders and some shortcuts. It would be a pain to do it each time you hard reset. (this is the cab already posted)
Imagine that with only one slide gesture or none you have access to 9 x 9 x 2 applications and you can scroll down if you have still more apps.
Imagine you restore your shortcuts to sd apps (and probably xml or reg files to restore settigns) and you are up and running without needing to reinstall all the sd card applications (this is the cab I plan to do next).
My cab simply proposes another start menu organization (all shortcuts installed in the ROM classified in folders) with a nice style (bluemetalaxe icons), more oriented to minimize number of gestures needed to access an application.
My suggestion is that you install next time you plan to reflash.
Be aware that any of the original shortcuts icons customized will be replaced by the ones in the cab !
any screenshots?
nicandris said:
any screenshots?
Click to expand...
Click to collapse
1st post updated with screenshots.
this post is not finished
Icons in the extended version:
Please, send links to cab versions of programs in the standard version but not in the lite version so we can hava a standard non-3d rom with most of the programs installed in the SD. I will also be glad to add the freebies, mortscripts, etc. that are not too specific to oneself.
Icon:
NO = No png wm6.5 icon / takes the program icon
SM = self made until I find something better
BM = Bluemetalaxe
PC = pcarvalho's rom icon
Location
SR = located in storage card / needs to be reinstalled manually
SD = located in storage card
MM = located in main memory
UC = located in main memory
LT = located in main memory. Lite and standard ROM
NL = located in main memory. Only standard ROM
Main
- SD Backlight Cycle
- SD Resco Explorer ($)
GPS Folder
- SD CompeTwoNav ($): Off road navigation
- SD IGO 8.3
- SD IGO HGPS_Switch (xda): starts TMC Driver and launches IGo 8.3 (enjoy TMC traffic info while navigating)
- SD HGPSClient:
- SD Google Navigator ($)
- SD GoogleMaps (fw)
- SD Metro: I know it is not GPS
- SD Run GPS ($)
- SD Radares0.37b (fw): Spanish application to update radar info on the fly
- PC/Visual GPS
Office
- SD CalcPro ($):
- MM Adobe Reader LE 2.5
- MM Softick Card Export 3.14 ($)
- MM RSS Hub (channel info stored in SD)
- SD SPB Insight
- SR SPB Time
- SD SPB Wallet
- SD Ticker Tape (xda)
Radio
- PC/MM FM Radio
- BM/SD PowerRadio (xda):
Camera
- PC/MM Camera
- SM/SD Scan2pdf ($):
- SM/SD WorldCard Mobile ($)
Tools
- SD PockeScreen (fw):
- SD SK Tools ($)
- SD SK shortcut manager ($)
- SD SK Tracker ($)
- Unused (Folder for icons that one does not use)
Multimedia
- BM/SD Coreplayer (fw):
- NO/SD Diamond TV ($)
- MM Pictures & Videos
- MM Streaming Media
- MM Windows Media
Phone
- Jetware BT Extension (Carkit configurator)
- Call History
- Phone
- Bluetooth Mode
- My operator sim manager (movistar)
- SIM Manager
- bt explorer
- SD Diamond TV ($)
Internet
- BookSync: Update photos/birthdates from facebook
I plan to post screen shots.
wm6.5 UC tweaks
Cabs latest uploaded: Aug 5th
OK let's start customizing: The idea is to stick to UC cabs and xml files.
Automatically set Time Zone
I read many posts about people not being able to provision this info with wm6.5. It works for me. Credit goes for FInixNOver
1. Unzip the attachment "cruiserrr UC.zip" to your desktop.
2. Copy the folder setup to your storage card root
3. Set the desired timezones in your device
4. Sync your device
5. From the dektop pc run the file cUC_TimeZone.bat in the rapiconfig directory
6. Take the file generated cUC_TimeZone and copy to Storage Card\Setup\Xml
Warning: Do not try to load the file with fdc task manager or similar programs (it will fail to load many correct xml files). If you want to test, you should generate a new bat file to load cUC_Timezone.xml to your device and see the results in the CMD
7. In your device, change the timezones to whatever, far away from where you live.
8. Copy the sdconfig.txt file to the sd root or add these lines to your current sd config
Code:
LOCK:Enabled
SHOW: \Storage Card\setup\Bmp\cUC_TimeZone.bmp
XML: \Storage Card\setup\Xml\cUC_Timezone.XML
LOCK:Disabled
SHOW: \Storage Card\setup\Bmp\_Reset.bmp
RST: Reset
9. If you have installed the extended menu, then run MyMscr->Custom UC: it does not hard-reset the device, it simply executes the userID configuration. If you only installed the normal menu, then you'll have to install manually in this link. Credit goes for mousio
or
9. Hard-reset
Warning: do not stop the UC process or it will hard-reset the device. If something goes wrong, plug to the pc, restore a safe sdconfig.txt file and reset
10. Wait until the UC ends and the device resets.
11. Check the timezones are the ones defined in step 3 or blame me for your last precious five minutes lost if you still see the timezones defined in step 7
12. Tell me if it worked for you.
Automatically change wallpapers
If you cab your wallpapers in a tsk/cab file you will most probably loose many wm6.5 menu, task bar, ec attributes. So you must copy your favourite pictures to windows folder naming them....
You can automate it.
1. Rename your favourite JPG wallpapers as stwater_240_320.jpg (portrait) and stwater_320_240.jpg (landscape).
2. Copy them to storage card/set up/wallpaper
3. Check the cUC_Wallpaper.xml file is copied into storage card/setup/xml. If not, do so.
3. add the following line to the sdconfig.txt
Code:
...
SHOW: \Storage Card\setup\Bmp\cUC_wallpaper.bmp
XML: \Storage Card\setup\Xml\cUC_Wallpaper.XML
...
4. Proceed with steps 9 to 12 as before.
phoneAlarm skins and wm6.5 plugin
reserved for my phonealarm skin and tricks
Current Cab 4 Sept
Credit goes for:
- ybbor, who helped with solving the same issue in WAD.
- rockability at pocketmax forum and bluemetalaxe here, for most of the icons used
- penguin, , for such a great program and the help I found with all the pop-ups, commandline, etc
I am also remastering the phoneAlarm skin with the new functionalities in Phone Alarm
To do list WM6 plugin:
- remaster weather, weather tab, thumbs tub, stocks tab, contacts menu...
- include in the cab links to programs, basic automatic profiles and other set-up options.
I use both, titanium in main screen (to impress friends) and wm6 plugin in secondtoday, activated with a hw button (for normal use).
The current cab has no wm6.5, only standard skin and not finished yet:
- Pressing in the signal / battery meeters: Program Launcher (20 programs) / Task Manager / Quick contacts / Last calls
- "standard" TAB (to use in the office): counter for calls / mails / sms
- "Thumbs" TAB (to use while driving): qgps / iGO / VoiceSpeedDial / radarupdate (PENDING) / bigger wifi/bt/data icons / information rotator displayer
- "weather" and "stocks" Tabs (ongoing work) I download images with mortscript and they are shown in there
- "Thumbs" TAB (to use while driving): qgps / iGO / VoiceSpeedDial / radarupdate (PENDING) / bigger wifi/bt/data icons / - Pressing the clock: backlight toogle
- reminders show in the middle of the clock
- Pressing the profiles icons: 7 phone profiles
- Pressing the weather image: 5 days accuweather forecast.
- Pressing the date / time opens the calendar
- Each time I change profile a mscr writes info to registry: This info is shown in titanium plugin made with chome but I do not know how to share that part.
Unsolved issues so far
Big issues:
How to backup my bt pairings in a xml provision file
How to refresh titanium and start menu icons without reloading all.
How to install cabs to sd and import reg keys without mortscripts
How to reinstall reg keys for my programs automatically without mortscript send keys
Learn to make my own roms (when I buy a pc since I do not have admin rights in the one I use)
hide top bar (and soft) in wm6.5 start menu and titanium plugin but having it when opening whatsover program (without using WAD2 or WisBar Advance, I mean)
Minor issues:
: Make a mortscript to take screenshots
cruiserrr said:
Hi, if you are using the Lite Edition , you can try these buttons: (It should work with any rom though)
Cabs latest uploaded: Aug 5th
It uses Bluemetalaxe Icons to create nice looking folders:
It remaps all programs installed by the Lite Edition (other than System Tools, Settings and Games) in the start menu into those folders: GPS, Multimedia, etc. (moves the shortcut, creates reg keys and deletes old reg keys). Thefore you will have easy access to 9x9x2 programs with only one sliding gesture.
It (will) make windows folder lighter: icons are installed in "Program Files/Cruiserrr start menu" and in the short term I will modify the cab so that the old icons are deleted from the windows folder.
Why? well, if you install many programs, you know why...
INSTALLATION NOTES:
Disable S2U2.
Simply install the cab/s (only in main memory) and reset.
It runs smooth but initial load takes a little longer, wait until the signal is back and the task bar battery icon refreshes. Otherwise some folders and icons may not load and will need a new soft reset.
Be aware that any of the original shortcuts icons customized will be replaced by the ones in the cab ! make sure you do not loose any png images that you do not have a copy.
It has been done with CabWizSP.exe with post xml provisioning. I can post the "kitchen" so anybody can adapt to their taste: replace icons or destination folders (or learn how to create cab files for device customization).
Uninstall: Does not work: you end with no shortcuts. Should be easy to uninstall simply importing the file "mxipinit_startmenu_001.provxml" with fdcsoft task manager and deleting all the folders and corresponding regkeys, and the folder containing the icons: program files\cruiserrr start menu.
CREDITS: Even if it is not useful for anybody, at least is a small tribute to pcarvalho and bluemetalaxe.
QUICK INDEX
Post 6: Details on the Folders and shortcuts in each Folder
Post 7: wm6.5 Customization: TimeZone / Wallpaper
Post 8: phoneAlarm stuff: wm6 WM7ish plug-in and Titanium cPhoneAlarm plugin
CHANGES:
[*] Added mortscript shortcuts to the extended menu: btsync, sdconfig autorun, backlight cycle, Toogle ActiveSync/Softick Card Explorer by Twolf...
[*] Added phonealarm tab with shortcuts to the different menus
TODO LIST:
Add version to the cab's (Any help?)
Reduce png footprint (if bluemetalaxe agrees, of course)
Add mortscript shortcuts to the extended menu: update online content when wifi connected, launch program with skin rotation, backup settings, restore settings...
Add a widgets folder
Uninstall: restore pcarvalho original settings
Purge icons: delete non used pcarvalho icons
Extended registry: add additional registry keys/icons for other programs installed by the standard non-3d rom and the 3d rom.
Split the extended version in two cabs: one for freeware appls (acrobat reader, rss hub, powerradio, googlemaps) and some freebies (wifi on-off, btaudiotoggle, screen rotate, bl05 (backlight cycle control)...) and the other for 3rd party apps.
Split phonealarm stuff in a separate cab.
Recode using strings, so it is easier to change destination folders.
What is the idea behind the "extended" versions?: Need not to reinstall most of the programs in the SDcard and loose lots of time classifying them in folders and changing icon, order or location, after a hard-reset/re-flash.
Please, if you try it, give me feedback specially if you try to uninstall or install in non Lite Roms .
Click to expand...
Click to collapse
HI.. I am using pcarvalho 23053 rom and i ve installed your cab. Got some new shortcuts but none of them are working..it says "Either it is not signed orone of its components cannot be found".pls help...thanx in advance.
Ops ! that surprises me ! can you tell me some examples? try installing sdkcerts.cab first (search the forum). Anybody knows what may be wrong?
hi i ve already tried installing sdkcerts.cab, but still the no luck
Maybe a stupid question but are the applications installed? I mean, many of the shortcuts are simply shortcuts to sd programs, check the link target and see if your application is there ...
Anybody else has experienced the same? If that is the case, maybe the best thing to do is to close the thread for now.
Ok, so I've read through this tutorial (http://forum.xda-developers.com/showthread.php?t=538513) which is AWESOME, and also viewed the Videos at winmo.
Here's where I'm at: I think I've succesfully got all my cabs over and my email settings via Makisu and XML done.
I used sashimi's backupregistry option and backed up registry to the sashimi backup folder.
by backing up the registry I've backed up all my tweaks from rhodium tweaks app right?
Also, by backing up the registry have I already backed up button settings like PTT remap, turn on when slide disabled, etc?
Here's where I need help: I read through the article but since I'm not as proficient as some, it's a bit confusing and I'm lost as to how to back up my background and manila tabs organization, settings, people, ringtones, programs in the programs tabs, etc.
I read about putting keys into the .ini but two issues: 1) I don't know how to open or edit the ini and 2) if I'm running an energy ROM, are all these keys still in thes same subfolders as the OP for the tutorial labeled the code?
And where can I file registration files? for example, I installed and registered my dictionary but looked through the app folder and am not sure which file is my registration file?
appreciate the help so I can start flashing MORE often....I'm 14 days behind on the Photon series!!
ini can be edited by notepad, if you want, you can use super notepad2 too. Not sure where the registration info will be.
I have a few themes, tweaks, etc that I know I won't ever uninstall. These over-write original manilla files etc. but they can be uninstalled, so I know the original files are stored somewhere. I wanted to know where they are at so I can delete them to save space
I think you need to goto settings and select remove programs
I don't want to remove the programs, just remove the uninstall information so I can free up space
My Device/Windows/AppMgr
This would be my suggestion but not 100% sure (maybe 78.2%)
Not sure but there is a folder here that might be another target you are looking for
My Device/Application Data/HTC/ProgLauncher
My Device/Application Data/HTC/MDS/InstallHistory.db
The file listed under the root directory named: ""mxip_swmgmt.vol" (Software Management) This files keeps a history of the installs to the device. You would have to use an editor to view (Which one....google it)....."mxip_system.vol" is another possible culprit.
Back up your device before you go and start messing with these type of files or what you are doing in general period. Also you mentioned "freeing up space"....You are probably saving yourself only 5-30KB of data....not worth the time and efforts for me....but....it's not my device
Solved! [tested]
I have found the solution to the various posts listed on not being able to get rid of an uninstalled prog in the remove progs window. Using MemMaid 2.3 go jump to/databases/database usage, highlight SwMgmtMetadataStore and click browse, highlight offending entry and delete it. Then do and soft reset and you will find that the prog is no longer in the remove prog window. Hope this helps.
Reference:
Code:
[url=http://social.microsoft.com/Forums/en-US/windowsmobile/thread/7bad6dc7-d042-4bc2-8516-c9eeaeb5af58/] http://social.microsoft.com/Forums/en-US/windowsmobile/thread/7bad6dc7-d042-4bc2-8516-c9eeaeb5af58/[/url]
[Search Tags: Install, installed, app, application, remove, uninstall, program, programs, unwanted, registry, database, unable, how to, info, information, solution, problem, fix, storage, memory, dump]
DJwa163 said:
I have found the solution to the various posts listed on not being able to get rid of an uninstalled prog in the remove progs window. Using MemMaid 2.3 go jump to/databases/database usage, highlight SwMgmtMetadataStore and click browse, highlight offending entry and delete it. Then do and soft reset and you will find that the prog is no longer in the remove prog window. Hope this helps.
Reference:
Code:
[url=http://social.microsoft.com/Forums/en-US/windowsmobile/thread/7bad6dc7-d042-4bc2-8516-c9eeaeb5af58/] http://social.microsoft.com/Forums/en-US/windowsmobile/thread/7bad6dc7-d042-4bc2-8516-c9eeaeb5af58/[/url]
[Search Tags: Install, installed, app, application, remove, uninstall, program, programs, unwanted, registry, database, unable, how to, info, information, solution, problem, fix, storage, memory, dump]
Click to expand...
Click to collapse
You are awesome, I have several badly written programs that annoy me in the list, and I can now get rid of them.