Got a solution in another forum: Save this as STARTKODI.JS. Execute it anywhere you can at start of Windows. WshShell = WScript.CreateObject("WScript.shell"); var command="kodi.exe"; //this may needs to be path fully qualified. task=WshShell.Exec(command); WScript.Sleep(10000); t...
Hi. I have a problem with Kodi 16 and 17 on my sons computer, some error with DX11, it cant be solved so i need a short cut. First time after each reboot i start Kodi i get a error "Kodi is not responding" five seconds later it disappears and Kodi starts with a black screen, Alt + Tab solv...
Hi Since Kodi is updated i cant get my library to work properly, its a filename that is wrong. Example: Folder: Kids movies Sub-folder: Aladdin Files in sub-folder: Aladdin.mkv, poster.jpg, Aladdin-fanart.jpg and Aladdin.nfo Now the problem is that the poster.jpg must be named Aladdin-poster.jpg for...
My code should already do that. I could add the status output like in penpen's code but it will still not prepend the BOM (for the reasons I already mentioned above). @if (@a)==(@b) @end /* @echo off &setlocal for /r %%i in (*.mkv *.avi *.wmv) do ( cscript //nologo //e:jscript "%~fs0"...
Naild it Did some google on the chcp, and i turned out i needed to use chcp 1252. Used Notpad++ to change in the file, UTF-8 (no BOM) format. Thank you very much every one for your help Now i feel dumb when asking more of u, but is it possible to get the playtime in the nfo to? The final code i used...
Got this answer in another forum, is there somthing to do with that: "The answer is code pages, my friend! See: chcp /? Useful list of code pages here Try using chcp 1252 Which is the Windows West European Latin 1 code page. If it doesn't work, check if any of the other ones work. You can also...
Got this answer in another forum, is there somthing to do with that: "The answer is code pages, my friend! See: chcp /? Useful list of code pages here Try using chcp 1252 Which is the Windows West European Latin 1 code page. If it doesn't work, check if any of the other ones work. You can also ...
It does not create nfo files for those files that uses å Å ä Ä ö Ö é anymore. Can you copy one of those files to a folder somewhere else, and then run the script for that new folder? Make sure you open a cmd window and then start the batch script from that cmd window. Any error messages should rema...
I've updated the above code, removing the bugs aGerman has found (thanks ): Hope it now works without errors. penpen Tested it, now the nfo files have the file extension to, aristocats.avi.nfo it it was right the first time when the name was aristocats.nfo It does not create nfo files for those fil...
Copy the code into a batch file (that is, a text file with extension .bat) in order to run it properly. ⋅ open Notepad (Press [Windows]+[R], type notepad , and click on OK) ⋅ paste the code into the editor window ⋅ menu "File" -> "Save as ..." &sdot...