Win XBMCLauncher / Launcher4Kodi - All in One Tool for Change Shell, Set Focus and more
(2012-12-15, 18:44)pcgirl Wrote: When I start my PC I am prompted for a password. Will this get past this screen to start XBMC? I have to use a password because I logon to the system remotely.

I think you will still be prompted for password if you use the same user account.

(2012-12-15, 19:27)Philmatic Wrote: I would love to see a "Start the Start Screen when XBMC is closed" or something similar. I run Windows 8 on all my HTPCs and this is one feature that I would love. I can launch XBMC through the Start Screen (Metro) interface perfectly fine, but when I quit XBMC, it stays on the desktop.

All the feature would need to do essentially is send the Window Key to Windows, that would launch the Start Menu launcher.

I don't have Win8, but the following code may work:

Code:
Loop
{
sleep 1000 ; delay one second
Process, Exist, xbmc.exe ; check to see if xbmc.exe is running
If (ErrorLevel = 0) ;if xbmc not running
Process, Exist, explorer.exe ; check to see if explorer.exe is running
If (ErrorLevel = 0)
run explorer.exe
}

In the above code replace explorer.exe with the exe name of Start Menu launcher.

You could also use send key command to send Win key.

Code:
Loop
{
sleep 1000 ; delay one second
Process, Exist, xbmc.exe ; check to see if xbmc.exe is running
If (ErrorLevel = 0) ;if xbmc not running
Process, Exist, explorer.exe ; check to see if explorer.exe is running
If (ErrorLevel = 0)
send {LWIN}
}
Reply


Messages In This Thread
RE: XBMC Launcher - All in One Tool for Change Shell, Autostart XBMC, Set Focus and more - by baijuxavior - 2012-12-16, 06:37
green start button remapping - by Cassiel - 2013-02-12, 21:44
RE: XBMC Launcher - by Govnah - 2013-02-16, 06:32
RE: XBMCLauncher - by MBulli - 2013-02-17, 12:20
Launcher4Kodi - by baijuxavior - 2015-02-17, 15:27
lack of focus - by runey71 - 2015-02-18, 07:53
black screen problem - by -CraZed- - 2015-03-18, 06:36
RE: XBMCLauncher / Launcher4Kodi - by TB4875 - 2015-03-25, 11:49
RE: XBMCLauncher / Launcher4Kodi - by kmarq - 2015-05-19, 14:41
Error - by liamp - 2015-05-31, 23:03
RE: XBMCLauncher / Launcher4Kodi - by gitman - 2015-06-07, 21:40
RE: XBMCLauncher / Launcher4Kodi - by RockerC - 2015-06-16, 16:28
RE: Using Tweak UAC - by berkhornet - 2015-07-13, 19:04
RE: - by alsergo - 2015-11-25, 00:11
W10 and netflix - by Cassiuss - 2016-01-10, 15:50
netflix - by Cassiuss - 2016-01-11, 09:11
netflix - by Cassiuss - 2016-01-11, 11:12
netflix - by Cassiuss - 2016-01-11, 13:04
netflix - by Cassiuss - 2016-01-11, 11:44
Reverse shell to explorer - by shayosef - 2016-01-17, 14:24
Launcher4Kodi improvement - by kalhimeo - 2016-01-27, 20:20
resume during recording kodi - by eddedrukker - 2016-04-03, 08:58
RE: XBMCLauncher / Launcher4Kodi - by leezy88 - 2017-02-06, 09:41
Might be of use to someone... - by Grumpy - 2017-09-19, 04:18
Logout Mark Read Team Forum Stats Members Help
XBMCLauncher / Launcher4Kodi - All in One Tool for Change Shell, Set Focus and more20