Machine Details instead of Resource Explorer - Ron Crumbaker's Web Remote Tools
To make the Web Remote Tools more portable, I replaced the "Resource Explorer" button to instead redirect to the integrated Reporting Console "MachDetails.asp". You can add as many per-machine reports as desired by creating new Reports at the admin console, and just check on "Display in Computer Details", and make sure you add a prompt and qualifier to limit the report to a computer name. See any canned report that ends in "for a specific computer" for an example.
To make this change in machrest.asp, replace 2 things:
#1 from this: <input style='WIDTH: 180px' type='button' value='Resource Explorer' name='Btnl7' ID='Button6'>
to this: <input style='WIDTH: 180px' type='button' value='SMS Machine Info' name='Btnl7' ID='Button6'>
#2: replace the entire Sub Btnl7_OnClick (from Sub to End Sub) with this, replacing the _sitecode with your sitecode on your Reporting server
Sub Btnl7_OnClick
dim CompName,oWshShell
CompName = trim(document.frmMain.txtValue.value)
if len(trim(CompName)) = 0 then
parent.frames.output.location.href "/SMSReporting_sitecode/MachDetails.asp"
else
parent.frames.output.location.href "/SMSReporting_sitecode/MachDetails.asp?Machine=" & CompName
end if
End Sub