home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Support
Installation, configuration support
How to hide Windows 7
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="zicoz" data-source="post: 645816" data-attributes="member: 24585"><p>Do you only use your computer as a HTPC ifreaky? If so I'd recomend that you try what I've been told to do in this thread, have a batch file launch instead of explorer.exe when you boot Windows. Then you can use the batchfile to launch newcs.exe and Mediaportal. Then you won't get the taskbar at all since it boots straight into Mediaportal. When I boot my computer the MP splashscreen covers anything else.</p><p></p><p>Wrote up a guide on my current setup:</p><p></p><p>Guide to booting Windows directly into Mediaportal</p><p></p><p></p><p>First we need to create 2 registry edits: </p><p></p><p>The first is to have a quick way to revert back to launching the Windows-shell instead.</p><p></p><p>Start -> Regedit</p><p>Go to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\</p><p>Press File -> Export and save it as Windows.reg in c:\batch</p><p></p><p></p><p>Then we want to create the .reg-file that will launch Mediaportal</p><p></p><p>Start -> Regedit</p><p>Go to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\</p><p>Press File -> Export and save it as Windows.reg</p><p>Doubliclick on "Shell" in the window on the right side and replace explorer.exe with c:\batch\mediaportal.bat</p><p>Press File -> Export and save it as Mediaportal.reg in c:\batch</p><p></p><p>The reason for pointing it to a .bat-file instead of c:\program files\team mediaportal\mediaportal\mediaportal.exe is that some people might need to launch other programs aswell, one such program might me imon.exe which will not launch if you point it directly to mediaportal.exe rendering your remote useless.</p><p></p><p></p><p>Now right-click your .reg files and choose "edit"</p><p></p><p>Now remove everything but the following lines.</p><p></p><p>For windows.reg:</p><p></p><p>[CODE]Windows Registry Editor Version 5.00</p><p></p><p>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]</p><p>"Shell"="explorer.exe"[/CODE]</p><p></p><p>For Mediaportal.reg:</p><p></p><p>[CODE]Windows Registry Editor Version 5.00</p><p></p><p>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]</p><p>"Shell"="c:\batch\mediaportal.bat"[/CODE]</p><p></p><p></p><p></p><p>Now we are going to create the batch-files we need.</p><p></p><p>First the one to launch Windows this batchfile can be added to Mediaportal using the Multishortcut-plugin and when you press it it pops up a messafe saying "Rebooting into Windows shell" before it reboots into the Windows shell.</p><p></p><p>Open Notepad and enter the following:</p><p></p><p>[CODE]regedit /s c:\batch\explorer.reg</p><p>shutdown -r -c "Rebooting into Windows shell"</p><p>exit[/CODE]</p><p></p><p>Save it as c:\batch\Windows.bat</p><p></p><p>Now to the batchfile that will change the registry so that we boot directly into Mediaportal.</p><p></p><p>Open Notepad and enter the following</p><p></p><p>[CODE]regedit /s c:\batch\mediaportal.reg</p><p>shutdown -r -c "Rebooting into Mediaportal"</p><p>exit[/CODE]</p><p></p><p>Save it as c:\batch\MediaportalUI.bat</p><p></p><p></p><p>And last we need to create the bootscript, this is the script that launched Mediaportal and any other programs we might want to launch.</p><p></p><p>Open Notepad and enter the following:</p><p></p><p>[CODE]start /d "C:\program files\team mediaportal\mediaportal" mediaportal.exe[/CODE]</p><p></p><p>Save it as c:\batch\mediaportal.bat</p><p></p><p>If you need to launch Imon aswell simply add this line to the script</p><p></p><p>[CODE]start /d "C:\program files\soundgraph\imon" imon.exe[/CODE]</p><p></p><p>If you need to launch any other programs simply add them to the script aswell.</p><p></p><p>Now you can create some shortcuts to your Mediaportal-UI.bat and your Windows.bat files on your desktop this is not something you have to do, but it makes it quicker/easier to run the scripts.</p><p></p><p>If you run the mediaportalUI.bat you will boot reboot directly into Mediaportal after a few seconds.</p><p></p><p>To boot back into the normal Windows UI all you need to do is to press ctrl+alt+delete and select "Start Task Manager" then choose "New Task" and run windows.bat.</p><p></p><p>As mentioned earlier I have added it as a Multishortcut in my Mediaportal so that I can run it without opening task manager.</p><p></p><p>Thanks to <a href="https://forum.team-mediaportal.com/members/12382.html" target="_blank">mbuzina</a> for the registry hack.</p></blockquote><p></p>
[QUOTE="zicoz, post: 645816, member: 24585"] Do you only use your computer as a HTPC ifreaky? If so I'd recomend that you try what I've been told to do in this thread, have a batch file launch instead of explorer.exe when you boot Windows. Then you can use the batchfile to launch newcs.exe and Mediaportal. Then you won't get the taskbar at all since it boots straight into Mediaportal. When I boot my computer the MP splashscreen covers anything else. Wrote up a guide on my current setup: Guide to booting Windows directly into Mediaportal First we need to create 2 registry edits: The first is to have a quick way to revert back to launching the Windows-shell instead. Start -> Regedit Go to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\ Press File -> Export and save it as Windows.reg in c:\batch Then we want to create the .reg-file that will launch Mediaportal Start -> Regedit Go to HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\Winlogon\ Press File -> Export and save it as Windows.reg Doubliclick on "Shell" in the window on the right side and replace explorer.exe with c:\batch\mediaportal.bat Press File -> Export and save it as Mediaportal.reg in c:\batch The reason for pointing it to a .bat-file instead of c:\program files\team mediaportal\mediaportal\mediaportal.exe is that some people might need to launch other programs aswell, one such program might me imon.exe which will not launch if you point it directly to mediaportal.exe rendering your remote useless. Now right-click your .reg files and choose "edit" Now remove everything but the following lines. For windows.reg: [CODE]Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] "Shell"="explorer.exe"[/CODE] For Mediaportal.reg: [CODE]Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] "Shell"="c:\batch\mediaportal.bat"[/CODE] Now we are going to create the batch-files we need. First the one to launch Windows this batchfile can be added to Mediaportal using the Multishortcut-plugin and when you press it it pops up a messafe saying "Rebooting into Windows shell" before it reboots into the Windows shell. Open Notepad and enter the following: [CODE]regedit /s c:\batch\explorer.reg shutdown -r -c "Rebooting into Windows shell" exit[/CODE] Save it as c:\batch\Windows.bat Now to the batchfile that will change the registry so that we boot directly into Mediaportal. Open Notepad and enter the following [CODE]regedit /s c:\batch\mediaportal.reg shutdown -r -c "Rebooting into Mediaportal" exit[/CODE] Save it as c:\batch\MediaportalUI.bat And last we need to create the bootscript, this is the script that launched Mediaportal and any other programs we might want to launch. Open Notepad and enter the following: [CODE]start /d "C:\program files\team mediaportal\mediaportal" mediaportal.exe[/CODE] Save it as c:\batch\mediaportal.bat If you need to launch Imon aswell simply add this line to the script [CODE]start /d "C:\program files\soundgraph\imon" imon.exe[/CODE] If you need to launch any other programs simply add them to the script aswell. Now you can create some shortcuts to your Mediaportal-UI.bat and your Windows.bat files on your desktop this is not something you have to do, but it makes it quicker/easier to run the scripts. If you run the mediaportalUI.bat you will boot reboot directly into Mediaportal after a few seconds. To boot back into the normal Windows UI all you need to do is to press ctrl+alt+delete and select "Start Task Manager" then choose "New Task" and run windows.bat. As mentioned earlier I have added it as a Multishortcut in my Mediaportal so that I can run it without opening task manager. Thanks to [URL="https://forum.team-mediaportal.com/members/12382.html"]mbuzina[/URL] for the registry hack. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
Installation, configuration support
How to hide Windows 7
Contact us
RSS
Top
Bottom