Reply
Old May 7th, 2008 Top | #1
 
chaos945's Avatar
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122

Default SpeedFan Portable

For those of you who need a tool to test SMART and to monitor internal temperatures on your Windows boxes SpeedFan is the tool for you.

I have created a launcher so that SpeedFan can be used portably, on a jump drive for instance. On Vista you need to run it as Administrator to avoid conflicts, it depends on your UAC settings.

1.) Install SpeedFan
2.) Copy SpeedFan folder onto your portable device
3.) Extract the attachment contents to the SpeedFan folder
4.) Use SpeedFn.exe to launch speed fan without having to install it!

SpeedFan Official Site
Attached Files
File Type: zip SpeedFan Launcher.zip (264.7 KB, 3867 views)
chaos945 is offline   Reply With Quote
Old May 7th, 2008 Top | #2
 
binoyxj's Avatar
PrOuD InDiAn
Joined: May 2008
Location: KOCHI,KERALA,INDIA.
Posts: 475
Reputation: 307
Power: 54

Default Re: SpeedFan Portable

Another option is CPUID's PC Wizard
Attached Images
 
binoyxj is offline   Reply With Quote
Old May 7th, 2008 Top | #3
 
abhishek_a01's Avatar
OSNN Addict
Joined: May 2008
Posts: 89
Reputation: 20
Power: 47

Default Re: SpeedFan Portable

looks promising.
abhishek_a01 is offline   Reply With Quote
Old May 7th, 2008 Top | #4
 
chaos945's Avatar
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122

Default Re: SpeedFan Portable

Originally Posted by binoyxj View Post
Another option is CPUID's PC Wizard
That is an interesting option. Lots of good features. I like speedfan especially for it's detail in the SMART analysis. See attached screener.
Attached Thumbnails
SpeedFan Portable-speefan-report.jpg  
chaos945 is offline   Reply With Quote
Old May 10th, 2008 Top | #5
 
Bigstie's Avatar
OSNN Junior Addict
Joined: May 2008
Posts: 45
Reputation: 20
Power: 46

Smile Re: SpeedFan Portable

You could always turn to some widget to check your computer stats. Something like Sys Widget
Bigstie is offline   Reply With Quote
Old May 11th, 2008 Top | #6
 
binoyxj's Avatar
PrOuD InDiAn
Joined: May 2008
Location: KOCHI,KERALA,INDIA.
Posts: 475
Reputation: 307
Power: 54

Default Re: SpeedFan Portable

Originally Posted by Bigstie View Post
You could always turn to some widget to check your computer stats. Something like Sys Widget
But for this, one will have to install Yahoo! Widgets first..

Follow me - Compixels.com
binoyxj is offline   Reply With Quote
Old May 11th, 2008 Top | #7
 
Bigstie's Avatar
OSNN Junior Addict
Joined: May 2008
Posts: 45
Reputation: 20
Power: 46

Talking Re: SpeedFan Portable

Originally Posted by binoyxj View Post
But for this, one will have to install Yahoo! Widgets first..
Never said it would be easy
Bigstie is offline   Reply With Quote
Old May 11th, 2008 Top | #8
 
binoyxj's Avatar
PrOuD InDiAn
Joined: May 2008
Location: KOCHI,KERALA,INDIA.
Posts: 475
Reputation: 307
Power: 54

Default Re: SpeedFan Portable

Originally Posted by Bigstie View Post
Never said it would be easy
Get maximum with minimum resources thats my policy...

Follow me - Compixels.com
binoyxj is offline   Reply With Quote
Old February 14th, 2010 Top | #9
 
eltrkbrd's Avatar
OSNN One Post Wonder
Joined: February 2010
Posts: 1
Reputation: 0
Power: 0

Default Re: SpeedFan Portable

Anyway to get this to work with a more current version of Speedfan?

Anyone know how AutoIt was used to create this (I see an AU3 file)?

It seems it installs/starts the speedfan service and after closing stops/uninstalls it.

Speedfan Portable would be great to have. Any ideas?

~TIA
eltrkbrd is offline   Reply With Quote
Old April 2nd, 2010 Top | #10
 
chaos945's Avatar
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122

Default Re: SpeedFan Portable

I've kinda moved out of portable apps, instead just installing what I need as I go. But it wasn't hard to automate this with AutoIt. You have it right about how it works. I just utilized the /silent switches built into the original installer to install/uninstall. You could try Speccy-Portable too. I havn't tried it, but it has similar features.

I did create a new version of this but I can't seem to find it... If you want to create a new autoit program or a batch script these notes may be useful:
NSIS installers recognize /S for silent installation, /NCRC to suppress the CRC (verification) step, and /D=dir to specify the "output directory", which is where the program will be installed. These options are case-sensitive, so be sure to type them in upper case.
Incidentally, all /S does is change the installer script's SilentInstall attribute from "normal" to "silent". What effect this has, exactly, depends on the person who wrote the script. If /S does not perform a silent install, consider submitting a bug report to the installer's creator.
chaos945 is offline   Reply With Quote
Old April 2nd, 2010 Top | #11
 
chaos945's Avatar
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122

Default Re: SpeedFan Portable

Ok so I was interested to see how it could be done with a simple batch. Its not too bad.

Code:
@echo off
echo Installing Speedfan.exe from script root...
start /B /WAIT installspeedfan440.exe /S
cls
echo Waiting for Speedfan.exe to close...
start /WAIT /D "%PROGRAMFILES%\SpeedFan\" speedfan.exe
cls
echo Uninstalling Speedfan.exe...
start /D "%PROGRAMFILES%\SpeedFan\" Uninstall.exe
exit
Save as .bat or .cmd. Tested only on Win7. But it should work on anything post XP.

I was experimenting with the new "kill' commands in Win7, but couldn't get it to work. You could easily use this batch script as your template for an autoit solution too, which has more options for waiting and of course automation if thats what floats your boat.

I couldn't get the script to elevate it's privleges. I know you can somehow... Autoit handles elevation easier if you go that way. I also had problems getting cmd prompt to carry the /S switch to the uninstaller... CMD prompt has no problem with executables from the script root, but didn't like it when I specified a path then tried to apply arguments. Lame... Again AutoIt is FAR easier to implement for this purpose...
chaos945 is offline   Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules