don't show on start up
Hank Davidson
I have also wanted this feature and have a workaround the works great.
DISABLE START WITH WINDOWS FEATURE IN DECKBOARD
CREATE THIS BATCH FILE TO START & MINIMIZE DECKBOARD
@echo off
REM Launch Deckboard
start "" "[PATH TO DECKBOARD EXE]"
REM Wait 8 seconds (longer if needed for boot)
timeout /t 8 /nobreak >nul
REM Send Ctrl+Shift+H using PowerShell
powershell -command "$wshell = New-Object -ComObject wscript.shell; $wshell.SendKeys('^+h')"
exit
CREATE THIS VBS SCRIPT TO SILENTLY EXECUTE BAT FILE
Set WshShell = CreateObject("WScript.Shell")
WshShell.Run """[PATH TO DECKBOARD_HOTKEY BAT]""", 0, False
SET VBS TO START WITH WINDOWS
Enjoy!
Matthew Robinson
I ran into this on a fresh install. Installed from the default installer available and when launching after install, it just shows a blank window with a spinning wheel. I updated the windows firewall settings to allow traffic and that got it working on my desktop/server. Once i got that done, i was able to launch in wifi mode with the correct IP address. USB still doesn't work for me, but not an issue with wifi working.