I have a command that I want users to have some access to so that they can run batch files.
These files are ran nightly but sometimes the users can't wait.
They add an input file - Excel - and the batch file spits out a report based on the input file. Works great but I need this to be more just in time.
So I have a command line script that I run to execute the batch files:
token.exe /batch %batchname%
I would like to simply have an input field that they can write the batchname and hit submit for the corresponding job to be run.
Can I do this on a Windows Server? Do you have any example code to help get started?
And if it can't be done what do you suggest?