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.
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.
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.
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:
This script for Jitbit Macro Recorder launches Internet Explorer privacy cleaner. Tested under IE7, IE8. Never tested it with IE9 though.
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) 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