I've used Remote Desktop Manager for a while and wanted to be able to fillin the Dell Open Manage Server Administrator web gui login in an embedded IE tab.
I wasn't able to get it to work with any combination of user/password element id's I used but was able to modify the dell openmanage web gui to fill the information based on url parameters.
Install Dell OpenManage Server Administrator
Edit the c:\Program Files\Dell\SysMgt\xslroot\oma\template\web\LoginPage.xsl in notepad or something similar
(if x64 c:\Program Files (x86)\Dell\SysMgt\xslroot\oma\template\web\LoginPage.xsl)
In the xsl file search for QueryString_Parse();
Insert this code below:
if (QueryString("host") != null)
{
document.login.targetmachine.value = QueryString("host");
}
if (QueryString("user") != null)
{
document.login.user.value = QueryString("user");
document.login.password.focus();
}
You can change the default focus by searching for document.login.user.focus lines and changing them to be
document.login.password.focus to focus the password input box straight away.
After that
1. Create a web connection session to https://localhost:1311/servlet/OMSALogin?host=$CUSTOM_FIELD1$&user=$CUSTOM_FIELD2$
2. Add the hostname to custom field 1
3. Add the user to custom field 2
Hi,
This is cool thank you for the tip.
David Hervieux