I'm looking at inserting whatever parameters I would need into a batch script that when run, runs a bunch of process matching records using a vendor matching software. The defraggler part would run at the END of the script so it could defrag the drive where the process matching was done. What parameters would I need to place in the batch script refering to starting a run of defraggler on that particular drive? Thanks for any advice.
I'm looking at inserting whatever parameters I would need into a batch script that when run, runs a bunch of process matching records using a vendor matching software. The defraggler part would run at the END of the script so it could defrag the drive where the process matching was done. What parameters would I need to place in the batch script refering to starting a run of defraggler on that particular drive? Thanks for any advice.
dp
Hello drpat,
"df.exe <driveletter>:" would be the proper syntax. ie df.exe C:
Ah Ok. That is what I thought, but thought it was too...simple. Duh! Thanks a bunch. It would I presume run as a background process not bringing up the gui or anything? For my purposes I would putting this at the end of the patch run script (well that is a lie...my vendor contractor would be doing this)...
Ah Ok. That is what I thought, but thought it was too...simple. Duh! Thanks a bunch. It would I presume run as a background process not bringing up the gui or anything? For my purposes I would putting this at the end of the patch run script (well that is a lie...my vendor contractor would be doing this)...
Or if I just wanted to do the entire ISI directory on E...
df.exe E:\ISI\
Correct?
Correct, that would defrag the entire ISI directory and correct it would run the program without the GUI. Below is a sample batch file (that would work on my computer, program locations might be different for you) that would list all the drives available to defrag:
Correct, that would defrag the entire ISI directory and correct it would run the program without the GUI. Below is a sample batch file (that would work on my computer, program locations might be different for you) that would list all the drives available to defrag:
No problem. That batch file is really simple and probably not optimized to most standards like turning @echo off but I was just trying to give an example. I wish you good luck! Take care