Hello everybody,
I am new here. And first thing i like is to thank you for this great program!
I have a 1TB hdd.

Part 1 = 30gb winXP
Part 2 = 40gb win7
Part 3 (drive F)= 900gb for the rest
Does the following script I make good to optimize drive F by FOLDERS such that...
1. Move GAMES and PORTABLE programs in to fastest zone (zone 1 methinks)
2. Move my virtual machines VPC and VBOX to 2nd fastest zone
3. Move BACKUP and INSTALLATION folder to end of disk
4. And quickly defrag all others
VolumeSelect
Name("F:")
VolumeActions
// NTFS RECLAIM
ReclaimNtfsReservedAreas()
// NTFS SYSTEM FILES
FileSelect
SelectNtfsSystemFiles(yes)
FileActions
PlaceNtfsSystemFiles(Ascending, MftSize * 0.1)
AddGap(ZoneEnd + 100MB)
FileEnd
// SORT DIRECTORY ONLY
FileSelect
Directory(yes)
FileActions
SortByName(Ascending)
AddGap(ZoneEnd + 300MB)
FileEnd
// MOVE BACKUP FOLDERS TO END OF DISK
FileSelect
DirectoryPath("F:\BACKUP*")
or DirectoryPath("F:\INSTALLATIONS*")
FileActions
MoveToEndOfDisk()
FileEnd
// PUT PORTABLE PROGRAMS AND GAMES INTO ZONE-1
FileSelect
DirectoryPath("F:\PORTABLE*")
or DirectoryPath("F:\GAMES*")
FileActions
SortByName(Ascending)
AddGap(RoundUp(ZoneEnd, VolumeSize * 0.02))
FileEnd
// PUT VIRTUAL MACHINES INTO ZONE-2
FileSelect
DirectoryPath("F:\VPC*")
or DirectoryPath("F:\VBOX*")
FileActions
SortByName(Ascending)
FileEnd
// DEFRAG ALL OTHER QUICKLY
FileSelect
all
FileActions
Defragment(Fast)
FastFill()
FileEnd
VolumeEnd