Reputation: 253
I have Richcopy tool which i need to run in every after 5 minutes. I need to the application run in background instead of showing splash window.
Please help us.
Upvotes: 2
Views: 724
Reputation: 31231
You can use a VBScript (save as .vbs) to run it hidden in the background
Set objShell = WScript.CreateObject("WScript.Shell")
objShell.Run("richcopytool.exe"), 0, True
Upvotes: 1