Jump to content

Geej

Members
  • Posts

    620
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by Geej

  1. Thanks for sharing. Usually, I just test out my addon on HFSlip & nlite on VM. (but mainly on HFSlip only). I have taken some effort to test on RMVi sometime back. Once it works, I also tested same addon on nlite & HFSlip. But tesing in various scenario on different slipstreamer is too time-consuming for me. Hence only basic testing is done. My main slipstreamer is HFSlip as it can be run fully unattended, saving me lots of precious time. Frankly, T35 stage is installing device/network. I do not see how my addon can affect this stage. Googling T35 hang problem reveals conflict with some device. Not suggesting there is device conflict at your end but just for info as I'm clueless with this kind of problem too. EDIT Look at Resolution item 2. It might helps.
  2. Thanks for the lead. Here are some capability and /limitation I tested on XP. Shortcuts Map 2.3 For Windows 95/98/Me/NT/2000/XP/Server 2003 Shortcuts Map will help you to manage hotkeys assigned to shortcuts on the desktop or in the Start menu hierarchy. With the straightforward user interface, you can easily to change a hotkey or find an unused hotkey. List only hotkey from the Start Menu & desktop location. Other keys within application are not listed. Can print the list. I found one here. Shortcut Key Explorer v1.02 Supported OS: Win95 to win8 Detect only hotkey on the start menu & desktop. Cannot print the list. Standalone app. Ethervane ActiveHotkeys 1.3.1 Build 16 Windows 95, XP, Vista, 7 or later (32-bit versions only) ActiveHotkeys detects what global keyboard shortcuts (hotkeys) are currently registered on the computer by various applications. This helps you determine which hotkeys are in use, and which are still available. However, it does not indicate which program uses that hotkey. (Due to OS limitation) Will list every hotkey that are currently in use, not just the hotkey on Start Menu/desktop shortcut. However, it does not list which program are use in Start Menu or Desktop. Dev still very active with this software. Originally from donationcoder.com and still active there. Probably the most comprehensive software among the three. Suggest to use a combination of 2 softwares. (Shortcut Key Explorer v1.02 + Ethervane ActiveHotkeys) Cheers
  3. Just wonder if anyone know which freeware tool can list all the hotkey that are already in use by the Operating System. Eg. I have an application that I wish to set a hotkey such as Win+W within the application setting. I would like to know whether this hotkey is in conflict with any pre-registered hotkey that are already taken up. I probably could test it out one by one (I know some program does throw up a warning if there is a conflict) but it would be better to know in advance if such utility exists which can generate a list of pre-registered hotkey used by the system.
  4. Image Resizer for Windows is a utility that lets you resize one or more selected image files directly from Windows Explorer by right-clicking. Remember Resize Settings Pre-XP Support Update/Modernize Default Sizes Auto-Width/Height Image_Resizer_2.1_inf_addon.cab Size: 69.22 Kb (70,883 bytes) MD5: 4EAD4143A01FBAB1DA8E94B7EB1573F7
  5. An easy to use 7-Zip toolbar and filetype theme manager. Many users of the excellent file archiver 7-Zip criticized its nostalgic appearance. That's exactly where 7-Zip Theme Manager (7zTM) comes in and offers the tools to change the appearance of the archiver. 7-Zip Theme Manager will also help you replace the standard icon which 7-Zip uses for SFX-archives (self-extracting archives) via a button in the main menu, so that it will be used for all future archives. Here are some key features of "7-Zip Theme Manager": Stylish: · Toolbar Themes - change the look of the toolbar of 7-Zip · Filetype Themes - change the look of archived files, for instance in Explorer · 90 Toolbar Themes and 22 Filetype Themes integrated (wow!) · changing the SFX-icon (self-extracting archive) is now possible Handy: · automatic or manual search of the 7-Zip installation folder · convenient activation of the Themes with just a click · Themes previews integrated directly into the program · multi-lingual user interface · online update for up to date Themes and features · possibility to create your own Themes · supports 7-Zip 32-Bit and 64-Bit Requirements: · 7-Zip 4.65 or above (I tested with my own v9.22 beta True addon) · Administrative rights Access from All User's Start Menu: 7-zip Theme Manager Uninstallable from Add/Remove Panel Languages: German, English, Italian 7ZipThemeManager21_addon.cab Size: 9.12 Mb (9,560,168 bytes) MD5: 3022F8CB5D41ED993F44CE68F60494F6 Note: This addon is not suitable with 7-Zip 9.23 alpha. You need 7zTM.exe with version 2.1.1 for 7-Zip 9.23 alpha. (Not included in this addon)
  6. updated to v1.0 (Now addon comes with 5 languages support but only English lang file is copied by default.)
  7. [DefaultInstall] is use for normal installation when user right-click on the inf and select "Install". See your default registry entry in HKEY_CLASSES_ROOT\inffile\shell\Install\command and HKEY_LOCAL_MACHINE\SOFTWARE\Classes\inffile\shell\Install\command Then from my inf, advpack.dll is initiated as [DefaultInstall] is using setupapi.dll which does does not support certain directives. For my inf, using advpack.dll can let me use the following below directives that setupapi.dll doesn't support. BeginPrompt EndPrompt RunPreSetupCommands RunPostSetupCommands SmartReboot DelDirs Cleanup=1 CheckAdminRights One thing advpack.dll that I know of is that it doesn't support RegisterDlls. RegisterDlls is supported thru setupapi.dll (for normal installation) and [Optional Components] (for Setup). To register some dll files via Advpack.dll, I normally use RunPreSetupCommands and/or RunPostSetupCommands. RunPreSetupCommands/RunPostSetupCommands is useful if you wish to run a batch command. However note that path with space generally requires you to triple quote the whole string in inf as cmd does not interpret correctly file path with space. This generally does not happen with syntax that are use in by the registry. The registry will interpret correctly file path with space correctly w/o quoting the whole string. Having said that, you still need to quote it if file path is a command that takes some command parameter(s). Usually regtoinf converter will that care of these when you convert .reg to .inf I have googled some links that you can read further... hope it is useful for learning inf. Class=class-name info, some info here: http://www.osronline...format_2fzm.htm INF DefaultInstall Section : http://www.osronline...format_33ea.htm Advanced INF: http://www.mdgx.com/INF_web/ INF Directives : http://msdn.microsof...v=VS.85%29.aspx You can also check how inf parse certain characters in inf via batch command. Test_RunPreSetupCommands.inf template as follow: [Version] Signature=$Windows NT$ [DefaultInstall] RegisterDLLs=Start.Register [Start.Register] 11,,rundll32.exe,,,"advpack.dll,LaunchINFSection %1%\%infname%.inf,Install" [Install] RunPreSetupCommands=TESTBatchString [TESTBatchString] ; view how cmd parse " % ! ^ characters in inf ... cmd /c """Echo Basically any strings with space need to triple quote"""&& Echo. && pause cmd /c """Echo This is to generate a literal ^"" dblquote on console box """&& Echo. && pause cmd /c """Echo Output 1 syntax %%""" && Echo. && pause && ::output as % cmd /c """Echo Output 2 syntax %%%%""" && Echo. && pause && ::output is %% cmd /c """Echo Output 3 syntax %%systemroot%%""" && Echo. && pause && ::output as C:\WINDOWS cmd /c """Echo Output 4 syntax ^%%systemroot^%%""" && Echo. && pause && ::output as %systemroot% cmd /c """Echo Output 5 Exclamation mark syntax !""" && Echo. && pause && ::output as ! cmd /c """Echo Output 6 caret syntax ^^""" && Echo. && pause && ::output as ^ cmd /c """Echo Output 7 single quote syntax '""" && Echo. && pause && ::output as ' [Strings] infname=Test_RunPreSetupCommands It appears I know a lot. Actually not so. There are a few challenges that I still do not know such as -creating services solely using inf (w/o pre/post setup command via sc.exe). If anyone has sample ddon for services, let me know. -Installing printer software drivers such that it appears in "Printers and Faxes" menu. Perhaps dopdf? So far no one has create an inf addon for printer-driver type. -hardware device installation. Obviously this is a whole new world of inf when it comes to device driver. Too complex to learn...giveup. Let share inf knowledge whenever we can INF is useful if you are fedup with svcpack installation that doesn't install exactly the way you want it. Perhaps it launches the program or a website after installation, creating unwanted shortcut, etc. While generally can by further process via some script, it takes up additional disk space. I have no regrets learning inf. It solves a lot of unattended installation headache that /whatever-switch generally comes with.
  8. Updated to v4.10 Also replace Reborn theme with SmoothGreen theme. Metro UI is still the default theme
  9. PhotoFiltre 7 is a complete image retouching program. It allows you to do simple or advanced adjustments to an image and apply a vast range of filters on it. It is simple and intuitive to use, and has an easy learning curve. The toolbar, giving you access to the standard filters with just a few clicks, gives PhotoFiltre 7 a robust look. PhotoFiltre 7 also has layer manager (with Alpha channel), advanced brushes, batch module and lot of other powerful tools. PhotoFiltre 7 is developed with the core PhotoFiltre Studio but with less functions. Freeware for private uses (including non-profit organizations). Filters Its wide range of filters allows novice users to familiarize themselves with the world of graphics. You can find the standard adjustment functions (Brightness, contrast, dyed, saturation, gamma correction) and also artistic filters (watercolor, pastels, Indian ink, pointillism, puzzle effect). Others include Vectorial selections, The brushes, The Layers, Automatic Stoke and Fill option, The Erase Tool, The PhotoMasque module, Icon export and Image Explorer -Excludes Ask Toolbar -Includes all 35 plugins (PhotoFiltre Plugins Pack III) PhotoFiltre711_inf_addon.cab Size: 10.58 Mb (11,109,554 bytes) MD5: A12B4EE75D54C6D975C7403165C6FA24
  10. Sure. Just squeezed my free time to update this to v5.1.4.0104(Minor tweak: Enable 'Show Status Bar')
  11. Updated to v3.1.26616 (this is a stable version) -Add Blue Rider Theme screenshot since the original link with the screenshot have been deleted.
  12. An easy way to search and download mp3 files, download and listen mp3 music free music2pc is a free program to find and download MP3 songs from the Internet. Search music among 100 million tracks and enjoy free mp3 downloads! Built on a very fast and safe non-bittorrent and non-peer-to-peer method of getting MP3s, the program gives you the ultimate access to our multimillion database of quality mp3 songs. Search and download over 100 million MP3s for free. It is an excellent tool which can be used to find and download their favorite MP3 music. Just enter the artist name or song name and click search! The downloaded mp3 file can be played by any mp3 players, including iPad, iPhone, cell phone, PSP, iPod, etc. So, enjoy music at home or on the road. Best of all, music2pc is 100% freeware: No ads, no spyware, no charges, no time or feature limits. It is completely free for you to enjoy. The highlights at a glance: •download over 100 million mp3 songs with unmatchable speed, best output quality •safe, non-bittorrent and non-peer-to-peer sharing method •find any music easily, only with the song title, artist name, album or edition •safe to install and run, no malware, no ads, no viruses •the hugest selection of publicly available tracks •search the live, piano, guitar or cover versions of your favorite songs •compatible with all portable devices: iPad, iPhone, PSP, cell phone, mp3 player etc. •multi-thread downloading, download multiple songs at the same time •download the hottest songs across all genres, from electronic to religious, mainstream to indie, hip-hop to classical, etc. •simple and intuitive interface ensures you to easily get any music you want music2pc_2.11_Build_208_inf_addon.cab Size: 1.51 Mb (1,585,667 bytes) MD5: B7C31E374E93C2A714178D4AEEF8FD0E
  13. Decided to upload an inf addon. Version is the same as in post 1. TrayPilotLite_inf_addon.cab Size: 31.41 Kb (32,168 bytes) MD5: 4F3C46797D45DE2896E15E7DF6A8513B
  14. Homepage (This addon is 32 bit only) OpenWith Enhanced is a small freeware application which replaces the standard Windows 'Open With...' window with an improved comprehensive yet intuitive dialog box. Instead of just presenting the original Windows plain list of installed applications, requiring you to guess the best choice for opening a given file - OpenWith Enhanced extends this list with some of the most popular applications selected by past users to successfully open that specific file type, based on a constantly-updated online database. Applications that have already been installed onto your computer are marked accordingly, so you will know immediately which ones you have access to. If you choose a non-installed application however, you will be redirected to the appropriate program's official website that contains all the relevant downloading and purchasing information. So each time you stumble upon an unknown file type and wonder what program could possibly open it, or you are looking for a better application to deal with the files you are already familiar with - all you have to do is simply right-click into the Open With... menu and choose. In addition, OpenWith Enhanced includes several extra handy options: •Change the icon associated with each file type •Remove or disable for a current user any given file association (especially handy on WindowsVista / Windows7 OS, where such options aren't available through standard UI) •Clear the Open With... menu from any unneeded applications •Autofill file type description for new associations with the most popular ones •It works natively on both x86 and x64 versions of Windows and respects UAC settings And of course, it does what the Open With... dialog should do; allow you to easily open your different files with different applications! (This addon comes with 5 languages support but only English lang file is copied.) Supported languages are Spanish, German, Brazilian Portuguese, Russian & English. You need to edit the inf to change to your preferred language. To change lang to e.g Spanish, uncomment in [PF1.Copy] section by removing ; character ; Spanish.mo then add ; character to English.mo and change in [strings] section Lang=Spanish The Inf for English is as follows: [PF1.Copy] OpenWith.dll,,,1 ; Spanish.mo ; To include only your lang file, just remove ; at the begining of your lang file ; Russian.mo ; Dutch.mo ; Brazilian Portuguese.mo ; German.mo English.mo [strings] Lang=English ;Spanish, German, Brazilian Portuguese, Russian, English OpenWith_Enhanced_1.05_inf_addon.cab Size: 151.69 Kb (155,335 bytes) MD5: 155F5653EBA405BCD03765073D22EFE7
  15. As the title says, link here. ( ABBYY Screenshot Reader - Download your Christmas gift from ABBYY!) I do not know when the giveaway period will end, try to download early. Tested on VM, it is v9.0.0.1331; Part# 59811 Required registration with ABBYY by providing your email address to them. Hope it is useful to you
  16. Hi all, updated to 4.10 beta 5 ==== @oguz, I repack 1 time for you : svcpack method Will host for 7 days or earlier. Pls modify slightly at your end the [Del.i386] section in future if you wish to convert to svcpack. For some unknown reason, the sfx does not execute from temp dir, so I have to del from current dir after normal installation. It is not really necessary to modify [Del.i386] if slipstream from svcpack.inf However if you normal install, then it is better to modify as it can't remove the extracted files after installation. [Del.i386] RUNDLL32 advpack.dll,DelNodeRunDLL32 %1%\i386,8 RUNDLL32 advpack.dll,DelNodeRunDLL32 %1%\WinRAR4.cab,8 ;additional command for normal install only RUNDLL32 advpack.dll,DelNodeRunDLL32 %1%\WinrarTH.cab,8 ;additional command for normal install only RUNDLL32 advpack.dll,DelNodeRunDLL32 %1%\WinRAR4.inf,8 ;additional command for normal install only WinRAR410B5_ENU_svc_addon_Trial.cab Size: 2.4 Mb (2,519,067 bytes) MD5: 20A2EE8E49361597DCC4B6B07BE0BDA3
  17. Updated to 5.1.3.1201 @luis, if FoxitReader51_Manual.pdf is of no use because it is in English, feel free to remove it and it's start menu shortcut at your end.
  18. Thanks. You can easily DIY by converting to silent installer with WINRAR. The winrar sfx installer should contains only 3 files: 2 cabs files + winrar4.inf Use the below comment file ;The comment below contains fully silent SFX script commands Setup=rundll32.exe advpack.dll,LaunchINFSection winrar4.inf,Install,3 TempMode Silent=1 Overwrite=1
×
×
  • Create New...