Jump to content

Recommended Posts

Posted

Very nice.

Just barely fits on my 1024x768 screen though. Half of the title bar is cut off.

Also, I notice when it displays information about my hard drive, it says it's 10mb (It's 10gb :P ). It seems to swap GB for MB.

  • Replies 53
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

Posted

Hi HeidiR

Nice and improved but there are some small things which i would fixed and/or change

- Harddisk sizes are displayed in MB instead of GB

- I would change the TrayItem or remove it because you still can select pause

- The CPU information is not correct (i think its a WMI problem -> my Dual Quad-Core Xeon 2,33Ghz is displayed as a single PIII Xeon X86 Family 6 Model 23 Stepping 6)

- Only Scsi controllers are detected but not my two HP SAS Controller P400/512MB

- How about OS install date

$objWMIService = ObjGet("winmgmts:{impersonationLevel=impersonate}!\\" & "localhost" & "\root\cimv2")
$colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_OperatingSystem", "WQL", $wbemFlagReturnImmediately + $wbemFlagForwardOnly)

For $objItem In $colItems
    $InstallDate = __StringToDate($objItem.InstallDate); & @CRLF
NextoÝ÷ Øz0iº.´:ºg§¶Æ§u'­¶)à±ú%uêâØ^v*ÞrÚ+Éשj»fz{ZºÚ"µÍÌÍÕÙÙ[QHÝ[Õ[SY
ÙÙ[QÊBÌÍÔÙ[Q]HHÝ[ÓY
ÙÙ[QBÌÍÔÙ[QÛ^HHÝ[ÔÜ]
    ÌÍÕÙÙ[Q    ÌÎNÉÌLÉÌÎNËJ

$ProfileFolderArray[1] -> will be Documents and Settings for English version of Windows

Best regards,Emiel Wieldraaijer

Posted (edited)

Hi.

I still have an issue with this tool hanging on retrieving account infomtratin. I am running it on an XP machine that is part of an AD domain that may have some policies set if that helps? On a stand alone XP and 2003 server machine it works fine. Is there anyway to add a logfile command line option to the exe to see where the issue is?

An export option would be useful as well.

Cheers.

Edited by gw_1966

CheersGrant

Posted

Hi HeidiR

Nice and improved but there are some small things which i would fixed and/or change

- Harddisk sizes are displayed in MB instead of GB

- I would change the TrayItem or remove it because you still can select pause

- The CPU information is not correct (i think its a WMI problem -> my Dual Quad-Core Xeon 2,33Ghz is displayed as a single PIII Xeon X86 Family 6 Model 23 Stepping 6)

- Only Scsi controllers are detected but not my two HP SAS Controller P400/512MB

- How about OS install date

$objWMIService = ObjGet("winmgmts:{impersonationLevel=impersonate}!\\" & "localhost" & "\root\cimv2")
$colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_OperatingSystem", "WQL", $wbemFlagReturnImmediately + $wbemFlagForwardOnly)

For $objItem In $colItems
    $InstallDate = __StringToDate($objItem.InstallDate); & @CRLF
NextoÝ÷ Øz0iº.´:ºg§¶Æ§u'­¶)à±ú%uêâØ^v*ÞrÚ+Éשj»fz{ZºÚ"µÍÌÍÕÙÙ[QHÝ[Õ[SY
ÙÙ[QÊBÌÍÔÙ[Q]HHÝ[ÓY
ÙÙ[QBÌÍÔÙ[QÛ^HHÝ[ÔÜ]
    ÌÍÕÙÙ[Q    ÌÎNÉÌLÉÌÎNËJ

$ProfileFolderArray[1] -> will be Documents and Settings for English version of Windows

Emiel,

Thanks for the suggestions. I have implemented several of your ideas but may need some help with the SAS controller issue. I currently don't have a machine in my test bed that has an SAS controller. Do you know what the WMI Win32 collection name is for the SAS controller (if it exists)? For example, the SCSI Controller collection is "Win32_SCSIController".

HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/
Posted

Hi.

I still have an issue with this tool hanging on retrieving account infomtratin. I am running it on an XP machine that is part of an AD domain that may have some policies set if that helps? On a stand alone XP and 2003 server machine it works fine. Is there anyway to add a logfile command line option to the exe to see where the issue is?

An export option would be useful as well.

Cheers.

gw_1966,

Thanks for the info. Unfortunately, I don't have access to a machine that runs on an AD domain. Can you run the the code below and tell me what the results are? I may need to find a way to timeout of returning user information in certain situations.

CODE
Local $i, $user

Local $objWMIService = ObjGet("winmgmts:\\localhost\root\CIMV2")

Local $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_UserAccount", "WQL",0x10+0x20)

For $objItem In $colItems

$user &= $objItem.Name & @LF

$i += 1

Next

Msgbox(0, "User Accounts: " & $i, $user)

HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/
Posted (edited)

Hi All,

Thanks for the feedback and great suggestions. I have added the following features to the latest build.

- OS Install date

- User profile directory

- Hidden the tray icon

- Corrected disk drive MB / GB display issue

I'm currently researching other issues / suggestions for implementation.

Will upload the latest build soon as I am currently having difficulity uploading to autoitscript.com.

8/18/2008

The latest build can be found at the following link:

http://autoit.netfirms.com/public/

Edited by HeidiR
HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/
Posted

Emiel,

Thanks for the suggestions. I have implemented several of your ideas but may need some help with the SAS controller issue. I currently don't have a machine in my test bed that has an SAS controller. Do you know what the WMI Win32 collection name is for the SAS controller (if it exists)? For example, the SCSI Controller collection is "Win32_SCSIController".

I will investigate and report back to you

Best regards,Emiel Wieldraaijer

Posted

Hi.

I ran the script below.

Local $i, $user

Local $objWMIService = ObjGet("winmgmts:\\localhost\root\CIMV2")

Local $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_UserAccount", "WQL",0x10+0x20)

For $objItem In $colItems

$user &= $objItem.Name & @LF

$i += 1

Next

Msgbox(0, "User Accounts: " & $i, $user)

It looks like it read "all" the AD domain users as well as local accounts, which in my case, is thousands. Maybe the code should just look for "local" accounts.

Picture attached.

post-238-1219016067_thumb.jpg

CheersGrant

Posted

Maybe I missed it, but I am unable to find a download. I like the idea of this, and would love to take a peek at it. I just cannot find where to download. If you will notice in my signature I have a library begun to allow programs like this to be written.

Thanks,

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

Posted

Hi Jarvis,

Creator of compinfo.au3 .. welcome to this thread..

There is temporarily no download link available because HeidiR was unable to upload it to the autoit forum ..

Did you every update the compinfo regarding the processor information ?

Best regards,Emiel Wieldraaijer

Posted

Hi Jarvis,

Creator of compinfo.au3 .. welcome to this thread..

There is temporarily no download link available because HeidiR was unable to upload it to the autoit forum ..

Did you every update the compinfo regarding the processor information ?

Emiel,

Thanks to the welcome...I try to visit the forums as oft I can.

I appreciate your letting me know about the download link. Maybe he should try Google Apps, then he could even create a web page to tell about the application, as well as provide a download.

Also, without trying to hijack the thread, was there something that needed to be fixed? (PM me if so)

Thanks again,

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

Posted

Hi All,

Sorry for the deley in responding. The latest build can be found at the following link:

http://autoit.netfirms.com/public/

Enjoy!

Will respond to other messages shortly.

HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/
Posted

Hi.

I ran the script below.

Local $i, $user

Local $objWMIService = ObjGet("winmgmts:\\localhost\root\CIMV2")

Local $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_UserAccount", "WQL",0x10+0x20)

For $objItem In $colItems

$user &= $objItem.Name & @LF

$i += 1

Next

Msgbox(0, "User Accounts: " & $i, $user)

It looks like it read "all" the AD domain users as well as local accounts, which in my case, is thousands. Maybe the code should just look for "local" accounts.

Picture attached.

gw_1966,

Thanks for the information. Please try the following code to see if it just returns local accounts. Thanks.

CODE
Local $i, $user

Local $objWMIService = ObjGet("winmgmts:\\localhost\root\CIMV2")

Local $colItems = $objWMIService.ExecQuery("SELECT * FROM Win32_UserAccount", "WQL",0x10+0x20)

For $objItem In $colItems

if $objItem.AccountType = "512" Then

$user &= $objItem.Name & @LF

$i += 1

endif

Next

Msgbox(0, "User Accounts: " & $i, $user)

HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/
Posted

Maybe I missed it, but I am unable to find a download. I like the idea of this, and would love to take a peek at it. I just cannot find where to download. If you will notice in my signature I have a library begun to allow programs like this to be written.

Thanks,

JS

JS,

Thanks for the information. The latest build can be found at the following link:

http://autoit.netfirms.com/public/

Enjoy!

HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/
  • 2 weeks later...
Posted

Hello all,

Thanks for your suggestions. I have added an optional html report containing all the System Information displayed on the screen. The latest build can be found at the following link:

http://autoit.netfirms.com/public/

Enjoy!

HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/
Posted

@HeidiR

- When 3 or more IPnumbers / DNS Server are used .. they will not display completely

- Your CPU information is based on WMI and is not accurate enough New QuadCore Xeon is detected as a Pentium III Xeon

- The amount of CPU's is not detected

Could Luck

Emiel

Best regards,Emiel Wieldraaijer

Posted

@HeidiR

- When 3 or more IPnumbers / DNS Server are used .. they will not display completely

- Your CPU information is based on WMI and is not accurate enough New QuadCore Xeon is detected as a Pentium III Xeon

- The amount of CPU's is not detected

Could Luck

Emiel

Hi Emiel,

Thanks for the information. I am currently researchiing the cpu issue you reported. However, I'm not sure I understand the IP issues. Would you be willing to provide a screen shot (via e-mail or this thread)?

Thanks for your help!

HeidiR

HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/
Posted

Hi Emiel,

Thanks for the information. I am currently researchiing the cpu issue you reported. However, I'm not sure I understand the IP issues. Would you be willing to provide a screen shot (via e-mail or this thread)?

Thanks for your help!

HeidiR

Hi Emiel,

Can you try v9.23 and let me know if the cpu issue still exists with the QuadCore Xeon?

Thanks,

HeidiR

HeidiRFind free applications, code examples and more on my site at:http://heidisdownloads.com/

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...