An open API service indexing awesome lists of open source software.

https://github.com/srbrettle/hourly-cron-folder-windows-service-csharp

Windows Service to run all executables in "C:/Cron" folder every hour. Implemented in C#.
https://github.com/srbrettle/hourly-cron-folder-windows-service-csharp

administrator-rights cron crontab scheduler scheduling service uac-bypass windows windows-service

Last synced: about 2 months ago
JSON representation

Windows Service to run all executables in "C:/Cron" folder every hour. Implemented in C#.

Awesome Lists containing this project

README

          

# Hourly-Cron-Folder-CSharp
Windows Service to run all executables in "C:/Cron" folder every hour. Implemented in C#.
_______________
## Install Service

1. Run command prompt (CMD) with administrator rights.
2. Run the following command (modify values in [ ]): c:\windows\microsoft.net\framework\v[Your installed .NET Framework version]\installutil.exe "[The full path to the windows service exe]"
3. Restart terminal.
_______________
## Usage
Executables inside "C:/Cron" folder will launch on service startup and then hourly thereafter.
_______________
## Uninstall Service

1. Run command prompt (CMD) with administrator rights.
2. Run the following command (modify values in [ ]): c:\windows\microsoft.net\framework\v[Your installed .NET Framework version]\installutil.exe -u "[The full path to the windows service exe]"
3. Restart terminal.
_______________