pybotnet icon indicating copy to clipboard operation
pybotnet copied to clipboard

windows startup

Open alix1011 opened this issue 2 years ago • 1 comments

Hi bro will you update this project? Add options like startup and task schedule... Please update and add new options.

alix1011 avatar Dec 25 '23 13:12 alix1011

Hi @alix1011,

Thank you for your feedback and suggestion! I appreciate your interest in the project.

Regarding the startup and task scheduling options, the project already includes a scheduling script that allows you to start tasks at specified intervals. You can use the following commands:

  • Start a new schedule for a command:

    /schedule start <second> <shell-command>
    

    For example:

    /schedule start 10 echo "test" >> test.txt
    

    This creates a schedule to run the specified shell command (echo "test" >> test.txt) every 10 seconds.

  • List all running schedules:

    /schedule list
    
  • Stop a schedule by ID:

    /schedule stop <schedule_ids>
    

    For example:

    /schedule stop 0
    

    This stops the schedule with ID 0.

Please note that scheduling is running in RAM, and if the system is turned off, all schedules are cleared.

Regarding the Windows startup feature, I appreciate your patience as I work to enhance this functionality. I'd like to mention that I currently have a full-time commitment, working 9 hours a day, which may extend the time required to implement this feature.

Rest assured, I'm dedicated to improving the project, and I'll make it a priority to address this aspect as soon as my schedule allows. Your understanding and patience are greatly appreciated.

If you have any further questions or suggestions, feel free to let me know. Your feedback is valuable, and I'm committed to making the project better over time.

onionj avatar Dec 25 '23 20:12 onionj