I made a script that executes an EXE, which changes fan speed of my laptop. But on boot I get annoying console popup, how do I make it go away?
vbscript:
Set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "DellFanCmd", "ec-disable-nofanchg", "", "runas", 1
objShell.ShellExecute "DellFanCmd", "fan1-level1", "", "runas", 1
Thanks