Page 1 of 1

how can i use URL shortcuts with portable?

Posted: Mon Jul 30, 2012 7:31 pm
by wtfbollos
when i try and click on internet shortcuts it just opens like 4 ot 5 tabs with some text in them and never goes to the URL?

what to do???

:?:

Re: how can i use URL shortcuts with portable?

Posted: Mon Jul 30, 2012 8:27 pm
by mapx
did you verify your system for malware ?

Re: how can i use URL shortcuts with portable?

Posted: Mon Aug 27, 2012 9:31 pm
by wtfbollos
it's not that, it is a simple problem of iron portable not being able to read .url files..

Re: how can i use URL shortcuts with portable?

Posted: Fri Nov 30, 2012 8:16 am
by robertcollier4
You have to the URL parsed in the .URL file by windows through "rundll32.exe shdocvw.dll,OpenURL %l" and then handled by the HTTP handler.

Code: Select all

[-HKEY_CLASSES_ROOT\.url]

[HKEY_CLASSES_ROOT\.url]
@="InternetShortcut"

Code: Select all

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\InternetShortcut\shell\open\command]
@="rundll32.exe shdocvw.dll,OpenURL %l"

Code: Select all

[HKEY_CLASSES_ROOT\http\shell\MyHTMLFile\command]
@="T:\\IronPortable\\IronPortable.exe --new-window \"%1\""
See my other post for the full REG script.