Right click shortcut and menu bar button for adding Readme in a folder

Hello,

As the title says, is there a button or right click shortcut to do the following in the current folder:

  1. Create a new file named readme.txt or readme.md
  2. Open this file in notepad or notepad++
  3. add by default the current date/time and windows user name to the first line of the text file.

Thanks for your responses.

Make a DOS button:

@nodeselect
@runmode:hide

echo %date% %time% - %username% > {sourcepath}readme.txt
start {apppath|notepad++}notepad++.exe {sourcepath}readme.txt

Pardon but can you tell me how to make a DOS button. A bit of guidance would hopefully make it work.
Thanks