AutoHotkey Community

It is currently May 26th, 2012, 7:51 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 20 posts ]  Go to page Previous  1, 2
Author Message
 Post subject:
PostPosted: February 21st, 2009, 6:44 pm 
Offline

Joined: June 1st, 2007, 2:00 pm
Posts: 180
The advantage of FileBox eXtender is tha of freeware.

xFiles Dialog seemed to be shareware.

:roll:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 19th, 2009, 7:28 pm 
Offline

Joined: February 6th, 2008, 12:26 am
Posts: 14
Location: the land of enchantment
here's what i use for a portable taskmanager on public computers;

Quote:
DTaskManager, obviously, is a Task-Manager, but specifically engineered to give additional functionalities that the Windows bundled TaskManager (and other third party products) do not have:

1. Three different ways to close a process, as the "termination request", the standard "forced termination" with dialogue tolerance, and the "forced termination" of any type of process, bypassing all permissions (it can also terminate running system processes).

2. DTaskManager allows you to suspend and reactivate a process (as in Linux). This is useful, for example, to temporarily suspend a task that uses system resources when you don't want to terminate it (such as a DivX encoding process).

3. DTaskManager allows you to select more than one process at a time, and terminate all of them "simultaneously".

4. DTaskManager does not need any useless confirmation.

Download DTaskManager v1.51 (Windows 2000/XP/VISTA) ca 100KB
(Special thanks to William Warner for donation of a dual-processor system for make tests!)

indeed, i now use it for my default taskmanager.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 22nd, 2009, 5:13 pm 
Offline

Joined: March 24th, 2004, 2:34 pm
Posts: 299
I would like to pass along some info about two other great pieces of freeware. These are both editors and I keep changing my mind as to which one is better. They are ConTEXT and PSPad.

PSPad Website: http://www.pspad.com/
PSPad Download: http://www.pspad.com/en/download.php

ConTEXT website: http://www.contexteditor.org/
ConTEXT download: http://www.contexteditor.org/

I love being able to use Bookmarks that are persistent. They do not disappear when you save the files. They re-appear when you re-open the files. Both of these use persistent bookmarks. Most every other app I have tried that use bookmarks do not keep them after you close the file and then re-open it.

These two editors have many fantastic features. I have some tiny problems with PSPad. Things that might be described as occasional bugs. But they happen so rarely and they are offset by so many fantastic features, it really is not a knock against PSPad. But it has many more programming functions then does ConTEXT. Bottom line, it's up to you to choose.

To explain what I mean in the preceding paragraph, PSPad has a bunch of stuff like macros, clips, plugins, etc. But I like the "action" of ConTEXT a lot more. Hard to explain. You have to try them yourself to get the feel and see what you think.

One thing I have discovered in evaluating these two is how wonderful AHK is in setting up consistent keyboard shortcuts. For example, no matter how an editor converts text to upper case or lower case, I can always use the #IfWinContext to create my own shortcuts and use them wherever I happen to go.

I will show you my shortcuts for these two editors and if anyone has some comments or ideas about how to create more shortcuts for various editors, I'd really love to see what you have in mind:

Code:
 #IfWinactive ConTEXT ahk_class TfmMain                                                  ; CONTEXT
 +^l::Send ^g                                                                            ; go to line number
 ^w::Send +^w                                                                            ; word wrap
 ^l::Send !ml                                                                            ; lower case
 ^u::Send !muu{ENTER}                                                                    ; upper case
 ^q::Send !mn                                                                            ; invert case
 #l::Send !oe^{TAB}!l{ENTER}                                                             ; line number
 !+l::Send !oe^{TAB}!l{ENTER}                                                            ; line number
 ^insert::Send ^{PGDN}{DOWN 28}^{PGUP}{HOME}                                             ; scroll current line to top
 ^delete::Send ^{PGUP}{UP 29}^{PGDN}{HOME}                                               ; scroll current line to bottom
 ^.::Send !f{DOWN 7}{ENTER}s{ENTER}                                                      ; revert to saved
 ^,::Send !f{DOWN 7}{ENTER}b{ENTER}                                                      ; revert to backup
 +^F4::Send !ff                                                                          ; close all
 #IfWinactive

