I recently upgraded from Take Command v9 to v11 (Build 52). I notice there's a new behavior that creates a problem for me.
I have several batch files that delete all files and directories within a subdirectory. The delete statements uses the /T flag to suppress the listing of individual FILES being deleted. In v9, this also resulted in the suppression of the listing of individual DIRECTORIES being deleted. However, in v11, a line appears for every directory deleted regardless of the flag. Hundreds of "removing <directory name>" lines appear in my console window, hiding information I need to see or forcing it to scroll off beyond the end of my scrollback buffer.
In v11, how do I suppress the listing of each individual DIRECTORY that gets deleted?
My full delete statement is:
del /e /k /s /t /x /y /z <subdirectory name>
Thanks.
I have several batch files that delete all files and directories within a subdirectory. The delete statements uses the /T flag to suppress the listing of individual FILES being deleted. In v9, this also resulted in the suppression of the listing of individual DIRECTORIES being deleted. However, in v11, a line appears for every directory deleted regardless of the flag. Hundreds of "removing <directory name>" lines appear in my console window, hiding information I need to see or forcing it to scroll off beyond the end of my scrollback buffer.
In v11, how do I suppress the listing of each individual DIRECTORY that gets deleted?
My full delete statement is:
del /e /k /s /t /x /y /z <subdirectory name>
Thanks.