I've developed a .net service and is up and running. In the code I have to fetch some command and one of them could be to open an image fullscreen (or, in Windows 10, in presentation mode).
I already have my method and is working with other commands (like open notepad, or google chrome, etc)
Private Sub LaunchCommand(filename As String, arguments As String)
Dim startInfo As New ProcessStartInfo
startInfo.FileName = filename
startInfo.Arguments = arguments
Process.Start(startInfo)
End Sub
What kind of arguments should i pass to that method?
With cmd I can only run
start "" /max "c:\path to my img\img.jpg"
IMPORTANT: I've already setted up permission and other OS stuff. I Just need to open the image.