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#.
- Host: GitHub
- URL: https://github.com/srbrettle/hourly-cron-folder-windows-service-csharp
- Owner: srbrettle
- Created: 2018-02-13T20:43:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-23T17:33:56.000Z (over 8 years ago)
- Last Synced: 2024-12-28T05:15:51.521Z (over 1 year ago)
- Topics: administrator-rights, cron, crontab, scheduler, scheduling, service, uac-bypass, windows, windows-service
- Language: C#
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.
_______________