|
|
![]() |
|
|
Top | #1 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
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 |
|
|
|
|
|
Top | #2 |
|
PrOuD InDiAn
Joined: May 2008
Location: KOCHI,KERALA,INDIA.
Posts: 475
Reputation: 307
Power: 54 |
|
|
|
|
|
|
Top | #3 |
|
OSNN Addict
Joined: May 2008
Posts: 89
Reputation: 20
Power: 47 |
looks promising.
|
|
|
|
|
|
Top | #4 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
That is an interesting option. Lots of good features. I like speedfan especially for it's detail in the SMART analysis. See attached screener.
|
|
|
|
|
|
Top | #5 |
|
OSNN Junior Addict
Joined: May 2008
Posts: 45
Reputation: 20
Power: 46 |
You could always turn to some widget to check your computer stats. Something like Sys Widget
|
|
|
|
|
|
Top | #6 |
|
PrOuD InDiAn
Joined: May 2008
Location: KOCHI,KERALA,INDIA.
Posts: 475
Reputation: 307
Power: 54 |
Originally Posted by Bigstie
But for this, one will have to install Yahoo! Widgets first..
|
|
|
|
|
|
Top | #7 |
|
OSNN Junior Addict
Joined: May 2008
Posts: 45
Reputation: 20
Power: 46 |
|
|
|
|
|
|
Top | #8 |
|
PrOuD InDiAn
Joined: May 2008
Location: KOCHI,KERALA,INDIA.
Posts: 475
Reputation: 307
Power: 54 |
Get maximum with minimum resources thats my policy...
|
|
|
|
|
|
Top | #9 |
|
OSNN One Post Wonder
Joined: February 2010
Posts: 1
Reputation: 0
Power: 0 |
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 |
|
|
|
|
|
Top | #10 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
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:
|
|
|
|
|
|
Top | #11 |
|
OSNN Senior Addict
Joined: February 2003
Posts: 932
Reputation: 300
Power: 122 |
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 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... |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
|
|