You are not logged in.
Hello.
Has anyone set up successfully?
Does it work for 9.5.6?
--
GLPI 10.0.7
GLPI-Inventory 1.2.1
Ubuntu Server 20.04 LTS
Offline
Found this https://forum.glpi-project.org/viewtopic.php?id=123156 but site https://customurl.codeplex.com/ is not responding. Any ideas?
Found also https://glpi-project.org/DOC/EN/glpi/in … _link.html but when I add glpi://MSTSC.EXE,[NAME]
"Firefox is unable to open this address because the "glpi" protocol is not bound to any program or is not allowed in this context".
The documentation does not mention how to add this protocol.
Last edited by WebGreg (2021-11-15 09:29:35)
--
GLPI 10.0.7
GLPI-Inventory 1.2.1
Ubuntu Server 20.04 LTS
Offline
Casually doing the same thing today for VNC.
FOR MSTSC it's the same:
https://stackoverflow.com/questions/625 … d-via-cust
It works with vnc, so MSTC will be the same.
Offline
Thanks a lot! :-D
1. Add to registry:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\glpi]
@="URL:glpi Protocol"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\glpi\shell]
[HKEY_CLASSES_ROOT\glpi\shell\open]
[HKEY_CLASSES_ROOT\glpi\shell\open\command]
@="C:\\temp\\rdp.bat %1"
2. Create batch rdp.bat:
SET S=%1
SET S=%S:~7%
call "C:\Windows\System32\mstsc.exe" %S%
quit 0
3. Add new external link:
glpi:///v:[NAME]
Or maybe you want to run putty and connect to a linux server? Here you are! :-D
1. Add to registry:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\putty]
@="URL:putty Protocol"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\putty\shell]
[HKEY_CLASSES_ROOT\putty\shell\open]
[HKEY_CLASSES_ROOT\putty\shell\open\command]
@="C:\\temp\\putty.bat %1"
2. Create batch putty.bat:
SET S=%1
SET S=%S:~8,-1%
call "C:\temp\putty.exe" %S%
quit 0
3. Add new external link:
putty:///[IP]
4. If you will get error:
Couldn't agree a key exchange algorithm (available: ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521, diffie-hellman-group16-sha512,diffie-hellman-group18-sha512,)
You have to download higher putty.exe version.
5. You can have problem with Firefox. If it does not recognize the protocol then ...
about:config
Add network.protocol-handler.expose.protocol_name and set as false
Last edited by WebGreg (2021-11-17 11:24:48)
--
GLPI 10.0.7
GLPI-Inventory 1.2.1
Ubuntu Server 20.04 LTS
Offline