I have a simple SSIS package that updates a sql server table from a flat file that's generated by another program. This needs to be run adhoc by dozens of non technical employees. I've investigated various methods such as powershell scripts or batch files but they all appear to need some SSIS/SSMS/DLL installed. For example my batch file
osql -S "SERVER-NAME" -E -Q"exec msdb.dbo.sp_start_job 'DataRefresh'"
doesn't recognize the osql command on their machines. They do have access to the network drive where the sql server lives, and if they RDP into it they can run the batch file. But that's not ideal.
Is there a way to enable them to run the package without installing other programs? If not, what would be the method with the least overhead?
No additional references, C# application in VS2022