├── speak.bat ├── speakatstart.py └── README.txt /speak.bat: -------------------------------------------------------------------------------- 1 | C:\Anaconda3\python.exe C:\Users\username\Desktop\pyscripts\startup\speakatstart.py -------------------------------------------------------------------------------- /speakatstart.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | def execute_command(str): 3 | subprocess.Popen(['C:\Program Files (x86)\eSpeak\command_line\espeak.exe', str]) 4 | 5 | execute_command("Welcome to windows master") -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | Python script to have the computer say "Welcome to windows master" on system bootup 2 | 3 | Download espeak from http://espeak.sourceforge.net/download.html 4 | 5 | Place the speak.bat file in C:\Users\username\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup 6 | to invoke the python program when the system boots up --------------------------------------------------------------------------------