Hello to this community.
I am trying to add two useful cmd execution commands to the context menu. I am left wondering what would be the command line shortcut?
One of the cmd commands I want to use is:
(which creates a list of file names in a folder.
And the other would be to select specific file types in the current directory.
Would anyone know what the execution parameters would be?
I am trying to add two useful cmd execution commands to the context menu. I am left wondering what would be the command line shortcut?
One of the cmd commands I want to use is:
Code:
cmd /c dir /b > "%temp%\Dir.txt" & notepad "%temp%\Dir.txt"
And the other would be to select specific file types in the current directory.
Would anyone know what the execution parameters would be?