
BoardBabe
MemberContent Type
Profiles
Forums
Events
Everything posted by BoardBabe
-
I know how to set the reg keys like RWIN, but I need help calculating RWIN please.
-
I've searched and read but there is soo much info, caan someone please break it down for me simply how to enable guest account so that LAN users can browse my files?
-
Took the liberty to update this script a bit to my likings. Feel free to use it... -Put the script below and blocklist.reg in same directory. For completly silent mode set $debug to 0. This script will of security reason compare a given line of the old and the downloaded file as a little extra security feature. Give it a test and see, it works nicely Script will check for new version (where online) and implement the most recent blocklist possible to registry. -When used in UA installations set debug to 0 (zero) and compile script to .exe. *.au3 ; Silentmode = 0. $debug = 1 ; Hide TrayIcon. If $debug = 1 Then AutoItSetOption("TrayIconHide", 0) Else AutoItSetOption("TrayIconHide", 1) EndIf ; Filechecker variables. $name = 'blocklist.reg' $site = 'http://www.spywareguide.com/' & $name $dir = @ScriptDir & '\' & $name $oldline = FileReadLine($dir,5) $tempfile = $dir & '.tmp' $linetocheck = 5 $sizeweb = InetGetSize($site) $sizehome = FileGetSize($dir) ; Initiate online update. Updater() Func Updater() If $sizeweb = 0 Then If $debug = 1 Then TrayTip("ActiveX spyware definitions", "The application could not access the internet.", 3, 3) Sleep(3000) EndIf Else If $sizeweb <> $sizehome Then InetGet($site,$dir & '.tmp',1,1) While @InetGetActive If $debug = 1 Then TrayTip("ActiveX spyware definitions", "Update available, downloading file " & $name & " (" & @InetGetBytesRead & " of " & $sizeweb & " bytes completed).", 1, 1) EndIf WEnd $newline = FileReadLine($tempfile, $linetocheck) If $newline = $oldline Then FileMove($tempfile,$dir,1) If $debug = 1 Then TrayTip("ActiveX spyware definitions", "Spyware definitions updated...", 3, 1) Sleep(3000) EndIf Else FileDelete($tempfile) If $debug = 1 Then TrayTip("ActiveX spyware definitions", "Authetification error at line " & $linetocheck & ". Update aborted.", 10, 2) Sleep(6000) EndIf EndIf Else If $debug = 1 Then TrayTip("ActiveX spyware definitions", "No new updates available...", 3, 1) Sleep(3000) EndIf EndIf EndIf EndFunc ; Timestamp blocklist file mm/dd/yy hh:mm. $t = FileGetTime($dir) $timestamp = $t[1] & "/" & $t[2] & "/" & $t[0] & " " & $t[3] & ":" & $t[4] If $debug = 1 Then TrayTip("ActiveX spyware definitions", "Installing blocklist from " & $timestamp & ".", 10, 1) Sleep(3000) EndIf ; Implement blocklist to registry. If $debug = 1 Then Run('regedit "' & $dir & '"') Else Run('regedit /s "' & $dir & '"') EndIf Exit Lazy? Download finished SFX ActiveXblocker.exe / ActiveXblocker-s.exe (silent switchless version for UA installations) -Included blocklist.reg downloaded 10. dec.
-
How to kill a running Programm
BoardBabe replied to mediapla's topic in Unattended Windows 2000/XP/2003
I would use xp's tskill.exe cause I don't have no killtask.exe -
bump
-
I need help from a network expert. I would like to know my optimum XP Pro SP2 settings for my ADSL2+ line. Calculating correct RWIN/GlobalMaxTcpWindowSize/TcpWindowSize, DefaultTTL etc. Line specs/test results: Testmachine @ 802.11g 108 mBit MIMO Connection type: ADSL2+ Cable length to DSLAM: 1350m (0,4mm) Syncrate/downstream (read from modem): 16300 Actual maximum donload speed: 1,74 mB/sec* Actual avg. download speed: 1,68 mB/sec* Max packet size before fragmentation: 1472** MTU: 1500 (1472+28) Latency: min: 23ms, max: 30ms, avg.: 25ms*** (TTL: 251) *Tested with DU meter and 2 running 700 mB downloads from ISP 100mbit ftp. **ping www.uio.no -f -l 1472 (.no & no other bw. load) ***ping www.uio.no -n 100 (.no & no other bw. load) Tweaks are to be implemented during UA installation. -Sorry, was'nt sure where to post this. -Thanks for any help.
-
I need help from a 1337 network expert. I would like to know my optimum XP Pro SP2 settings for my ADSL2+ line. Calculating correct RWIN/GlobalMaxTcpWindowSize/TcpWindowSize, DefaultTTL etc. Line specs/test results: Testmachine @ 802.11g 108 mBit MIMO Connection type: ADSL2+ Cable length to DSLAM: 1350m (0,4mm) Syncrate/downstream (read from modem): 16300 Actual maximum donload speed: 1,74 mB/sec* Actual avg. download speed: 1,68 mB/sec* Max packet size before fragmentation: 1472** MTU: 1500 (1472+28) Latency: min: 23ms, max: 30ms, avg.: 25ms*** (TTL: 251) *Tested with DU meter and 2 running 700 mB downloads from ISP 100mbit ftp. **ping www.uio.no -f -l 1472 (.no & no other bw. load) ***ping www.uio.no -n 100 (.no & no other bw. load) Tweaks are to be implemented during UA installation.
-
I had no luck changing font in default royale theme in that app. Finished result got bugged and bad. Any other solution or idea for changing font on "Start" text?
-
@gunsmokingman; I really like your theme. Care to share it?
-
Well don't forget that MU shows a couple of Office Updates even though they are installed
-
Problems removing qttask from RUN
BoardBabe replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
Ok, so here is how I solve it. The following .cmd file copies preferences files and removes qttask from run (and makes sure it does not come back). When the .cmd is run taskbar icon can no longer be activated. (I have placed this .cmd file along with QuickTime.qtp and com.apple.QuickTime.plist in a WinRAR SFX archive). @echo off copy /y QuickTime.qtp "%AllUsersProfile%\Programdata\Apple Computer\QuickTime" copy /y com.apple.QuickTime.plist "%AllUsersProfile%\Programdata\Apple Computer\QuickTime" reg add "HKLM\SOFTWARE\Apple Computer, Inc.\QuickTime\ActiveX" /v "QTTaskRunFlags" /t reg_dword /d "2" /f reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "QuickTime Task" /f reg delete "HKLM\SOFTWARE\Apple Computer, Inc.\QuickTime\ActiveX" /v "QTTask" /f ren "%ProgramFiles%\QuickTime\qttask.exe" qttask.exe.bak exit -
Problems removing qttask from RUN
BoardBabe replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
hmm I just noticed that there is no process called qttask.exe running in the backgournd even though it's under run (qttask.exe -atbottime). -
Problems removing qttask from RUN
BoardBabe replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
He? Also I use QT, so I'm guessing deleting qttask.exe might produce some errors? -
Problems removing qttask from RUN
BoardBabe replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
@Shark007: That's probably what happens at my end too -
Im trying to get rid of qttask from RUN with the following regfile, but it seems to re-appear. Any ide? Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Apple Computer, Inc.\QuickTime\ActiveX] "QTTaskRunFlags"=dword:00000002 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "QuickTime Task"=-
-
I might be wrong, but when I tried to /integrate it told me something about wrong match of filetypes/language or whatever the message was and aborted integration. So I just call it with /quiet /norestart now.
-
You did't search did ya?
-
/integrate does unfortunatly not work.
-
uhm yeh okey thnx.
-
Are you sure? That's what's told above? That ikernel.exe needs to be tskilled. I had the same error as Grake when I installed it...
-
Hm ok, switched out every reference to %WINDIR% with %SYSTEMROOT%. Does cAsE matter?
-
Why are there two of these pointing to %SystemDrive%\WINDOWS ? Any difference?
-
w00t are you trying to ask?
-
Is there a way to do something like if taskisrunning ikernel.exe Then tskill iKernel endIf in a batchfile? To check if its running, and if so end it.
-
Oh I see. Hmm well that's weird cause it has worked before And doing it like that will mess up my script.