We can wrap it on a VBscript file
Dim shell, command
Set shell = CreateObject("WScript.Shell")
' Specify your command here
command = "powershell.exe -File c:/users/user01/Myscript.ps1"
' Run the command hidden (0 = hidden window)
shell.Run command, 0, False