2021-07-21, 13:24
2021-07-21, 13:30
I'm using it too, I don't know if it still doing anything useful, but originally it was to keep focus when I was using external players.
2021-08-31, 11:54
2022-10-28, 16:26
(2022-02-07, 14:03)ratzofftoya Wrote: Has anyone tested whether this works for Windows 11?Yup, it does!
2022-12-23, 00:15
Hi
Since the last Windows update I get the following error message:
Warning: This variable has not been assigned a value.
Specifically: OSVersion (a global variable)
Line#
116: if (OSVersion > = 6.2)
For more details, read the documentation for #Warn.
Windows 10 22H2, unfortunately a reinstallation does not bring success.
Since the last Windows update I get the following error message:
Warning: This variable has not been assigned a value.
Specifically: OSVersion (a global variable)
Line#
116: if (OSVersion > = 6.2)
For more details, read the documentation for #Warn.
Windows 10 22H2, unfortunately a reinstallation does not bring success.
2022-12-23, 16:35
(2022-12-23, 00:15)bart330 Wrote: Hi
Since the last Windows update I get the following error message:
Warning: This variable has not been assigned a value.
Specifically: OSVersion (a global variable)
Line#
116: if (OSVersion > = 6.2)
For more details, read the documentation for #Warn.
Windows 10 22H2, unfortunately a reinstallation does not bring success.
I had this problem a while back. There were also some other strange issues with my set up. I discovered that an upgrade had corrupted my windows set up, probably due to my power supply being interrupted during the upgrade.
Anyway, I followed the instructions at "https://support.microsoft.com/en-us/windows/reinstall-windows-d8369486-3e33-7d9c-dccc-859e2b022fc7#bkmk_reinstall_windows_10_using_installation_media&WindowsVersion=Windows_10" and took the option to Reinstall Windows 10 using installation media and "Keep Everything".
This solved the problem for me.
2022-12-24, 02:36
(2022-12-23, 16:35)berkhornet Wrote:(2022-12-23, 00:15)bart330 Wrote: Hi
Since the last Windows update I get the following error message:
Warning: This variable has not been assigned a value.
Specifically: OSVersion (a global variable)
Line#
116: if (OSVersion > = 6.2)
For more details, read the documentation for #Warn.
Windows 10 22H2, unfortunately a reinstallation does not bring success.
I had this problem a while back. There were also some other strange issues with my set up. I discovered that an upgrade had corrupted my windows set up, probably due to my power supply being interrupted during the upgrade.
Anyway, I followed the instructions at "https://support.microsoft.com/en-us/windows/reinstall-windows-d8369486-3e33-7d9c-dccc-859e2b022fc7#bkmk_reinstall_windows_10_using_installation_media&WindowsVersion=Windows_10" and took the option to Reinstall Windows 10 using installation media and "Keep Everything".
This solved the problem for me.
Thanks for your answer.
I tried to restore it, unfortunately the problem came even after the restore. So now I have reinstalled Windows completely.
2024-05-14, 19:39
Hello,
i have a problem with Launcher4Kodi on Windows 11. After the Windows Update May 2024 (was also a problem on the preview update for may released in april) Kodi will not start after sleep anymore. On reboot its all ok.
Hope its just a windows bug, not a change in Windows 11. Is there an alternative to start Kodi after resume from sleep?
Regards,
Andreas
Edit:
i found a solution, to open Kodi after sleep without Launcher4Kodi:
I used this tutorial / info:
https://learn.microsoft.com/en-us/answer...mes-out-of
Here is my config for the Task Scheduler (save as xml and import, change Path to Kodi, i use the portable version, otherwise remove the param -p. Starts 3 seconds after resume "PT3S")
i have a problem with Launcher4Kodi on Windows 11. After the Windows Update May 2024 (was also a problem on the preview update for may released in april) Kodi will not start after sleep anymore. On reboot its all ok.
Hope its just a windows bug, not a change in Windows 11. Is there an alternative to start Kodi after resume from sleep?
Regards,
Andreas
Edit:
i found a solution, to open Kodi after sleep without Launcher4Kodi:
I used this tutorial / info:
https://learn.microsoft.com/en-us/answer...mes-out-of
Here is my config for the Task Scheduler (save as xml and import, change Path to Kodi, i use the portable version, otherwise remove the param -p. Starts 3 seconds after resume "PT3S")
Code:
<?xml version="1.0" encoding="UTF-16"?>
<Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task">
<RegistrationInfo>
<Date>2024-05-30T11:46:30.9960204</Date>
<Author>ZBOX\Andreas</Author>
<URI>\Kodi after sleep</URI>
</RegistrationInfo>
<Triggers>
<EventTrigger>
<Enabled>true</Enabled>
<Subscription><QueryList><Query Id="0" Path="System"><Select Path="System">*[System[Provider[@Name='Microsoft-Windows-Power-Troubleshooter'] and (Level=4 or Level=0) and (EventID=1)]]</Select></Query></QueryList></Subscription>
<Delay>PT3S</Delay>
</EventTrigger>
</Triggers>
<Principals>
<Principal id="Author">
<UserId>S-1-5-21-681757048-1216958517-1263567340-1001</UserId>
<LogonType>InteractiveToken</LogonType>
<RunLevel>LeastPrivilege</RunLevel>
</Principal>
</Principals>
<Settings>
<MultipleInstancesPolicy>IgnoreNew</MultipleInstancesPolicy>
<DisallowStartIfOnBatteries>false</DisallowStartIfOnBatteries>
<StopIfGoingOnBatteries>false</StopIfGoingOnBatteries>
<AllowHardTerminate>true</AllowHardTerminate>
<StartWhenAvailable>false</StartWhenAvailable>
<RunOnlyIfNetworkAvailable>false</RunOnlyIfNetworkAvailable>
<IdleSettings>
<StopOnIdleEnd>true</StopOnIdleEnd>
<RestartOnIdle>false</RestartOnIdle>
</IdleSettings>
<AllowStartOnDemand>true</AllowStartOnDemand>
<Enabled>false</Enabled>
<Hidden>false</Hidden>
<RunOnlyIfIdle>false</RunOnlyIfIdle>
<WakeToRun>false</WakeToRun>
<ExecutionTimeLimit>PT72H</ExecutionTimeLimit>
<Priority>7</Priority>
</Settings>
<Actions Context="Author">
<Exec>
<Command>D:\Kodi\kodi.exe</Command>
<Arguments>-p</Arguments>
</Exec>
</Actions>
</Task>