All,
I dont know if this has been posted here before but i said i would post it anyway. My organisation has multiple ways of connecting to remote devices on our network, from SSHv2, telnet, http, https etc. I wanted to be able to edit the SWToolSet options that show up on Orion web portal to include options such as above but also to remove options that are only available with a local installation of the engineers tool set (which i do not possess except on my server). Other posts mention how to do this if you have Engineers toolset installed locally on your PC by editing the SWToolset.MenuOptions file . This file though is also installed seemingly once you install SWToolset. The SWToolset.MenuOptions file can be found at the following path in Windows 7 (i dont have XP installed so i cant check for this distro im afraid):
C:\Users\ username\AppData\Local\VirtualStore\Program Files\Solarwinds\Common
You can open this file using notepad. I have so far edited as follows and now i have a customised SWToolset right click options:
<!-- Supported options are: -->
<!-- ${TARGET} = IP or hostname (prefrence to IP) -->
<!-- ${IP} = IP -->
<!-- ${HOSTNAME} = Hostname -->
<!-- ${COMMUNITY}, ${IFNAME}, ${IFINDEX} ${QUOTE} -->
<!-- 'Required=' The sum of the parameters needed for that menu option to be enabled. --><!-- IP=1, Hostname=2, Target=4, IFIndex=8, IFName=16 --><!-- --><!-- --><!-- <MenuOption Visible="True" Title="DOS Ping" ExecString="command /K ping ${IP}"></MenuOption> -->
<SWToolset Version="1">
<MenuOptions>
<MenuOption Visible="TRUE" Title="Hide Menu" BeginGroup="FALSE" HasSubMenu="FALSE" ExecString="SWTOOL:HIDEMENU" Icon="HIDEMENU" Extra="" Parent="" Required="0"/>
<MenuOption Visible="TRUE" Title="Http" BeginGroup="FALSE" HasSubMenu="FALSE" ExecString="SWTOOL:WEBBROWSE" Icon="WEBBROWSE" Extra="" Parent="" Required="4"/>
<MenuOption Order="110" ID="12" Title="Https" Visible="TRUE" BeginGroup="FALSE" HasSubMenu="FALSE" ExecString="C:\Program Files\Internet Explorer\iexplore https://${IP}" Extra="" Required="4" Icon="WEBBROWSE"/>
<MenuOption Order="110" ID="12" Title="HP Management" Visible="TRUE" BeginGroup="FALSE" HasSubMenu="FALSE" ExecString="C:\Program Files\Internet Explorer\iexplore https://${IP}:2381" Extra="" Required="4" Icon="WEBBROWSE"/>
<MenuOption Order="110" ID="12" Title="Dell Management" Visible="TRUE" BeginGroup="FALSE" HasSubMenu="FALSE" ExecString="C:\Program Files\Internet Explorer\iexplore https://${IP}:1311" Extra="" Required="4" Icon="WEBBROWSE"/>
<MenuOption Visible="TRUE" Title="Telnet" BeginGroup="FALSE" HasSubMenu="FALSE" ExecString="SWTOOL:TELNET" Icon="TELNET" Extra="" Parent="" Required="4"/>
<MenuOption Order="110" ID="12" Title="SSHv2" Visible="TRUE" BeginGroup="FALSE" HasSubMenu="FALSE" ExecString="C:\Program Files\Solarwinds\Toolset\putty.exe ${IP}" Extra="" Required="4" Icon="WATCHIT"/>
<MenuOption Visible="TRUE" Title="DOS tracert" BeginGroup="TRUE" HasSubMenu="FALSE" ExecString="cmd.exe /K tracert ${TARGET}" Icon="DOS" Extra="" Parent="" Required="4"/>
<MenuOption Visible="TRUE" Title="DOS Ping" BeginGroup="TRUE" HasSubMenu="FALSE" ExecString="cmd.exe /K ping ${TARGET}" Icon="DOS" Extra="" Parent="" Required="4"/>
<MenuOption Visible="TRUE" Title="Remote Desktop" BeginGroup="FALSE" HasSubMenu="FALSE" ExecString="SWTOOL:RDP" Icon="REMOTEDESKTOP" Extra="" Parent="" Required="4"/>
<MenuOption Visible="TRUE" Title="RDM" BeginGroup="TRUE" HasSubMenu="FALSE" ExecString="C:\Program Files\Devolutions\RemoteDesktopManager\RemoteDesktopManager.exe" Icon="REMOTEDESKTOP" Extra="" Parent="" Required="4"/>
<MenuOption Visible="TRUE" Title="Settings" BeginGroup="TRUE" HasSubMenu="FALSE" ExecString="SWTOOL:ShowSettings" Icon="ShowSettings" Extra="" Parent="" Required="0"/>
</MenuOptions>
</SWToolset>