Just a tip for people using batch files in the DSD folder where it might be several folders down. Think from the Desktop.
You can use "%~dp0\dsd.exe" in the batch files to run the DSD.exe program without having to drill down to the DSD folder. You can also transfer the folder to another PC and the batch file will still work wherever you put it.
So instead of this in the batch file
C:\Users\User\Desktop\dsd folder\dsd.exe" -v3 -dr4 -dh8 -ds71 -dd100 -dv30
You just need this
"%~dp0\dsd.exe" -v3 -dr4 -dh8 -ds71 -dd100 -dv30
Make sure "%~dp0\dsd.exe" has " " around it like shown.
It also won't care where you put the folder, as long as the batch file is in the same folder as dsd.exe.
(I'm horrible at explaining stuff, so hopefully someone understands this and might be a benefit to someone.
You can use "%~dp0\dsd.exe" in the batch files to run the DSD.exe program without having to drill down to the DSD folder. You can also transfer the folder to another PC and the batch file will still work wherever you put it.
So instead of this in the batch file
C:\Users\User\Desktop\dsd folder\dsd.exe" -v3 -dr4 -dh8 -ds71 -dd100 -dv30
You just need this
"%~dp0\dsd.exe" -v3 -dr4 -dh8 -ds71 -dd100 -dv30
Make sure "%~dp0\dsd.exe" has " " around it like shown.
It also won't care where you put the folder, as long as the batch file is in the same folder as dsd.exe.
(I'm horrible at explaining stuff, so hopefully someone understands this and might be a benefit to someone.
Last edited: