A family of Microsoft products that enable users to capture, organize, and reuse notes electronically.
A simple one-liner:
for /f %%g in (students.txt) do (copy template.one %%g.one)
- Store this line in xyz.bat file using notepad
- students.txt is a notepad file with one line per student containing its last name
- template.one is the template Onenote section
- run xyz.bat in a CMD window
The result are x sections (*.one files), named <studentx>.one
I'm really no expert in scripting, but I have tested it ;-)
It works only with all files in the same directory because I omitted any paths.
Bernd