I have the following bat file:
@echo off
start /min powershell "& 'C:\Admin\c.ps1'"
exit
I don't want to display the powershell window as this is an administrative script that runs on startup.
I was under the impression that using start /min will solve it, but It's still displaying.