SMART drive Analysis
#61
Posted 20 March 2008 - 03:27 PM
Smart_Analysis.zip
I've also updated the online exe file
Smart Drive Analysis
Let me know the results.
#62
Posted 20 March 2008 - 03:35 PM
Thanks for the persistance on solving the problem.
I can't test it (no floppy drive around).
I hope someone else can give feedback.
regards,
ptrex
#63
Posted 20 March 2008 - 07:09 PM
That doesn't work. It is already passing just a fixed drive. The problem lies in the WMI and that's what I think I may have ironed out but I'm not sure.The floppy problem has been plaguing many people, isn't there a way to identify it easily like 'FIXED', 'REMOVABLE' and something like that?
#64
Posted 20 March 2008 - 07:15 PM
No real persistace involved here. If I feel like working on it I do, otherwise it just gets ignored. I have not actually been feeling up to doing much code at all for a while now. For feedback all people should have to do is run the exe file from the server (second link) and they will know whats happening and then hopefully post back here. I can see where most people won't worry about floppy issues because they are quickly becoming a thing of the past unless you want to run an external one. I just don't understand why it doen't behave the same on all systems that have floppies installed.@GEOSoft
Thanks for the persistance on solving the problem.
I can't test it (no floppy drive around).
I hope someone else can give feedback.
regards,
ptrex
#65
Posted 21 March 2008 - 10:23 PM
There are still much floppy drives available in computers..
and if you want to update the harddisk temperature .. you don't want the sound, the floppy makes when it's accessed ..
Maybe WMI is not the right way to check the harddisk temperature..
Edited by Emiel Wieldraaijer, 21 March 2008 - 10:24 PM.
#66
Posted 22 March 2008 - 02:02 AM
Lots of possibilities Emiel but I don't see where harddisk temperature would be much affected (if at all) by the fact that the floppy drives quickly checks to see if a disk is inserted and more particularily by the sound it makes.@GEOSoft
There are still much floppy drives available in computers..
and if you want to update the harddisk temperature .. you don't want the sound, the floppy makes when it's accessed ..
Maybe WMI is not the right way to check the harddisk temperature..
Have you tried the newest release?
Analyzer
Edited by GEOSoft, 22 March 2008 - 02:03 AM.
#68
Posted 25 March 2008 - 05:08 AM
Thanks Emiel.Off course still check the floppy drive
I'll take another look when I get a chance.
#69
Posted 25 August 2008 - 10:37 PM
Very neat script...I've never had a drive fail with a SMART error but the coding alone is very interesting to look through.
One question?
I tried running your app under Vista and it says my drive may not be SMART compatible even though I think it is. Do you have any idea what parts of your script may need to be modified to allow for Vista support?
If this is a stupid question, please ignore.
Thanks,
-Mike
#70
Posted 26 August 2008 - 03:27 PM
I've had drives report the same thing although it is rare. It seems that some drives can be read even when S.M.A.R.T is disabled in BIOS and some can't. As far as I know it does work in Vista but Vista issues belong to someone else. Also the credit for the reporting part of this script goes to ptrex. I just added the GUI and made a couple of mods to his code to solve a couple of problems.Hi George,
Very neat script...I've never had a drive fail with a SMART error but the coding alone is very interesting to look through.
One question?
I tried running your app under Vista and it says my drive may not be SMART compatible even though I think it is. Do you have any idea what parts of your script may need to be modified to allow for Vista support?
If this is a stupid question, please ignore.
Thanks,
-Mike
I have an executable version on one of my web sites that the user can run from the server and no one has reported any problems with it although I am sure that others have had the same report as you showed.
#71
Posted 26 August 2008 - 03:27 PM
I've had drives report the same thing although it is rare. It seems that some drives can be read even when S.M.A.R.T is disabled in BIOS and some can't. As far as I know it does work in Vista but Vista issues belong to someone else. Also the credit for the reporting part of this script goes to ptrex. I just added the GUI and made a couple of mods to his code to solve a couple of problems.Hi George,
Very neat script...I've never had a drive fail with a SMART error but the coding alone is very interesting to look through.
One question?
I tried running your app under Vista and it says my drive may not be SMART compatible even though I think it is. Do you have any idea what parts of your script may need to be modified to allow for Vista support?
If this is a stupid question, please ignore.
Thanks,
-Mike
I have an executable version on one of my web sites that the user can run from the server and no one has reported any problems with it although I am sure that others have had the same report as you showed.
#72
Posted 26 August 2008 - 03:43 PM
I've had drives report the same thing although it is rare. It seems that some drives can be read even when S.M.A.R.T is disabled in BIOS and some can't. As far as I know it does work in Vista but Vista issues belong to someone else. Also the credit for the reporting part of this script goes to ptrex. I just added the GUI and made a couple of mods to his code to solve a couple of problems.
I have an executable version on one of my web sites that the user can run from the server and no one has reported any problems with it although I am sure that others have had the same report as you showed.
Thank youy very much for the reply and the pointer to ptrex as the developer.
Since my post I have dug into the script a bit and am trying to understand how it works.
After re-reading the whole post I found that THIS version of the script works just fine on my vista box. So I'm trying to look at the differences, other than the GUI, between the two scripts (the one linked above and the one off your website) to see what I can modify.
Again, thank you for your reply!
-Mike
#73
Posted 26 August 2008 - 04:12 PM
Let me know if you find anything and I will revisit the script. Also I'm bad for not mentioning the large part that Chris played in the script.Thank youy very much for the reply and the pointer to ptrex as the developer.
Since my post I have dug into the script a bit and am trying to understand how it works.
After re-reading the whole post I found that THIS version of the script works just fine on my vista box. So I'm trying to look at the differences, other than the GUI, between the two scripts (the one linked above and the one off your website) to see what I can modify.
Again, thank you for your reply!
-Mike
#74
Posted 10 September 2008 - 10:14 PM
AH HA!!!!Let me know if you find anything and I will revisit the script. Also I'm bad for not mentioning the large part that Chris played in the script.
Ok, after poking at "your" script, I understand that others had a huge part in it. I found the following line (418).
If $objItem.MediaType <> "Fixed hard disk media" then Return -1
I bet you can already see the issue...for some reason Vista does not like the space between "Fixed and hard".
I removed the space:
If $objItem.MediaType <> "Fixed hard disk media" then Return -1
and what the heck do you know...the app now works in Vista as well.
Have a great day!
-Mike (The master space finder)
#75
Posted 11 September 2008 - 06:17 PM
Thanks Mike. I can fix that a different way and I'll try to get to it later today. And you are correct It was not my script. I just made a few changes and added the GUI.AH HA!!!!
Ok, after poking at "your" script, I understand that others had a huge part in it. I found the following line (418).
If $objItem.MediaType <> "Fixed hard disk media" then Return -1
I bet you can already see the issue...for some reason Vista does not like the space between "Fixed and hard".
I removed the space:
If $objItem.MediaType <> "Fixed hard disk media" then Return -1
and what the heck do you know...the app now works in Vista as well.
Have a great day!
-Mike (The master space finder)
#76
Posted 12 September 2008 - 09:23 AM
Hi Mike. On checking into this, that line does not even appear in my file so I don't know what file you are refering to. Regardless of that here is a better fix that will make it compatable with all versions
; If NOT StringRegExpr($objItem.MediaType, "(?i)Fixed\s+hard\s+disk\s+media") Then Return -1 ;
#77
Posted 12 September 2008 - 10:58 AM
It does appear in the source of the file in the post:Hi Mike. On checking into this, that line does not even appear in my file so I don't know what file you are refering to. Regardless of that here is a better fix that will make it compatable with all versions
; If NOT StringRegExpr($objItem.MediaType, "(?i)Fixed\s+hard\s+disk\s+media") Then Return -1 ;
http://www.autoitscript.com/forum/index.ph...st&p=494609
Replaced it with above mention SRE and it works fine for me.
Best Regards
OS: Windows 7 - 64bit - Ultimate, AutoIt Version: 3.3.8.1, AutoIt Editor: SciTE, Website: http://www.funk.eu, My unsolved Questions: Get default Window Size and Position, Rotate display by 270 degrees, Get Systray Icons, ...
AMT - Auto-Movie-Thumbnailer (2013-Mar-22)
COP - Color Picker (2009-May-21)
HMW - Hide my Windows (2012-Jan-02)
HRC - HotKey Resolution Changer (2012-May-16)
ICU - Icon Configuration Utility (2013-May-24)
SMF - Search my Files (2013-Apr-25) - THE file info and duplicates search tool
SSD - Set Sound Device (2011-Jan-15)
#78
Posted 12 September 2008 - 12:07 PM
I don't kno why my first text search failed because now I have located it at Line 464 on the latest version. I think I'll go through that file soon and do some more checking and probably replace some more with RegExps. In most cases those results used in the code would have been copied from the clipboard because that is quite often part of my test routine. ClipPut(ClipGet() & @CRLF &$objItem.MediaType)Hi GEOSoft,
It does appear in the source of the file in the post:
http://www.autoitscript.com/forum/index.ph...st&p=494609
Replaced it with above mention SRE and it works fine for me.
Best Regards
#79
Posted 12 September 2008 - 05:22 PM
Source and compiled version
No way of proving it but that fix may also have solved the floppy issue. It does solve a situation where some drives reported as possibly not SMART capable when I in fact knew they were.
#80
Posted 12 September 2008 - 06:35 PM
WARNING: $Col_w1: possibly used before declaration.oÝ÷ Ù©ÝjÛazÚ)¶«z+ºÚ"µÍ[ÈÐÛÛ
without content and EndFunc. Guess you deleted some code by accident
Best Regards
OS: Windows 7 - 64bit - Ultimate, AutoIt Version: 3.3.8.1, AutoIt Editor: SciTE, Website: http://www.funk.eu, My unsolved Questions: Get default Window Size and Position, Rotate display by 270 degrees, Get Systray Icons, ...
AMT - Auto-Movie-Thumbnailer (2013-Mar-22)
COP - Color Picker (2009-May-21)
HMW - Hide my Windows (2012-Jan-02)
HRC - HotKey Resolution Changer (2012-May-16)
ICU - Icon Configuration Utility (2013-May-24)
SMF - Search my Files (2013-Apr-25) - THE file info and duplicates search tool
SSD - Set Sound Device (2011-Jan-15)
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users





