This macro renames all files in a given folder to “file1″, “file2″, “file3″ etc. Just keep pressing Ctrl + Alt + Z in Macro Recorder and the macro will iterate to the next file.

massrename

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...

This macro launches the “Windows Update” tool and forces it to check for updates by simulating a mouse click on the “Check now” link. The mouse-click uses “relative” coordinates, so it’s immune to window size and location change.

This macro has been tested under Windows 7 only, might not work under Vista or XP.

win7CheckUpdates

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...

This macro launches Internet Explorer’s “Proxy server” dialog.

The macro actually has no practical use, but it’s a fine example of how a macro can use:

  1. “launch process” macro-command
  2. “wait for process” macro-command
  3. sending mouse-clicks from a macro, based on window-relative coordinates
  4. sending key combinations (that is – Alt+Letter in this particular macro example)

LaunchIEProxyDialog.zip

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

This script for Jitbit Macro Recorder launches Internet Explorer privacy cleaner. Tested under IE7, IE8. Never tested it with IE9 though.

clearIEcache.zip

1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...

Windows 7 introduced a new disk defragmenter tool that is automated in by this macro.

The macro simply starts the defragmenter and sends an “Alt+D” keyboard combination to its window.

Download - defragment7.zip

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

1) The first line of the macro launches the Windows XP Disk Defragmenter:

OPEN FILE : dfrg.msc

2) The next line simply waits for the defragmenter window to appear:

WAIT FOR : Disk Defragmenter : appear : 2000

3) Finally this block launches the appropriate item in the defragmenter window menu (which in our case is “Actions - Defragment”):

Keyboard : AltLeft : KeyDown
Keyboard : A : KeyDown
Keyboard : A : KeyUp
Keyboard : D : KeyDown
Keyboard : D : KeyUp
Keyboard : AltLeft : KeyUp

Of course you don’t have to actually type these commands when you create a script in Macro Recorder, you can use the toolbar instead. First you click “Insert ‘Open file’ command”, then you click “Insert ‘Wait for window’ command” etc… Jitbit’s macro-language remains “hidden”, it is used only if you decide to edit a saved macro in some external text editor like Notepad (which is the preferred way for some programmers and tech-geeks).

Download - defragment.zip

1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...