I do, which is what made me want something similar (or better) for the Ufasoft's CPU miner that I run.
Or for when I visit a friend's house and want to "use his computer to check my email".
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
Const HIDDEN_WINDOW = 12
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set objStartup = objWMIService.Get("Win32_ProcessStartup")
Set objConfig = objStartup.SpawnInstance_
objConfig.ShowWindow = HIDDEN_WINDOW
Set objProcess = GetObject("winmgmts:root\cimv2:Win32_Process")
errReturn = objProcess.Create("C:\Mine\ufasoft\bitcoin-miner.exe -t 2 -o http://mining.bitcoin.cz:8332 -u-p ", null, objConfig, intProcessID)
Set objApp = CreateObject("WScript.Shell")
objApp.Run "cmd /C C:\CPUMiner\bitcoin-miner.exe -o http://mining.bitcoin.cz:8332 -u theGECK.noway -p idontthinkso -g no"
Const HIDDEN_WINDOW = 12
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set objStartup = objWMIService.Get("Win32_ProcessStartup")
Set objConfig = objStartup.SpawnInstance_
objConfig.ShowWindow = HIDDEN_WINDOW
Set objProcess = GetObject("winmgmts:root\cimv2:Win32_Process")
errReturn = objProcess.Create("Notepad.exe", null, objConfig, intProcessID)
'Script to start bitcoin and poclbm.exe in the background.
'Will track time run in seconds in c:\bitcoin\logs\run.log
'run bitcoin server
Set objShell = Wscript.CreateObject("Wscript.Shell")
objShell.Run "cmd /C START /b C:\bitcoin\bitcoin-0.3.20.01\daemon\bitcoind.exe", SHOW_ACTIVE_APP, FALSE
' Delay 10 seconds
WScript.Sleep 10000
Dim starttime
starttime = Now()
Set objShell2 = Wscript.CreateObject("Wscript.Shell")
objShell.CurrentDirectory = "C:\bitcoin\poclbm_py2exe_20110222"
objShell2.Run "C:\bitcoin\poclbm_py2exe_20110222\poclbm.exe --user=username --pass=password --device=0 --verbose --rate=60 >> c:/bitcoin/logs/rate.log", SHOW_ACTIVE_APP, False
Dim endtime
endtime = Now()
Dim timedif
timediff = starttime - endtime
Dim logdata, myFSO, logfile, dateStamp
dateStamp = Date()
'Write information to Text File
Dim secs
logdata = DateDiff("s",starttime,endtime)
Set myFSO = CreateObject("Scripting.FileSystemObject")
Set logfile = myFSO.OpenTextFile("C:\bitcoin\logs\runtime.log", 8, True)
logfile.WriteLine(logdata)
logfile.Close
SET logfile = NOTHING
SET myFSO = NOTHING