#IfWinactive PSPad ahk_class TfPSPad.UnicodeClass                                        ; PSPAD
 +^l::Send ^g                                                                            ; go to line number
 ;^w::Send ^w                                                                            ; word wrap
 ^l::Send !rco                                                                           ; lower case
 ^u::Send !rct                                                                           ; upper case
 ^q::Send !rci                                                                           ; invert case
 +^q::Send !rcc                                                                          ; capitalize
 +^k::Send !rcs                                                                          ; sentencize
 ^INSERT::Send ^{PGDN}{DOWN 27}^{PGUP}{HOME}                                             ; scroll current line to top
 ^DELETE::Send ^{PGUP}{UP 26}^{PGDN}{HOME}                                               ; scroll current line to bottom
 +^s::Send !fa                                                                           ; save as
 ^r::Send ^h                                                                             ; replace
 ^.::Send ^r                                                                             ; re-open file
#IfWinactive



Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: May 22nd, 2009, 7:55 pm 
Offline

Joined: February 7th, 2009, 11:28 pm
Posts: 384
I use a ton of freeware. Some are great on rare occasions, but apart from AHK, here's what I use the all the time (all free):

1. FileMenu Tools: adds a bunch of great context menu utilities to your explorer menu and let's you add custom utilities.

1.5. FastCopy: Great when you need to copy/move/delete large amounts.

2. Everything: Super fast search (file names only, NTFS)

3. Locate32: Comprehensive search tool with indexing (allows search of file content, by date, size, etc search).

4. ERUNT: A better alternative to System Restore.

5. AnVir TaskManager Free: Task Manager alternative with that provides more info and functions (but too large to completely replace Task Manager imo).

6. Various/all utilities by SysInternals and NirSoft.

7. SandBoxie with SandboxDiff add-on: Tiny program to let you install and/or run other programs inside a "sandbox".

8. Revo Uninstaller: Better alternative for Windows' built-in "remove programs" functions.

9. Universal Extractor to 'unzip' exe-files, 7-zip for archives.

10. Universal Viewer: Open documents, audio, video, and everything.

11. TeamViewer: Remotely control other computers; great for home-networking or accessing friend's computers.

12. KeePass 2.06 with FormFiller and Floating toolbar plugins: Store passwords and auto-type them into IE or Firefox sites. (Warning: Avoid KeePass 2.07; floating toolbar plug-in for Firefox doesn't work on it yet).

Honorable mentions:
-- TinySpell, TheSage and FreeSpell for spell-checking and looking up words.
-- Driver Magician Lite and DriverMax for driver backup and update.
-- RegShot, RegScanner, RegFromApp for registry functions
-- Zoom Player Standard (free version) for movies, Screamer Radio for streaming, VLC Player maybe (it was the best, but then got bloated, not sure anymore)
-- Evernote to grab internet content (but bit bloated)
-- GIMP as a free Photoshop alternative (but requires learning)

_________________
Hardware: 1.8 GHz laptop with 4 GB ram, Windows XP/SP3
Software: Prevx, Privatefirewall, KeyScrambler.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 17th, 2009, 1:05 pm 
Offline

Joined: February 7th, 2009, 11:28 pm
Posts: 384
gixmi wrote:
same question rise up!! When you install the program : Do you see any interaction ?
Do you have a link in Inicio- all the programs ? :?


??

I don't understand the question.

For the programs I listed, you see the usual installation notices (on XP at least); most of them let you specify the installation directory (C:\Program Files is always the default), and add shortcut links to start menu, desktop and/or quick lauch bar - usually you can specify whether you want those links or not.

if they don't, just click on the main exe and drag it into the menu of your choice, or start up folder to auto start, or delete such entries if unwelcome. use sysinternals' autoruns or anvir task manager free, for example, to check if a newly installed program added auto-start entries - I disable them most of the time. Add/delete [file name].exe entries (containing folder and path values) in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths (for XP registry at least) to enable running them by name only (without need to specify full path).

_________________
Hardware: 1.8 GHz laptop with 4 GB ram, Windows XP/SP3
Software: Prevx, Privatefirewall, KeyScrambler.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 20 posts ]  Go to page Previous  1, 2

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 4 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group