How to autostart Sunshine? #16403
-
|
I tried doing this: Copy-Item -Path "C:\Users\name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Scoop Apps\Sunshine.lnk" -Destination "C:\Users\name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup\Sunshine.lnk"This start Sunshine at startup but also opens a console window for some reason. How can I autostart Sunshine without a console window so that just the daemon is running the background? EDIT: One hack I have found: Create a file PowerShell -Command "Start-Process 'C:\Users\name\scoop\apps\sunshine\current\sunshine.bat' -WindowStyle Hidden"Then edit |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
I think using the following CreateObject("Wscript.Shell").Run "cmd.exe /c D:\Temporary\Personal\HideRunAria2.cmd", vbhide
Replace the paths in the script above with your desired ones, save it as |
Beta Was this translation helpful? Give feedback.
-
|
The solution is to use first use the "install-service" script in the scripts directory. And then run the autostart-service script in the same directory, Both need to be run as admin. |
Beta Was this translation helpful? Give feedback.
The solution is to use first use the "install-service" script in the scripts directory. And then run the autostart-service script in the same directory, Both need to be run as admin.