ken82m Posted October 11, 2007 Posted October 11, 2007 This script will collect both hardware and software information and displays the information in a GUI window.Upon hitting the "Launch Help Desk Request Form" button the information is stored it in the clipboard and an web page launched. My html form retrieves the configuration information information and writes it to a text box.I have deployed this tool across 600 computers and it has been extremely useful.Certainly better than calling a user with some basic questions The tool can be easily expanded to retrieve additional user information.Future ReleaseSoon I will setup my html form to accept passed paramters. I will then use this script to pull user information (First Name, Last Name, Phone etc.) directly from Active Directory.In this way the form will be almost entirely filled out with the exception of the problem description.Help_Desk_Tool.zip "I believe that when we leave a place, part of it goes with us and part of us remains... Go anywhere, when it is quiet, and just listen.. After a while, you will hear the echoes of all our conversations, every thought and word we've exchanged.... Long after we are gone our voices will linger in these walls for as long as this place remains."
Emiel Wieldraaijer Posted October 21, 2007 Posted October 21, 2007 Handy script indeed.. i would add/change something ; the following will add 64bits supported oses $HKCU = "HKEY_CURRENT_USER" $HKLM = "HKEY_LOCAL_MACHINE" $HKU = "HKEY_USERS" $HKCU = "HKEY_CURRENT_USER" $HKCR = "HKEY_CLASSES_ROOT" $HKCC = "HKEY_CURRENT_CONFIG" If @ProcessorArch = "X64" Then $HKCU = "HKEY_CURRENT_USER64" $HKLM = "HKEY_LOCAL_MACHINE64" $HKU = "HKEY_USERS64" $HKCU = "HKEY_CURRENT_USER64" $HKCR = "HKEY_CLASSES_ROOT64" $HKCC = "HKEY_CURRENT_CONFIG64" EndIf ; an changed example from your code $Page = RegRead($HKLM & "\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management", "PagingFiles") Best regards,Emiel Wieldraaijer
Generator Posted October 21, 2007 Posted October 21, 2007 Good work, but at Microsoft Office version it showed Excel 2007 instead of Office 2007(I suppose?)
JustinReno Posted October 21, 2007 Posted October 21, 2007 This is what it shows me:Microsoft Excel Version: Excel 2003
Generator Posted October 21, 2007 Posted October 21, 2007 This is what it shows me:Nvm about it, i took a close look and it was Excel 2007(What does Excel has to do with this )
ken82m Posted November 2, 2007 Author Posted November 2, 2007 (edited) lol It was something specific to us, SAP had a plugin for excel that was always blowing up so checking the actual version of Excel was very useful. Gues I should have converted it to office before posting. Thanks for the tip on the 64bit machines, I'll add that.I honestly have not hit any 64-bit OS's yes I'm ashamed to say, so I had no idea. Good thing to keep in the back of my mind though. -Kenny Edited August 24, 2015 by ken82m "I believe that when we leave a place, part of it goes with us and part of us remains... Go anywhere, when it is quiet, and just listen.. After a while, you will hear the echoes of all our conversations, every thought and word we've exchanged.... Long after we are gone our voices will linger in these walls for as long as this place remains."
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now