I am running Jenkins as a service and I want to run a batch file, which is quite simple. But the batch file requires a command window to be popped up, now Jenkins will fail when it comes to that. The batch file is as follows, the signing of a file.
"smctl.exe" sign --keypair-alias=<alias> -d=SHA256 --verbose --config-file <config
file> --input "c:\test\test.exe"
Now smctl.exe
requires a new window to be popped up , but I dont want that , so is there a way it can run in the background ?