Jump to content

Geej

Members
  • Posts

    620
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by Geej

  1. Mona, I would use something like this for the uninstall [Version] Signature=$Windows NT$ [Optional Components] MyRegTweaks [DefaultInstall] DelReg =REGEntries.DelReg [MyRegTweaks] OptionDesc =Registry Entries Tip =Registry Entries removal Modes =0,1,2,3 DelReg =REGEntries.DelReg [REGEntries.DelReg] HKLM,SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved,{AC67E92C-D916-4058-A7B8-0913746592F4} HKCU,Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.pdf\OpenWithProgids,SumatraPDF
  2. Minor inf update. Modify inf install method. Now using RegisterDlls/regsvr32 method. However, when uninstall using regsvr32, not all registry keys are deleted. Therefore I still need to use regini.exe to remove key as (hence changing registry permission is needed) the key does not have administrator full access by default.
  3. Update to 1.2.1.451a Note: As the vendor forum dowload site only provide the main executable (Everything.exe) , I still use the stable version installer (v1.2.1.371) to install. But will override Everything.exe with this newer version (1.2.1.451a) Hence when you perform uninstall, the uninstall screen basically say the version is v1.2.1.371. This is an expected behaviour. Has updated everything.lng (the language file size is now twice as big than before) Add some more info to the uninstall entry in the registry. It's too bare by default. As this is alpha release, I will retain the existing stable build in #1 as well. Regards
  4. Updated to v7.50 Redo to RunOnceEx. (You still have the option to run directly in svcpack.inf if you wish. Just need to modify entires.ini command by removing -ai switch)
  5. user_hidden, thanks. Have check out your link. Very similar in nature. Perhaps there is another one I happen to stumble upon, using vbs to create the installation and program. (2-in-1) at MSFN I just tried it, looks okay. hehe...
  6. Replace with RunWithParameters instead.
  7. Homepage Tiny tool, which allows running any application with a parameter. Instead of going to the Command Prompt, users can simply right-click an application and enter the parameters in the pop-up window. Features: - integrates into Explorer - remembers last parameters per application - knows the default parameters of some popular tools - supports custom file types Context Menu with Explorer Integration. When right-click, 'Run With Parameters' will appear in context menu for .bat, .cmd, .exe, .msi, .msp, .scr , .vbs file type 'Run With Parameters (as administrator)' will appear in context menu for .exe, .scr type when 'shift' key is hold down. Default is English. To change language, see [Readme] section of the inf. RunWithParameters216_inf_addon.cab Size: 72.21 Kb (73,946 bytes) MD5: A6EE890F8A49F3A05BB19390542F6210
  8. Homepage Page2 UPHClean v2.0.49 The User Profile Hive Cleanup service helps to ensure user sessions are completely terminated when a user logs off. System processes and applications occasionally maintain connections to registry keys in the user profile after a user logs off. In those cases the user session is prevented from completely ending. This can result in problems when using Roaming User Profiles in a server environment or when using locked profiles as implemented through the Shared Computer Toolkit for Windows XP. On Windows 2000 you can benefit from this service if the application event log shows event id 1000 where the message text indicates that the profile is not unloading and that the error is "Access is denied". On Windows XP and Windows Server 2003 either event ids 1517 and 1524 indicate the same profile unload problem. To accomplish this the service monitors for logged off users that still have registry hives loaded. When that happens the service determines which application have handles opened to the hives and releases them. It logs the application name and what registry keys were left open. After this the system finishes unloading the profile. In short, help speed up logging off, reconciliation of roaming profiles and prevent exceeding the registry size limit. Note: Installed as auto startup service. During uninstall, uses regini.exe to modify registry permission. And restore to default setting after uninstall. If you wish to install to an existing system, uninstall any existing version first. Then install using this package inf installer. This installer/uninstaller is not compatible with msi installer. UserProfileHiveCleanupService2.0.49_inf_addon.cab Size: 109.94 Kb (112,577 bytes) MD5: 670FA81C3BF21A0517F6DE1F906A468F
  9. Sorry for the inconvenience. I didn't know about this either. Anyway, I put up a simple link so that Firefox user will be able to download.
  10. updated to v5.0.2.718 @luis This update has no new or deleted files. Just some file replacement. I hope this info helps you make it easy to update your spanish version as well.
  11. Homepage Creating bootable CD/DVD/USB disks from ISO 9660 image files. Passcape ISO Burner was developed for creating bootable disks from available ISO images. PIB is compatible with the majority of CD/DVD recorders and USB devices, (including Memory Stick, Compact Flash, SmartMedia, Secure Digital, USB flash drives, USB ZIP drives, USB Hard Disk drives, etc.) The application's Spartan interface is ultimate-simple and oriented toward the inexperienced user. Features -Write ISO image to CD/DVD or USB disk; -Create bootable disks (including USB ones) from ISO images; -Extract ISO images to disk; -Simple user interface; -No installation required, the program does not write anything to your hard disk or registry I have since switch to this app for my hfsliped's iso. Burnt fast & works . (previously using Nero 8 mirco) PasscapeISOburner130_inf_addon.cab Size: 316.24 Kb (323,832 bytes) MD5: 9032CBAD2F97B1B523E2D20800B1CAA3 Screenshots
  12. I face the same situation as you. keycodes.exe is not much use when using combined keystroke. I relied on "200 = Ctrl + and 400 = Alt +" reference only. Found a more reliable alternative solution. Query the shortcut's properties using Shortcut v1.11 (console tool, shortcut.exe) It returns a dec value. Then use windows calculator to convert dec to hex For Ctrl + Alt +A, dec value return is 1601 which then converted to 641 in hex. tada @echo off Shortcut /F:"%ALLUSERSPROFILE%\Start Menu\Programs\Accessories\System Tools\Disk Defragmenter.lnk" /A:Q pause
  13. Just to share a few things. I got it set sucessfully as HotKey =0x653 ; hex 200 + 400 + 53 where 200 is Ctrl + 400 is Alt + 53 is S Thanks to ricktendo64, OnePiece & bphlpt for some thought & info on this. I google around and found this vb forum post (small software) where you press a key and it returns dec & hex code. Might be useful somehow without going to MSDN for the keycodes. http://www.vbforums.com/showthread.php?t=499084 Download 1st post attachment, extract and find in bin folder, keycodes.exe (found it can run standalone) So while fiddling with combination of hex codes, found Shift + (which might be useful) has 0x115 or 0x107 (yes both codes set the same hotkey) Since 200 = Ctrl + and 400 = Alt + , it might means some other values might also be valid for Ctrl + and Alt + respectively. Just need to know which value. (I was googling when I stumbled 200 & 400 value and I didn't take note of the url. But it was from a vb forum thread where some codes are posted for Ctrl + and shift +. Unfortunately, the thread did not indicate how it derived these values as discussion was something else) With this info, bphlpt, setting Ctrl + Alt + A hotkey is much easier now. Just add these hex code: 200 + 400 + 41 You don't have to install Pretty Run to test. I made another simple inf for anyone who wish to test. I use "Disk Defragmenter.lnk" that is found in Accessories\systen Tools on XP so that you can see the effect. (View the .lnk properties before applying this inf test) [Version] Signature=$Windows NT$ [DefaultInstall] ProfileItems=Start.Shortcut1 [Start.Shortcut1] Name =%ShortcutN1%,0x8,23 SubDir =%ProfileSubdir% CmdLine =11,,dfrg.msc WorkingDir=11 ;HotKey ="Ctrl + Alt + A" ;Desired hotkey HotKey =0x641 ; hex 200 + 400 + 41 ; where A=0x41 Infotip =Defragments your volumes so that your computer runs faster and more efficiently. [Strings] ShortcutN1=Disk Defragmenter ProfileSubdir=Accessories\System Tools Now, just press Ctrl + Alt + A and wait for Disk Defragmenter to launch. Now we have some real solution to this thing but do not know if it is consistent globally or just limited to English US 101 keyboard . Same thing to consider when running on laptop or non-english keyboard such as Japanese / French etc. What if it is english keyboard but not 101 type? I really don't know. Perhaps "Windows SDK documentation" might throw the rest of the light over this issue, but then it is yet another mystery to find out. (lol) Cheers
  14. Have tried before I ask here. Not working. Actually I asked because I encountered this challenge while making Pretty Run addon, which has "Ctrl + Alt + S" set as hotkey. Neverthless, I made some progress but still has no total solution to it. Hotkey syntax is hex-base keyboard code. (which I am unable to find any proper keyboard code thur googling) Here is a sample inf test if Pretty Run is installed. [Version] Signature=$Windows NT$ [DefaultInstall] ProfileItems=Start.Shortcut1 [Start.Shortcut1] Name =%ShortcutN1% SubDir =%ProfileSubdir% CmdLine =16422,Pretty Run,PrettyRun.exe WorkingDir=16422,Pretty Run ;HotKey ="Ctrl + Alt + S" ;Desired hotkey HotKey =0x200 ; Ctrl + ;HotKey =0x14 ; got it as Caplock ;HotKey =0x400 ; Alt + [Strings] ShortcutN1=PrettyRun ProfileSubdir=Pretty Run As you can see, hotkey is partially set only. Need to know how to do it exactly... If someone can throw some more light here, that will be great.
  15. In profileitems, there is Hotkey=hotkey-value (ref) What is the exact syntax to set this value? (say I want it Ctrl+Alt+U) Where can I download "Windows SDK documentation" as mention in the above ref link? Anyone here knows?
  16. Homepage Features Defraggler v2.12.628 Use Defraggler to defrag your entire hard drive, or individual files - unique in the industry. This compact Windows application supports NTFS and FAT32 file systems The following install option are configured: -Add Start Menu Shortcut -Add Defraggler context menu to Windows Explorer -Replace Windows Disk Defragmenter -No google toolbar Default is English. You have to change to your own lang in the inf. Instruction in inf, [Readme] section. (Tested only in English XP). Suggest to test in VM first. Additional info: If it is English platform, all language files are not needed. Which you can save further diskspace. (It requires you to edit manually the inf.) Defraggler2.12.628_inf_addon.cab Size: 1.45 Mb (1,516,566 bytes) MD5: CD1FDC9907FCCBAC63F0B412A5059ACB
  17. It's the other way. He stole my addon. Just kidding too! :-)
  18. Homepage Pretty run was started years ago when Windows knew nothing about searching through start menu. It helps you find shortcuts. Many times we know we have some program somewhere in the start menu but just takes too much time to locate its icon and run it. Pretty Run helps you with that as it searches start menu, desktop or any other folder for the shortcuts or files that meet your query. With Vista Windows got their own search box. But Pretty Run is now much more: - Search Internet Explorer favorites - Search Firefox bookmarks - Search Chrome bookmarks - Search printers and start printer properties - Search Control panel items - Setup internet search engines and you can search internet with selected engine - Remember last items copied to clipboard and bring them back in case you need them - Search mp3 files (not file names but tags) - Run a group of programs with one click - Setup your magic words and start favorite programs really quickly Note: Autostartup item PrettyRun670108_ENU_inf_addon.cab Size: 912.21 Kb (934,100 bytes) MD5: 4B5B48CF4AB0F5BDD1C8909BD1CBA07E
  19. Homepage Facewinks is a browser (BHO) addon that lets you to surprise your friends with the coolest emoticons and smileys, right in your facebook statuses and comments. Note: Works only on IE (tested only on IE8). IE-base engine like Maxthon does not work. Tested also on firefox browser, does not work either. Autostartup & run as services. During installation/uninstall, regini.exe is use to change registry permission. After install/uninstall, registry permission is restore to default setting. Other personal observation: If you login Facebook in IE with Facewinks installed, you can see simliey faces in your freind's comment. If you do not have Facewinks installed or using 3rd party browser, Facewinks smiley icons will not shown. This is what you would see when you start commenting on facebook usign IE. (pull down smiley icon at right side) http://www.facewinks.com/post_install.php? Facewinks10_inf_addon.cab Size: 714.99 Kb (732,146 bytes) MD5: C6A04421D7B646F89174A2B8A8FE83F0
  20. Start Menu X v4.5 ( freeware edition ) The list of menu items is alphabetically sorted, so you can easily find any program or command by its name. M - Open any location on your PC with a single click. You can create, modify, and reorder items in Start Menu 7. So it's easy to create a list of the most used locations, popular directories, and virtual folders to access them with a single click. - There is a special Run button to access seldom used locations without adding them into menu. - Start Menu 7 has a customizable Power Buttons panel. - With Power Timer feature you can delay any of power management operations. Note: Auto Startup item Default will copy English.ini only. Default Start button is Apple Instruction to change lang / Start Button is in [ How to change to your language setting ] section. It is at the begining of the inf. Available lang in the addon are as below: Czech.ini, Danish.ini, Dutch.ini, English.i.i, French.ini German.ini, Hungarian.ini, Italian.ini, Japanese.ini Polish.ini, Portuguese.ini, Russian.ini Simplified Chinese.ini, Spanish.ini, Swedish.ini, Traditional Chinese, turkish.ini Start_MenuX_4.5_inf_addon.cab Size: 2.7 Mb (2,828,325 bytes) MD5: 64E23A7C447CFA914D76B7235B6BF233
×
×
  • Create New...