1. Geeklog and server side scripts

    Date: 04/05/06 (Web Development)    Keywords: php, html, web

    Does anyone know anything about geeklog? I'm hoping someone can tell me how to modify a website that is written entirely in PHP, a server side script, and has geeklog installed. I've been struggling to make sense of this application but i'm clueless. I know HTML, and some PHP, but not enough to puzzle out geeklog.

    I read everything on it that I could get my hands on, but there are some gaps in my knowledge. Now I need some practical advice and guidance. I log into the server and check out the php files, and they all seem unfamiliar to me. Someone, help. What should I do?

    (Is it absolutely necessary to master php in order to make the changes I want? Is there a WYSIWYG program like Frontpage out there that encodes php?)

    Source: http://community.livejournal.com/webdev/312025.html

  2. Geeklog

    Date: 04/05/06 (PHP Community)    Keywords: php, html, web

    Does anyone know anything about geeklog? I'm hoping someone can tell me how to modify a website that is written entirely in PHP, and has geeklog installed. I've been struggling to make sense of this application but i'm clueless. I know HTML, and some PHP, but not enough to puzzle out geeklog.

    I read everything on it that I could get my hands on, but there are some gaps in my knowledge. Now I need some practical advice and guidance. I log into the main console and am unable to change anything on the site. The php code looks unfamiliar to me. Is it absolutely necessary to master php in order to make the changes I want? Or is there a WYSIWYG program like Frontpage out there that encodes php?

    Source: http://community.livejournal.com/php/433769.html

  3. Adding up Numbers With HTML

    Date: 04/07/06 (HTML Help)    Keywords: html, web

    Is there a way I can add a colum of numbers on a web site using an html equation, or will I have to do it manually?

    Thanks

    Source: http://community.livejournal.com/htmlhelp/2283463.html

  4. Sending HTML e-mail from Lotus Notes

    Date: 04/07/06 (WebDesign)    Keywords: software, html, spam

    This is a really specific question, so I know there's probably a slim chance, but I'm hoping someone here has had experience with trying to send html e-mail from Lotus Notes.

    The plan was to put together and html e-mail and save it as "Stationery" (Note's version of a Template) for our sales reps to use to personally send out to individual contacts (rather than blasting SPAM). I didn't look into sending HTML e-mail through Notes (the system our company is all on) until after I put together the design. Now, after researching for a quarter of my workday yesterday, I come up blank. From what I gather, it's not possible to send HTML e-mail through Notes until version 6 (we're on 5), and even then, it requires some major scripting (not my forte, and not ideal for sales reps either!).

    Can anyone confirm that it is just not possible, or should I keep researching? Is there third party software that we could use with Notes to do this? And would it break the bank to get it for multiple users (all of our sales reps)?

    If the HTML is a no go:
    Has anyone had any success using the Table and Import Image features to design e-mail with embedded images, and do e-mail clients outside of Notes handle these e-mails, or do they just break them up into a bunch of attachments?

    Source: http://community.livejournal.com/webdesign/1092960.html

  5. scrollbar - mozilla

    Date: 04/08/06 (WebDesign)    Keywords: css, html

    Okay - i'm hoping this is an appropriate place to ask this. how can i control the vertical scrollbar in mozilla - firefox? is it css, html..neither? i seriously cant find anything but im not sure if im even looking in the right places for it. i just want to get rid of the dang thing. im fairly knowledgable with coding - but this is just beyond me. if anyone could point me in the right place - id be really grateful.

    thank you very much.



    i dont want to get rid of it i guess - im sorry. id like to be able to change colors like in ie? im sorry if im not explaining it properly.

    Source: http://community.livejournal.com/webdesign/1094051.html

  6. xpath not working, subscription to mailing lists weirdness

    Date: 04/09/06 (PHP Community)    Keywords: php, html, xml, web, linux, spam, apache

    Hi there.

    I'm trying to load an XHTML file as a DOMDocument, and get its text using xpath to find the node. Something's going wrong somewhere, but I can't figure out what.<br /><br /><a name="cutid1"></a><br />I've used xpath a number of times before, from xslt (Xalan and MSXML2) and C++ (libxml2, Xerces and MSXML2), so I thought I had a good idea of what I was doing. The test case I've got this down to (from reading the PHP docs for <a href="/go.php?http://uk.php.net/manual/en/print/function.dom-domxpath-evaluate.php">DOMXPath->evaluate()</a> and <a href="/go.php?http://uk.php.net/manual/en/print/function.dom-domxpath-query.php">DOMXPath->query()</a> is pretty short.<br /><br />The first file is pretty simple - it's just the data file for the second one to load.<br /><br /><b>page1.php</b><br /><pre> <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <shtml xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Title

    Body



    The second is the one that does the work.

    page2.php
    
    
    
    
    Home page.
    
    
    query($path, $context);
    
            $obj = new ReflectionObject($list);
            print("

    Search from \"" . $context->nodeName . "\" for \"" . $path . "\" (" . $obj->getName() . ")

    \n"); print("
      \n"); for ($i = 0; $i < $list->length; ++$i) { print("
    • " . $list->item($i)->nodeName . "
    • \n"); } print("
    \n"); } $dom = new DOMDocument(); $dom->load("page1.php"); print("

    Document Element node name: " . $dom->documentElement->nodeName . "

    \n"); pathsearch($dom, $dom, "/html/head/title"); pathsearch($dom, $dom, "/"); pathsearch($dom, $dom->documentElement, "/"); pathsearch($dom, $dom, "/*"); pathsearch($dom, $dom, "/html"); pathsearch($dom, $dom, "//html"); pathsearch($dom, $dom->documentElement, "."); pathsearch($dom, $dom->documentElement, "./*"); pathsearch($dom, $dom->documentElement, "./head"); pathsearch($dom, $dom->documentElement, ".//head"); pathsearch($dom, $dom->documentElement, ".//head/*"); pathsearch($dom, $dom->documentElement, ".//head/title"); pathsearch($dom, $dom->documentElement, ".//head//title"); ?>


    I get an empty nodelist for the first pathsearch(), which is the one I'm looking for.

    The second and third calls to pathsearch() check that I can actually access the root node, and get a non-empty list, as expected.

    Call 4 ("/*") finds "html", but 5 and 6 ("/html" and "//html") find nothing. An empty result for "//html" is very odd, considering "/*" finds an "html" node.

    Calls 7-13 try finding other nodes starting from the documentElement() (/html) just in case it doesn't like calling without a context. Of these, only 7 and 8 ("." and "./*") succeed with non-empty results. However the results I get are exactly what I'd expect ("html" and {"head", "body"} respectively) which leaves me even more confused as to why all the others are failing.

    Any help here would be appreciated. Even just reproducing my results would be good, so I know it's not just my setup that's b0rked.

    (I'm running php 5.1.2 with libxml 2.6.23 on apache 2.0.55 on linux 2.6.15. More system info can be provided if necessary)


    I originally tried to subscribe to the php-general mailing list to ask this question there, but haven't been able to, and have had no reply from php-list-admin@lists.php.net or postmaster@lists.php.net.


    I've sent a couple of requests, both from the website and via email, to subscribe to php-general@lists.php.net. Each time I've got the "confirm subscribe to php-general@lists.php.net" reply and replied to it. Each time, I've replied using both of the methods they suggest, but have received nothing since. No "welcome to the list" message, no list messages, no bounces, nothing. I've checked by spam folder, and it's not getting filed there.

    So, I tried emailing php-list-admin@lists.php.net which is supposedly staffed by people. I did that on March 31 and again on April 4. Nothing. No replies, no bounces, nothing.

    So, on April 7 I tried emailing postmaster@lists.php.net. Again nothing.

    Does anyone know WTF is going on over there? Why the hell don't they answer their goddamn email? I've been polite, and I've asked just for some kind of reply to let me know that someone is at least reading my messages. Even a "We're not going to help you" would be more useful that goddamn silence.

    So, does anyone else know if they are just a bunch of useless fucktards, or what?

    Source: http://community.livejournal.com/php/436121.html

  7. PHP works in a .PHP file but not when it's in a .HTM file

    Date: 04/10/06 (PHP Community)    Keywords: php, html, apache

    This is driving me nuts! I know it's going to be something really simple, but I just can't work it out.

    Backstory: I've got a fresh install of Fedora FC5 on my server (the previous hard drive went pffzt) and I'm trying to get my WordPress blog running again.

    The problem is I can't seem to get PHP working properly. I've created a tiny HTM test file which doesn't show the PHP content, and yet it's working fine as a pure PHP file.

    I'm adamant the problem must be in the HTTP config but I just can't see what's wrong. How do I tell Apache to process PHP within an HTML file?


    (httpd.conf has virtually all the default settings - I've only added my site info but I've not changed/added/removed any LoadModule lines or anything else like that.)

    Source: http://community.livejournal.com/php/436344.html

  8. CSS w/ JS vs DHTML Menus

    Date: 04/10/06 (Web Development)    Keywords: browser, css, html, asp, web

    I'm developing 2 sites that have a horizontal navigation menu. Normally, I frown on horizontal menus because it doesn't allow for expansion of "areas", but the recent layouts tend to look better with a horizontal menu. I'm in a bit of a bind, because the only navigation drop down/slide out is a CSS driven layout with JS, but I can't get the hort. menu to work with it. It was suggested that I use a DHTML menu with layers, but I have never attempted that.

    Could you all give me some advice or suggestions? I like the look and feel of the JS menu, but I know that about 10% of the users disable JS in the browsers and sometimes the JS prevents the links to be cataloged for search engines. What is the positive/negative aspects of using DHTML for the menus? Does anyone have a good tutourial for it? I'm using Dreamweaver 8.

    This is one of the websites:
    Haunted Studies

    Cross Posted... A lot.

    Source: http://community.livejournal.com/webdev/312504.html

  9. CSS w/ JS vs DHTML Menus

    Date: 04/10/06 (WebDesign)    Keywords: browser, css, html, asp, web

    I'm developing 2 sites that have a horizontal navigation menu. Normally, I frown on horizontal menus because it doesn't allow for expansion of "areas", but the recent layouts tend to look better with a horizontal menu. I'm in a bit of a bind, because the only navigation drop down/slide out is a CSS driven layout with JS, but I can't get the hort. menu to work with it. It was suggested that I use a DHTML menu with layers, but I have never attempted that.

    Could you all give me some advice or suggestions? I like the look and feel of the JS menu, but I know that about 10% of the users disable JS in the browsers and sometimes the JS prevents the links to be cataloged for search engines. What is the positive/negative aspects of using DHTML for the menus? Does anyone have a good tutourial for it? I'm using Dreamweaver 8.

    This is one of the websites:
    Haunted Studies

    Cross Posted... A lot.

    Source: http://community.livejournal.com/webdesign/1095287.html

  10. asp.net 2.0

    Date: 04/12/06 (C Sharp)    Keywords: css, html, asp

    I am upgrading some 1.1 code to asp.net 2.0. The old code used stylesheets. The controls on my page that use css classes are fine after the upgrade, but the controls that i have hard coded the properties for are not. Its as though they are being overridden by a style sheet or some other unknown force. I have no css class specified for these controls, just set the properties on the html page, and I can't get it to show what I want.
    Does anyone know why these hard coded properties are not showing up? What is overriding the settings?
    Thanks for any tips.

    Source: http://community.livejournal.com/csharp/57422.html

  11. asp.net 2.0

    Date: 04/12/06 (Asp Dot Net)    Keywords: css, html, asp

    I am upgrading some 1.1 code to asp.net 2.0. The old code used stylesheets. The controls on my page that use css classes are fine after the upgrade, but the controls that i have hard coded the properties for are not. Its as though they are being overridden by a style sheet or some other unknown force. I have no css class specified for these controls, just set the properties on the html page, and I can't get it to show what I want.
    Does anyone know why these hard coded properties are not showing up? What is overriding the settings?
    Thanks for any tips.

    Source: http://community.livejournal.com/aspdotnet/61852.html

  12. Вышел №56 рассылки .Net Собеседник

    Date: 04/14/06 (C Sharp)    Keywords: html

    http://subscribe.ru/archive/comp.soft.prog.dotnetgrains/200604/14091954.html

    Source: http://community.livejournal.com/csharp/58070.html

  13. Вышел №56 Рассылки .Net Собеседник

    Date: 04/14/06 (Asp Dot Net)    Keywords: html

    http://subscribe.ru/archive/comp.soft.prog.dotnetgrains/200604/14091954.html

    Source: http://community.livejournal.com/aspdotnet/62133.html

  14. help! Some pages break in IE

    Date: 04/14/06 (WebDesign)    Keywords: browser, css, html

    I'm giving up. I can't find any difference in the code between certain pages and yet they display differently.

    I'm working on www.ezdrycarpet.com. In Safari, Firefox, etc, (the good browsers) the blue background of the links bar on the left always goes all the way down. In IE, it does on some pages and won't on others.

    For example:

    http://www.ezdrycarpet.com/allergen.html - blue bar ends after the text.
    http://www.ezdrycarpet.com/upholstery.html - the blue goes all the way down like it's supposed to.

    I can't figure out what's breaking that bar on allergen.html. It's not badly nested DIVs (the page validates), it's not CSS because it works on other pages, It's not content length ... any help would be much appreciated.

    Source: http://community.livejournal.com/webdesign/1097190.html

  15. i need a way to log in and out of my single user automatically.

    Date: 04/15/06 (Microsoft Windows)    Keywords: html

    I'll explain it all here

    http://community.livejournal.com/computerhelp/871470.html

    Source: http://community.livejournal.com/ms_windows/63357.html

  16. PDFs

    Date: 04/16/06 (PHP Community)    Keywords: php, html

    I have a client that wants to my team to create a dynamic index of PDFs. I have never worked with PDFs and PHP before. One task is converting the PDFs to HTMl...

    If you guys can share any tips with working with PDFs I appreciate it.

    Source: http://community.livejournal.com/php/438918.html

  17. Broken function

    Date: 04/19/06 (PHP Community)    Keywords: html

    The following code is meant to take in a date of birth, and return the html needed for showing it selected in a form (for a profile edit page).

    As by the fact that I have posted it here, it isn't working. The syntax is correct but there must be a logic bug in it somewhere. Does anyone have a clue as to whats wrong with it?

    Thanks very much.

    Source: http://community.livejournal.com/php/441406.html

  18. parent.frame is null or not an object

    Date: 04/20/06 (Javascript Community)    Keywords: html, java

    Reference: http://flowersofdoom.net/a_index.html

    Okay this seems like it should be very straightforward. I need to call a function on a_1.html from a_2.html. I'm using IE 6.0, and have also (unsuccesfully) tried Firefox 1.5 too.

    When I load a_index.html I receive a javascript error saying, "parent.f2 is null or not an object". Any suggestions?

    Thank you.

    a_index.html


    a_1.html



    a_2.html

    Source: http://community.livejournal.com/javascript/98711.html

  19. Trojan masquerading as windows update

    Date: 04/20/06 (Computer Geeks)    Keywords: software, browser, css, html, technology, database, asp, java, security, virus, web, spyware, microsoft

    *Running xp sp2

    Everyday for the past two weeks I notice the update icon pop up on my task bar always set at 6%. It pops up multiple times during the day. I scanned with panda, mc afee, avast, and it shows nothing but i'm pretty certain it's a trojan. On Sygate firewall I notice lots of activity...packets sent and ports scanned, etc during that time also.

    Also important to note: I turned off automatic updates and it still pops up.

    Any help on isolating the trojan or advice would be appreciated.

    -j

    Edit: autorun list:

    HKLM\System\CurrentControlSet\Control\Terminal Server\Wds\rdpwd\StartupPrograms

    + rdpclip RDP Clip Monitor Microsoft Corporation c:\windows\system32\rdpclip.exe

    HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Userinit

    + C:\WINDOWS\system32\userinit.exe Userinit Logon Application Microsoft Corporation c:\windows\system32\userinit.exe

    HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell

    + Explorer.exe Windows Explorer Microsoft Corporation c:\windows\explorer.exe

    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

    + AVG7_CC AVG Control Center GRISOFT, s.r.o. c:\program files\grisoft\avg free\avgcc.exe

    + HostManager AOL America Online, Inc. c:\program files\common files\aol\1144018896\ee\aolsoftware.exe

    + MCAgentExe McAfee SecurityCenter Agent McAfee, Inc c:\program files\mcafee.com\agent\mcagent.exe

    + MCUpdateExe McAfee SecurityCenter Update Engine McAfee, Inc c:\program files\mcafee.com\agent\mcupdate.exe

    + Mercora Mercora IM Radio Client 4.5 Mercora Inc. c:\program files\mercora\mercoraclient.exe

    + MessengerPlus3 Messenger Plus! Patchou c:\program files\messengerplus! 3\msgplus.exe

    + OASClnt McAfee VirusScan OAS Client McAfee, Inc. c:\program files\mcafee.com\vso\oasclnt.exe

    + VolumeTray c:\program files\volumetray\volumetray.exe

    + VSOCheckTask McAfee VirusScan Command Handler McAfee, Inc. c:\program files\mcafee.com\vso\mcmnhdlr.exe

    C:\Documents and Settings\All Users\Start Menu\Programs\Startup

    + Trend Micro Anti-Spyware.lnk Anti-Spyware Main Module Trend Micro Incorporated c:\program files\trend micro\tmas\tmas.exe

    HKCU\Software\Microsoft\Windows\CurrentVersion\Run

    + ctfmon.exe CTF Loader Microsoft Corporation c:\windows\system32\ctfmon.exe

    HKLM\SOFTWARE\Classes\Protocols\Filter

    + Class Install Handler OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + deflate OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + gzip OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + lzdhtml OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + text/webviewhtml Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    HKLM\SOFTWARE\Classes\Protocols\Handler

    + about Microsoft (R) HTML Viewer Microsoft Corporation c:\windows\system32\mshtml.dll

    + cdl OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + dvd ActiveX control for streaming video Microsoft Corporation c:\windows\system32\msvidctl.dll

    + file OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + ftp OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + gopher OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + http OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + https OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + its Microsoft® InfoTech Storage System Library Microsoft Corporation c:\windows\system32\itss.dll

    + javascript Microsoft (R) HTML Viewer Microsoft Corporation c:\windows\system32\mshtml.dll

    + lid ActiveX control for streaming video Microsoft Corporation c:\windows\system32\msvidctl.dll

    + local OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + mailto Microsoft (R) HTML Viewer Microsoft Corporation c:\windows\system32\mshtml.dll

    + mhtml Microsoft Internet Messaging API Microsoft Corporation c:\windows\system32\inetcomm.dll

    + mk OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + ms-its Microsoft® InfoTech Storage System Library Microsoft Corporation c:\windows\system32\itss.dll

    + msnim MSN Messenger Protocol Handler Microsoft Corporation c:\program files\msn messenger\msgrapp.dll

    + res Microsoft (R) HTML Viewer Microsoft Corporation c:\windows\system32\mshtml.dll

    + sysimage Microsoft (R) HTML Viewer Microsoft Corporation c:\windows\system32\mshtml.dll

    + tv ActiveX control for streaming video Microsoft Corporation c:\windows\system32\msvidctl.dll

    + vbscript Microsoft (R) HTML Viewer Microsoft Corporation c:\windows\system32\mshtml.dll

    + wia WIA Scripting Layer Microsoft Corporation c:\windows\system32\wiascr.dll

    HKLM\SOFTWARE\Microsoft\Active Setup\Installed Components

    + Address Book 5 Outlook Express Setup Library Microsoft Corporation c:\program files\outlook express\setup50.exe

    + Browser Customizations Microsoft Internet Explorer Customization DLL Microsoft Corporation c:\windows\system32\iedkcs32.dll

    + CRLUpdate UPDCRL Microsoft Corporation c:\windows\system32\updcrl.exe

    + Internet Explorer Windows NT User Data Migration Tool Microsoft Corporation c:\windows\system32\shmgrate.exe

    + Internet Explorer Windows Setup API Microsoft Corporation c:\windows\system32\setupapi.dll

    + Internet Explorer 6 IE 5.0 Per-User Install Utility Microsoft Corporation c:\windows\system32\ie4uinit.exe

    + Microsoft Outlook Express 6 Outlook Express Setup Library Microsoft Corporation c:\program files\outlook express\setup50.exe

    + Microsoft Windows Media Player ADVPACK Microsoft Corporation c:\windows\system32\advpack.dll

    + NetMeeting 3.01 ADVPACK Microsoft Corporation c:\windows\system32\advpack.dll

    + Outlook Express Windows NT User Data Migration Tool Microsoft Corporation c:\windows\system32\shmgrate.exe

    + Themes Setup Microsoft(C) Register Server Microsoft Corporation c:\windows\system32\regsvr32.exe

    + Windows Desktop Update Microsoft(C) Register Server Microsoft Corporation c:\windows\system32\regsvr32.exe

    + Windows Media Player Microsoft Windows Media Player Setup Utility Microsoft Corporation c:\windows\inf\unregmp2.exe

    + Windows Messenger 4.7 ADVPACK Microsoft Corporation c:\windows\system32\advpack.dll

    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\SharedTaskScheduler

    + Browseui preloader Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Component Categories cache daemon Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\ShellServiceObjectDelayLoad

    + 0aMCPClient File not found: CLSID\{F5DF91F9-15E9-416B-A7C3-7519B11ECBFC}\InprocServer32

    + CDBurn Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    + PostBootReminder Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    + SysTray Systray shell service object Microsoft Corporation c:\windows\system32\stobject.dll

    + WebCheck Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\ShellExecuteHooks

    + shell32.dll Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    + Trend Micro Anti-Spyware Shell Extension Anti-Spyware Shell Extension Trend Micro Incorporated c:\program files\trend micro\tmas\sshook.dll

    HKLM\Software\Microsoft\Windows\CurrentVersion\Shell Extensions\Approved

    + %DESC_PublishDropTarget% Photo Printing Wizard Microsoft Corporation c:\windows\system32\photowiz.dll

    + &Address Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + .CAB file viewer Cabinet File Viewer Shell Extension Microsoft Corporation c:\windows\system32\cabview.dll

    + Accessible Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + ActiveX Cache Folder Object Control Viewer Microsoft Corporation c:\windows\system32\occache.dll

    + Address Bar Parser Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Address EditBox Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Administrative Tools Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Augmented Shell Folder Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Augmented Shell Folder 2 Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Auto Update Property Sheet Extension Automatic Updates Control Panel Microsoft Corporation c:\windows\system32\wuaucpl.cpl

    + AVG7 Find Extension AVG Shell Extension GRISOFT, s.r.o. c:\program files\grisoft\avg free\avgse.dll

    + AVG7 Shell Extension AVG Shell Extension GRISOFT, s.r.o. c:\program files\grisoft\avg free\avgse.dll

    + BandProxy Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Briefcase Windows Briefcase Microsoft Corporation c:\windows\system32\syncui.dll

    + CDF Extension Copy Hook Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Channel File Channel Definition File Viewer Microsoft Corporation c:\windows\system32\cdfview.dll

    + Channel Handler Object Channel Definition File Viewer Microsoft Corporation c:\windows\system32\cdfview.dll

    + Channel Menu Channel Definition File Viewer Microsoft Corporation c:\windows\system32\cdfview.dll

    + Channel Properties Channel Definition File Viewer Microsoft Corporation c:\windows\system32\cdfview.dll

    + Channel Shortcut Channel Definition File Viewer Microsoft Corporation c:\windows\system32\cdfview.dll

    + Code Download Agent Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + Compatibility Page Compatibility Tab Shell Extension DLL Microsoft Corporation c:\windows\system32\slayerxp.dll

    + Compressed (zipped) Folder Compressed (zipped) Folders Microsoft Corporation c:\windows\system32\zipfldr.dll

    + Compressed (zipped) Folder Right Drag Handler Compressed (zipped) Folders Microsoft Corporation c:\windows\system32\zipfldr.dll

    + Compressed (zipped) Folder SendTo Target Compressed (zipped) Folders Microsoft Corporation c:\windows\system32\zipfldr.dll

    + ConnectionAgent Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + Crypto PKO Extension Crypto Shell Extensions Microsoft Corporation c:\windows\system32\cryptext.dll

    + Crypto Sign Extension Crypto Shell Extensions Microsoft Corporation c:\windows\system32\cryptext.dll

    + Custom MRU AutoCompleted List Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Darwin App Publisher Shell Application Manager Microsoft Corporation c:\windows\system32\appwiz.cpl

    + DfsShell Distributed File System shell extension Microsoft Corporation c:\windows\system32\dfsshlex.dll

    + Directory Context Menu Verbs Directory Service Common UI Microsoft Corporation c:\windows\system32\dsuiext.dll

    + Directory Object Find Directory Service Find Microsoft Corporation c:\windows\system32\dsquery.dll

    + Directory Property UI Directory Service Common UI Microsoft Corporation c:\windows\system32\dsuiext.dll

    + Directory Query UI Directory Service Find Microsoft Corporation c:\windows\system32\dsquery.dll

    + Directory Start/Search Find Directory Service Find Microsoft Corporation c:\windows\system32\dsquery.dll

    + Disk Copy Extension Windows DiskCopy Microsoft Corporation c:\windows\system32\diskcopy.dll

    + Disk Quota UI Windows Shell Disk Quota UI DLL Microsoft Corporation c:\windows\system32\dskquoui.dll

    + Display Adapter CPL Extension Advanced display adapter properties Microsoft Corporation c:\windows\system32\deskadp.dll

    + Display Monitor CPL Extension Advanced display monitor properties Microsoft Corporation c:\windows\system32\deskmon.dll

    + Display TroubleShoot CPL Extension Advanced display performance properties Microsoft Corporation c:\windows\system32\deskperf.dll

    + Download Status Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + DS Security Page Directory Service Security UI Microsoft Corporation c:\windows\system32\dssec.dll

    + E-mail Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Explorer Band Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Extensions Manager Folder Extensions Manager Microsoft Corporation c:\windows\system32\extmgr.dll

    + Favorites Band Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Fonts Windows Font Folder Microsoft Corporation c:\windows\system32\fontext.dll

    + Fonts Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + For &People... Find People Microsoft Corporation c:\program files\outlook express\wabfind.dll

    + FTP Folders Webview Microsoft Internet Explorer FTP Folder Shell Extension Microsoft Corporation c:\windows\system32\msieftp.dll

    + GDI+ file thumbnail extractor Windows Picture and Fax Viewer Microsoft Corporation c:\windows\system32\shimgvw.dll

    + Get a Passport Wizard Map Network Drives/Network Places Wizard Microsoft Corporation c:\windows\system32\netplwiz.dll

    + Global Folder Settings Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Help and Support Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Help and Support Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + History Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + HTML Thumbnail Extractor Windows Picture and Fax Viewer Microsoft Corporation c:\windows\system32\shimgvw.dll

    + HyperTerminal Icon Ext File not found: C:\WINDOWS\System32\hticons.dll

    + ICC Profile Microsoft Color Matching System User Interface DLL Microsoft Corporation c:\windows\system32\icmui.dll

    + ICM Monitor Management Microsoft Color Matching System User Interface DLL Microsoft Corporation c:\windows\system32\icmui.dll

    + ICM Printer Management Microsoft Color Matching System User Interface DLL Microsoft Corporation c:\windows\system32\icmui.dll

    + ICM Scanner Management Microsoft Color Matching System User Interface DLL Microsoft Corporation c:\windows\system32\icmui.dll

    + IE4 Suite Splash Screen Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + In-pane search Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Installed Apps Enumerator Shell Application Manager Microsoft Corporation c:\windows\system32\appwiz.cpl

    + Internet Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Internet Name Space Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + InternetShortcut Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + ISFBand OC Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Logitech Gallery Logitech Gallery Logitech Inc. c:\program files\logitech\imagestudio\namespc.dll

    + Microsoft Agent Character Property Sheet Handler Microsoft Agent Property Sheet Handler Microsoft Corporation c:\windows\msagent\agentpsh.dll

    + Microsoft AutoComplete Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Microsoft Browser Architecture Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Microsoft BrowserBand Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Microsoft Data Link Microsoft Data Access - OLE DB Core Services Microsoft Corporation c:\program files\common files\system\ole db\oledb32.dll

    + Microsoft DocProp Inplace Calendar Control Microsoft DocProp Shell Ext Microsoft Corporation c:\windows\system32\docprop2.dll

    + Microsoft DocProp Inplace Droplist Combo Control Microsoft DocProp Shell Ext Microsoft Corporation c:\windows\system32\docprop2.dll

    + Microsoft DocProp Inplace Edit Box Control Microsoft DocProp Shell Ext Microsoft Corporation c:\windows\system32\docprop2.dll

    + Microsoft DocProp Inplace ML Edit Box Control Microsoft DocProp Shell Ext Microsoft Corporation c:\windows\system32\docprop2.dll

    + Microsoft DocProp Inplace Time Control Microsoft DocProp Shell Ext Microsoft Corporation c:\windows\system32\docprop2.dll

    + Microsoft DocProp Shell Ext Microsoft DocProp Shell Ext Microsoft Corporation c:\windows\system32\docprop2.dll

    + Microsoft History AutoComplete List Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Microsoft Internet Toolbar Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Microsoft Multiple AutoComplete List Container Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Microsoft Shell Folder AutoComplete List Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Microsoft Url History Service Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Microsoft Url Search Hook Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + MMC Icon Handler MMC Shell Extension DLL Microsoft Corporation c:\windows\system32\mmcshext.dll

    + MRU AutoComplete List Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Multimedia File Property Sheet Control Panel Drivers Applet Microsoft Corporation c:\windows\system32\mmsys.cpl

    + MyDocs Copy Hook My Documents Folder UI Microsoft Corporation c:\windows\system32\mydocs.dll

    + MyDocs Drop Target My Documents Folder UI Microsoft Corporation c:\windows\system32\mydocs.dll

    + MyDocs Properties My Documents Folder UI Microsoft Corporation c:\windows\system32\mydocs.dll

    + Network Connections Network Connections Shell Microsoft Corporation c:\windows\system32\netshell.dll

    + Network Connections Network Connections Shell Microsoft Corporation c:\windows\system32\netshell.dll

    + NTFS Security Page Security Shell Extension Microsoft Corporation c:\windows\system32\rshx32.dll

    + Offline Files Folder Client Side Caching UI Microsoft Corporation c:\windows\system32\cscui.dll

    + Offline Files Folder Options Client Side Caching UI Microsoft Corporation c:\windows\system32\cscui.dll

    + Offline Files Menu Client Side Caching UI Microsoft Corporation c:\windows\system32\cscui.dll

    + OLE Docfile Property Page OLE DocFile Property Page Microsoft Corporation c:\windows\system32\docprop.dll

    + PlusPack CPL Extension Windows Theme API Microsoft Corporation c:\windows\system32\themeui.dll

    + Portable Media Devices Portable Media Devices Shell Extension Microsoft Corporation c:\windows\system32\audiodev.dll

    + Portable Media Devices Menu Portable Media Devices Shell Extension Microsoft Corporation c:\windows\system32\audiodev.dll

    + PostAgent Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + Previous Versions Previous Versions property page Microsoft Corporation c:\windows\system32\twext.dll

    + Previous Versions Property Page Previous Versions property page Microsoft Corporation c:\windows\system32\twext.dll

    + Print Ordering via the Web Map Network Drives/Network Places Wizard Microsoft Corporation c:\windows\system32\netplwiz.dll

    + Printers Security Page Security Shell Extension Microsoft Corporation c:\windows\system32\rshx32.dll

    + Registry Tree Options Utility Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Remote Sessions CPL Extension Remote Sessions CPL Extension Microsoft Corporation c:\windows\system32\remotepg.dll

    + Run... Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Scanners & Cameras Imaging Devices Shell Folder UI Microsoft Corporation c:\windows\system32\wiashext.dll

    + Scanners & Cameras Imaging Devices Shell Folder UI Microsoft Corporation c:\windows\system32\wiashext.dll

    + Scanners & Cameras Imaging Devices Shell Folder UI Microsoft Corporation c:\windows\system32\wiashext.dll

    + Scanners & Cameras Imaging Devices Shell Folder UI Microsoft Corporation c:\windows\system32\wiashext.dll

    + Scanners & Cameras Imaging Devices Shell Folder UI Microsoft Corporation c:\windows\system32\wiashext.dll

    + Scheduled Tasks Task Scheduler interface DLL Microsoft Corporation c:\windows\system32\mstask.dll

    + Search Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Search Assistant OC Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Search Band Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Sendmail service Send Mail Microsoft Corporation c:\windows\system32\sendmail.dll

    + Sendmail service Send Mail Microsoft Corporation c:\windows\system32\sendmail.dll

    + Set Program Access and Defaults Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Shell Application Manager Shell Application Manager Microsoft Corporation c:\windows\system32\appwiz.cpl

    + Shell Automation Inproc Service Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Shell Band Site Menu Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Shell DeskBar Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Shell DeskBarApp Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Shell DocObject Viewer Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Shell extensions for Microsoft Windows Network objects Network object shell UI Microsoft Corporation c:\windows\system32\ntlanui2.dll

    + Shell extensions for sharing Shell extensions for sharing Microsoft Corporation c:\windows\system32\ntshrui.dll

    + Shell extensions for sharing Shell extensions for sharing Microsoft Corporation c:\windows\system32\ntshrui.dll

    + Shell extensions for Windows Script Host Microsoft (r) Shell Extension for Windows Script Host Microsoft Corporation c:\windows\system32\wshext.dll

    + Shell Image Data Factory Windows Picture and Fax Viewer Microsoft Corporation c:\windows\system32\shimgvw.dll

    + Shell Image Property Handler Windows Picture and Fax Viewer Microsoft Corporation c:\windows\system32\shimgvw.dll

    + Shell Image Verbs Windows Picture and Fax Viewer Microsoft Corporation c:\windows\system32\shimgvw.dll

    + Shell properties for a DS object Directory Service Find Microsoft Corporation c:\windows\system32\dsquery.dll

    + Shell Publishing Wizard Object Map Network Drives/Network Places Wizard Microsoft Corporation c:\windows\system32\netplwiz.dll

    + Shell Rebar BandSite Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Shell Scrap DataHandler Shell scrap object handler Microsoft Corporation c:\windows\system32\shscrap.dll

    + Shell Search Band Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Subscription Folder Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + Subscription Mgr Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + Summary Info Thumbnail handler (DOCFILES) Windows Picture and Fax Viewer Microsoft Corporation c:\windows\system32\shimgvw.dll

    + Taskbar and Start Menu Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    + Tasks Folder Icon Handler Task Scheduler interface DLL Microsoft Corporation c:\windows\system32\mstask.dll

    + Tasks Folder Shell Extension Task Scheduler interface DLL Microsoft Corporation c:\windows\system32\mstask.dll

    + Temporary Internet Files Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Temporary Internet Files Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + The Internet Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    + Track Popup Bar Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + TrayAgent Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + Trend Micro Anti-Spyware Shell Extension Anti-Spyware Shell Extension Trend Micro Incorporated c:\program files\trend micro\tmas\sshook.dll

    + TridentImageExtractor Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + User Accounts Map Network Drives/Network Places Wizard Microsoft Corporation c:\windows\system32\netplwiz.dll

    + User Assist Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + Web Folders Microsoft Web Folders Microsoft Corporation c:\program files\common files\microsoft shared\web folders\msonsext.dll

    + Web Printer Shell Extension Print UI DLL Microsoft Corporation c:\windows\system32\printui.dll

    + Web Publishing Wizard Map Network Drives/Network Places Wizard Microsoft Corporation c:\windows\system32\netplwiz.dll

    + Web Search Shell Browser UI Library Microsoft Corporation c:\windows\system32\browseui.dll

    + WebCheck Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + WebCheck SyncMgr Handler Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + WebCheckChannelAgent Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + WebCheckWebCrawler Web Site Monitor Microsoft Corporation c:\windows\system32\webcheck.dll

    + Webroot Spy Sweeper Context Menu Integration File not found: C:\PROGRA~1\Webroot\SPYSWE~1\SSCtxMnu.dll

    + Windows Media Player Add to Playlist Context Menu Handler Windows Media Player Launcher Microsoft Corporation c:\windows\system32\wmpshell.dll

    + Windows Media Player Burn Audio CD Context Menu Handler Windows Media Player Launcher Microsoft Corporation c:\windows\system32\wmpshell.dll

    + Windows Media Player Play as Playlist Context Menu Handler Windows Media Player Launcher Microsoft Corporation c:\windows\system32\wmpshell.dll

    + WinRAR shell extension c:\program files\winrar\rarext.dll

    + WinZip WinZip Shell Extension DLL WinZip Computing, Inc. c:\program files\winzip\wzshlstb.dll

    + WinZip WinZip Shell Extension DLL WinZip Computing, Inc. c:\program files\winzip\wzshlstb.dll

    + WinZip WinZip Shell Extension DLL WinZip Computing, Inc. c:\program files\winzip\wzshlstb.dll

    + WinZip WinZip Shell Extension DLL WinZip Computing, Inc. c:\program files\winzip\wzshlstb.dll

    HKLM\Software\Classes\Folder\Shellex\ColumnHandlers

    + {0D2E74C4-3C34-11d2-A27E-00C04FC30871} Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    + {24F14F01-7B1C-11d1-838f-0000F80461CF} Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    + {24F14F02-7B1C-11d1-838f-0000F80461CF} Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    + {66742402-F9B9-11D1-A202-0000F81FEDEE} Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    HKCU\Software\Microsoft\Internet Explorer\UrlSearchHooks

    + shdocvw.dll Shell Doc Object and Control Library Microsoft Corporation c:\windows\system32\shdocvw.dll

    HKLM\Software\Microsoft\Internet Explorer\Toolbar

    + McAfee VirusScan McAfee VirusScan Shell Extension Module McAfee, Inc. c:\program files\mcafee.com\vso\mcvsshl.dll

    HKLM\Software\Microsoft\Internet Explorer\Extensions

    + Windows Messenger Windows Messenger Microsoft Corporation c:\program files\messenger\msmsgs.exe

    Task Scheduler

    + 1-Click Maintenance.job File not found: C:\Program Files\TuneUp Utilities 2004\SystemOptimizer.exe

    HKLM\System\CurrentControlSet\Services

    + AudioSrv Manages audio devices for Windows-based programs. If this service is stopped, audio devices and effects will not function properly. If this service is disabled, any services that explicitly depend on it will fail to start. Microsoft Corporation c:\windows\system32\svchost.exe

    + Avg7Alrt AVG Alert Manager GRISOFT, s.r.o. c:\program files\grisoft\avg free\avgamsvr.exe

    + Avg7UpdSvc AVG Update Service GRISOFT, s.r.o. c:\program files\grisoft\avg free\avgupsvc.exe

    + BITS Transfers files in the background using idle network bandwidth. If the service is stopped, features such as Windows Update, and MSN Explorer will be unable to automatically download programs and other information. If this service is disabled, any services that explicitly depend on it may fail to transfer files if they do not have a fail safe mechanism to transfer files directly through IE in case BITS has been disabled. Microsoft Corporation c:\windows\system32\svchost.exe

    + CryptSvc Provides three management services: Catalog Database Service, which confirms the signatures of Windows files; Protected Root Service, which adds and removes Trusted Root Certification Authority certificates from this computer; and Key Service, which helps enroll this computer for certificates. If this service is stopped, these management services will not function properly. If this service is disabled, any services that explicitly depend on it will fail to start. Microsoft Corporation c:\windows\system32\svchost.exe

    + DcomLaunch Provides launch functionality for DCOM services. Microsoft Corporation c:\windows\system32\svchost.exe

    + Dhcp Manages network configuration by registering and updating IP addresses and DNS names. Microsoft Corporation c:\windows\system32\svchost.exe

    + dmserver Detects and monitors new hard disk drives and sends disk volume information to Logical Disk Manager Administrative Service for configuration. If this service is stopped, dynamic disk status and configuration information may become out of date. If this service is disabled, any services that explicitly depend on it will fail to start. Microsoft Corporation c:\windows\system32\svchost.exe

    + Dnscache Resolves and caches Domain Name System (DNS) names for this computer. If this service is stopped, this computer will not be able to resolve DNS names and locate Active Directory domain controllers. If this service is disabled, any services that explicitly depend on it will fail to start. Microsoft Corporation c:\windows\system32\svchost.exe

    + ERSvc Allows error reporting for services and applictions running in non-standard environments. Microsoft Corporation c:\windows\system32\svchost.exe

    + Eventlog Enables event log messages issued by Windows-based programs and components to be viewed in Event Viewer. This service cannot be stopped. Microsoft Corporation c:\windows\system32\services.exe

    + lanmanworkstation Creates and maintains client network connections to remote servers. If this service is stopped, these connections will be unavailable. If this service is disabled, any services that explicitly depend on it will fail to start. Microsoft Corporation c:\windows\system32\svchost.exe

    + LmHosts Enables support for NetBIOS over TCP/IP (NetBT) service and NetBIOS name resolution. Microsoft Corporation c:\windows\system32\svchost.exe

    + McDetect.exe McAfee WSC Integration Service McAfee, Inc c:\program files\mcafee.com\agent\mcdetect.exe

    + McShield On-Access Scanner service McAfee Inc. c:\program files\mcafee.com\vso\mcshield.exe

    + McTskshd.exe McAfee Task Scheduler McAfee, Inc c:\program files\mcafee.com\agent\mctskshd.exe

    + MCVSRte McAfee VirusScan Real-time Engine McAfee, Inc c:\program files\mcafee.com\vso\mcvsrte.exe

    + MDM Supports local and remote debugging for Visual Studio and script debuggers. If this service is stopped, the debuggers will not function properly. Microsoft Corporation c:\program files\common files\microsoft shared\vs7debug\mdm.exe

    + PlugPlay Enables a computer to recognize and adapt to hardware changes with little or no user input. Stopping or disabling this service will result in system instability. Microsoft Corporation c:\windows\system32\services.exe

    + ProtectedStorage Provides protected storage for sensitive data, such as private keys, to prevent access by unauthorized services, processes, or users. Microsoft Corporation c:\windows\system32\lsass.exe

    + RpcSs Provides the endpoint mapper and other miscellaneous RPC services. Microsoft Corporation c:\windows\system32\svchost.exe

    + SamSs Stores security information for local user accounts. Microsoft Corporation c:\windows\system32\lsass.exe

    + Schedule Enables a user to configure and schedule automated tasks on this computer. If this service is stopped, these tasks will not be run at their scheduled times. If this service is disabled, any services that explicitly depend on it will fail to start. Microsoft Corporation c:\windows\system32\svchost.exe

    + SENS Tracks system events such as Windows logon, network, and power events. Notifies COM+ Event System subscribers of these events. Microsoft Corporation c:\windows\system32\svchost.exe

    + SharedAccess Provides network address translation, addressing, name resolution and/or intrusion prevention services for a home or small office network. Microsoft Corporation c:\windows\system32\svchost.exe

    + ShellHWDetection Generic Host Process for Win32 Services Microsoft Corporation c:\windows\system32\svchost.exe

    + SmcService Sygate Agent Firewall Sygate Technologies, Inc. c:\program files\sygate\spf\smc.exe

    + Spooler Loads files to memory for later printing. Microsoft Corporation c:\windows\system32\spoolsv.exe

    + spupdsvc Enables Installer to complete its scheduled post-reboot tasks Microsoft Corporation c:\windows\system32\spupdsvc.exe

    + srservice Performs system restore functions. To stop service, turn off System Restore from the System Restore tab in My Computer->Properties Microsoft Corporation c:\windows\system32\svchost.exe

    + stisvc Provides image acquisition services for scanners and cameras. Microsoft Corporation c:\windows\system32\svchost.exe

    + Themes Provides user experience theme management. Microsoft Corporation c:\windows\system32\svchost.exe

    + UMWdf Enables Windows user mode drivers. Microsoft Corporation c:\windows\system32\wdfmgr.exe

    + W32Time Maintains date and time synchronization on all clients and servers in the network. If this service is stopped, date and time synchronization will be unavailable. If this service is disabled, any services that explicitly depend on it will fail to start.

    Microsoft Corporation c:\windows\system32\svchost.exe

    + WebClient Enables Windows-based programs to create, access, and modify Internet-based files. If this service is stopped, these functions will not be available. If this service is disabled, any services that explicitly depend on it will fail to start. Microsoft Corporation c:\windows\system32\svchost.exe

    + winmgmt Provides a common interface and object model to access management information about operating system, devices, applications and services. If this service is stopped, most Windows-based software will not function properly. If this service is disabled, any services that explicitly depend on it will fail to start. Microsoft Corporation c:\windows\system32\svchost.exe

    + WMDM PMSP Service WMDM PMSP Service Microsoft Corporation c:\windows\system32\mspmspsv.exe

    + wscsvc Monitors system security settings and configurations. Microsoft Corporation c:\windows\system32\svchost.exe

    + wuauserv Enables the download and installation of critical Windows updates. If the service is disabled, the operating system can be manually updated at the Windows Update Web site. Microsoft Corporation c:\windows\system32\svchost.exe

    + WZCSVC Provides automatic configuration for the 802.11 adapters Microsoft Corporation c:\windows\system32\svchost.exe

    HKLM\System\CurrentControlSet\Services

    + ACPI ACPI Driver for NT Microsoft Corporation c:\windows\system32\drivers\acpi.sys

    + aec Microsoft Acoustic Echo Canceller Microsoft Corporation c:\windows\system32\drivers\aec.sys

    + AFD AFD Networking Support Environment Microsoft Corporation c:\windows\system32\drivers\afd.sys

    + agp440 440 NT AGP Filter Microsoft Corporation c:\windows\system32\drivers\agp440.sys

    + AN983 ADMtek AN983/AN985/ADM951X NDIS5 Driver ADMtek Incorporated. c:\windows\system32\drivers\an983.sys

    + An98dsvr System Audio WDM Filter Microsoft Corporation c:\windows\system32\drivers\sysaudio.sys

    + AsyncMac RAS Asynchronous Media Driver Microsoft Corporation c:\windows\system32\drivers\asyncmac.sys

    + atapi IDE/ATAPI Port Driver Microsoft Corporation c:\windows\system32\drivers\atapi.sys

    + atirage3 ATIRAGE3 Miniport Driver ATI Technologies Inc. c:\windows\system32\drivers\atimpae.sys

    + Atmarpc ATM ARP Client Protocol Microsoft Corporation c:\windows\system32\drivers\atmarpc.sys

    + audstub AudStub Driver Microsoft Corporation c:\windows\system32\drivers\audstub.sys

    + Avg7Core AVG Scanning Engine GRISOFT, s.r.o. c:\windows\system32\drivers\avg7core.sys

    + Avg7RsW AVG Resident Shield Unload Helper GRISOFT, s.r.o. c:\windows\system32\drivers\avg7rsw.sys

    + Avg7RsXP AVG Resident Anti-Virus Shield GRISOFT, s.r.o. c:\windows\system32\drivers\avg7rsxp.sys

    + AvgTdi AVG Network connection watcher GRISOFT, s.r.o. c:\windows\system32\drivers\avgtdi.sys

    + CCDECODE WDM Closed Caption VBI Codec Microsoft Corporation c:\windows\system32\drivers\ccdecode.sys

    + Cdrom SCSI CD-ROM Driver Microsoft Corporation c:\windows\system32\drivers\cdrom.sys

    + DCamUSBDXGTech File not found: System32\Drivers\GT891x1.SYS

    + DCamUSBSQTECH Universal Serial Bus Camera Driver Service & Quality Technology. c:\windows\system32\drivers\sqcaptur.sys

    + Disk PnP Disk Driver Microsoft Corporation c:\windows\system32\drivers\disk.sys

    + dmio NT Disk Manager I/O Driver Microsoft Corp., Veritas Software c:\windows\system32\drivers\dmio.sys

    + dmload NT Disk Manager Startup Driver Microsoft Corp., Veritas Software. c:\windows\system32\drivers\dmload.sys

    + DMusic Microsoft Kernel DLS Synthesizer Microsoft Corporation c:\windows\system32\drivers\dmusic.sys

    + drmkaud Microsoft Kernel DRM Audio Descrambler Filter Microsoft Corporation c:\windows\system32\drivers\drmkaud.sys

    + es1371 ENSONIQ AudioPCI 97 WDM Audio Miniport Creative Technology Ltd. c:\windows\system32\drivers\es1371mp.sys

    + FastNIC ADMtek AN983 NDIS5 Driver ADMtek Incorporated. c:\windows\system32\drivers\fastnic.sys

    + Fdc Floppy Disk Controller Driver Microsoft Corporation c:\windows\system32\drivers\fdc.sys

    + Flpydisk Floppy Driver Microsoft Corporation c:\windows\system32\drivers\flpydisk.sys

    + Ftdisk FT Disk Driver Microsoft Corporation c:\windows\system32\drivers\ftdisk.sys

    + gameenum Game Port Enumerator Microsoft Corporation c:\windows\system32\drivers\gameenum.sys

    + Gpc Generic Packet Classifier Microsoft Corporation c:\windows\system32\drivers\msgpc.sys

    + GT890x File not found: System32\Drivers\GT890x.SYS

    + HSF_DP HSF_DP driver Conexant Systems, Inc. c:\windows\system32\drivers\hsfdpsp2.sys

    + HSFHWBS2 HSF_HWB2 WDM driver Conexant Systems, Inc. c:\windows\system32\drivers\hsfbs2s2.sys

    + HTTP This service implements the hypertext transfer protocol (HTTP). If this service is disabled, any services that explicitly depend on it will fail to start. Microsoft Corporation c:\windows\system32\drivers\http.sys

    + i8042prt i8042 Port Driver Microsoft Corporation c:\windows\system32\drivers\i8042prt.sys

    + Imapi IMAPI Kernel Driver Microsoft Corporation c:\windows\system32\drivers\imapi.sys

    + IntelIde Intel PCI IDE Driver Microsoft Corporation c:\windows\system32\drivers\intelide.sys

    + ip6fw Provides intrusion prevention service for a home or small office network. Microsoft Corporation c:\windows\system32\drivers\ip6fw.sys

    + IpFilterDriver IP Traffic Filter Driver Microsoft Corporation c:\windows\system32\drivers\ipfltdrv.sys

    + IpInIp IP in IP Tunnel Driver Microsoft Corporation c:\windows\system32\drivers\ipinip.sys

    + IpNat IP Network Address Translator Microsoft Corporation c:\windows\system32\drivers\ipnat.sys

    + IPSec IPSEC driver Microsoft Corporation c:\windows\system32\drivers\ipsec.sys

    + IRENUM Infra-Red Bus Enumerator Microsoft Corporation c:\windows\system32\drivers\irenum.sys

    + isapnp PNP ISA Bus Driver Microsoft Corporation c:\windows\system32\drivers\isapnp.sys

    + Kbdclass Keyboard Class Driver Microsoft Corporation c:\windows\system32\drivers\kbdclass.sys

    + kmixer Kernel Mode Audio Mixer Microsoft Corporation c:\windows\system32\drivers\kmixer.sys

    + lf File not found: C:\Program Files\Everstrike\Lock Folder XP 3.2\UniShieldXP.sys

    + LVBulk Bulk Driver Logitech Inc. c:\windows\system32\drivers\lvbulk.sys

    + mdmxsdk Diagnostic Interface DRIVER Conexant c:\windows\system32\drivers\mdmxsdk.sys

    + Mouclass Mouse Class Driver Microsoft Corporation c:\windows\system32\drivers\mouclass.sys

    + MSKSSRV MS KS Server Microsoft Corporation c:\windows\system32\drivers\mskssrv.sys

    + MSPCLOCK MS Proxy Clock Microsoft Corporation c:\windows\system32\drivers\mspclock.sys

    + MSPQM MS Proxy Quality Manager Microsoft Corporation c:\windows\system32\drivers\mspqm.sys

    + mssmbios System Management BIOS Driver Microsoft Corporation c:\windows\system32\drivers\mssmbios.sys

    + MSTEE WDM Tee/Communication Transform Filter Microsoft Corporation c:\windows\system32\drivers\mstee.sys

    + NABTSFEC WDM NABTS/FEC VBI Codec Microsoft Corporation c:\windows\system32\drivers\nabtsfec.sys

    + NaiAvFilter1 Anti-Virus File System Filter Driver McAfee Inc. c:\windows\system32\drivers\naiavf5x.sys

    + ndiscm Motorola USB Cable Modem NDIS 5.0 Driver Motorola Inc. c:\windows\system32\drivers\netmotcm.sys

    + NdisIP Microsoft IP Driver Microsoft Corporation c:\windows\system32\drivers\ndisip.sys

    + NdisTapi Remote Access NDIS TAPI Driver Microsoft Corporation c:\windows\system32\drivers\ndistapi.sys

    + Ndisuio NDIS Usermode I/O Protocol Microsoft Corporation c:\windows\system32\drivers\ndisuio.sys

    + NdisWan Remote Access NDIS WAN Driver Microsoft Corporation c:\windows\system32\drivers\ndiswan.sys

    + NetBT NetBios over Tcpip Microsoft Corporation c:\windows\system32\drivers\netbt.sys

    + NwlnkFlt IPX Traffic Filter Driver Microsoft Corporation c:\windows\system32\drivers\nwlnkflt.sys

    + NwlnkFwd IPX Traffic Forwarder Driver Microsoft Corporation c:\windows\system32\drivers\nwlnkfwd.sys

    + P3 Processor Device Driver Microsoft Corporation c:\windows\system32\drivers\p3.sys

    + Parport Parallel Port Driver Microsoft Corporation c:\windows\system32\drivers\parport.sys

    + PCI NT Plug and Play PCI Enumerator Microsoft Corporation c:\windows\system32\drivers\pci.sys

    + PfModNT PCI/ISA Device Info. Service Creative Technology Ltd. c:\windows\system32\pfmodnt.sys

    + PID_0900_V ClickSmart 310 driver Logitech Inc. c:\windows\system32\drivers\lv551av.sys

    + PptpMiniport WAN Miniport (PPTP) Microsoft Corporation c:\windows\system32\drivers\raspptp.sys

    + PSched QoS Packet Scheduler Microsoft Corporation c:\windows\system32\drivers\psched.sys

    + Ptilink Direct Parallel Link Driver Parallel Technologies, Inc. c:\windows\system32\drivers\ptilink.sys

    + PxHelp20 Px Engine Device Driver for Windows 2000/XP Sonic Solutions c:\windows\system32\drivers\pxhelp20.sys

    + RasAcd Remote Access Auto Connection Driver Microsoft Corporation c:\windows\system32\drivers\rasacd.sys

    + Rasl2tp WAN Miniport (L2TP) Microsoft Corporation c:\windows\system32\drivers\rasl2tp.sys

    + RasPppoe Remote Access PPPOE Driver Microsoft Corporation c:\windows\system32\drivers\raspppoe.sys

    + Raspti Direct Parallel Microsoft Corporation c:\windows\system32\drivers\raspti.sys

    + RDPCDD RDP Miniport Microsoft Corporation c:\windows\system32\drivers\rdpcdd.sys

    + rdpdr Microsoft RDP Device redirector Microsoft Corporation c:\windows\system32\drivers\rdpdr.sys

    + redbook Redbook Audio Filter Driver Microsoft Corporation c:\windows\system32\drivers\redbook.sys

    + sbpci WDM Audio Miniport Creative Technology Ltd. c:\windows\system32\drivers\sbpci.sys

    + Secdrv SafeDisc driver c:\windows\system32\drivers\secdrv.sys

    + serenum Serial Port Enumerator Microsoft Corporation c:\windows\system32\drivers\serenum.sys

    + Serial Serial Device Driver Microsoft Corporation c:\windows\system32\drivers\serial.sys

    + sermouse Serial Mouse Filter Driver Microsoft Corporation c:\windows\system32\drivers\sermouse.sys

    + SLIP Microsoft Slip Deframing Filter Minidriver Microsoft Corporation c:\windows\system32\drivers\slip.sys

    + SONYPVU1 Sony USB Lower Filter driver Sony Corporation c:\windows\system32\drivers\sonypvu1.sys

    + splitter Microsoft Kernel Audio Splitter Microsoft Corporation c:\windows\system32\drivers\splitter.sys

    + streamip Microsoft IP Test Driver Microsoft Corporation c:\windows\system32\drivers\streamip.sys

    + SVKP SVKP driver for NT AntiCracking c:\windows\system32\svkp.sys

    + swenum Plug and Play Software Device Enumerator Microsoft Corporation c:\windows\system32\drivers\swenum.sys

    + swmidi Microsoft GS Wavetable Synthesizer Microsoft Corporation c:\windows\system32\drivers\swmidi.sys

    + SymEvent File not found: C:\Program Files\Symantec\SYMEVENT.SYS

    + SYMIDSCO File not found: C:\PROGRA~1\COMMON~1\SYMANT~1\SymcData\IDS-DI~1\20041209.018\symidsco.sys

    + SYMREDRV Redirector Filter Driver Symantec Corporation c:\windows\system32\drivers\symredrv.sys

    + SYMTDI Network Dispatch Driver Symantec Corporation c:\windows\system32\drivers\symtdi.sys

    + sysaudio System Audio WDM Filter Microsoft Corporation c:\windows\system32\drivers\sysaudio.sys

    + Tcpip TCP/IP Protocol Driver Microsoft Corporation c:\windows\system32\drivers\tcpip.sys

    + Teefer Teefer Driver Sygate Technologies, Inc. c:\windows\system32\drivers\teefer.sys

    + TermDD Terminal Server Driver Microsoft Corporation c:\windows\system32\drivers\termdd.sys

    + Update Update Driver Microsoft Corporation c:\windows\system32\drivers\update.sys

    + USB100TX Linksys EtherFast 10/100 USB Network Adapter NDIS 5.0 Linksys c:\windows\system32\drivers\usb100tx.sys

    + usbccgp USB Common Class Generic Parent Driver Microsoft Corporation c:\windows\system32\drivers\usbccgp.sys

    + USBCM NDIS 5.0 Driver c:\windows\system32\drivers\sacm2a.sys

    + usbhub Default Hub Driver for USB Microsoft Corporation c:\windows\system32\drivers\usbhub.sys

    + usbscan USB Scanner Driver Microsoft Corporation c:\windows\system32\drivers\usbscan.sys

    + USBSTOR USB Mass Storage Class Driver Microsoft Corporation c:\windows\system32\drivers\usbstor.sys

    + usbuhci UHCI USB Miniport Driver Microsoft Corporation c:\windows\system32\drivers\usbuhci.sys

    + USRTI Modem driver U.S. Robotics, Inc. c:\windows\system32\drivers\usrti.sys

    + VgaSave Controls the VGA display adapter to provide basic display capabilities. Microsoft Corporation c:\windows\system32\drivers\vga.sys

    + Wanarp Remote Access IP ARP Driver Microsoft Corporation c:\windows\system32\drivers\wanarp.sys

    + wdmaud MMSYSTEM Wave/Midi API mapper Microsoft Corporation c:\windows\system32\drivers\wdmaud.sys

    + wg3n wgxn Sygate Technologies, Inc. c:\windows\system32\drivers\wg3n.sys

    + wg4n wgxn Sygate Technologies, Inc. c:\windows\system32\drivers\wg4n.sys

    + wg5n wgxn Sygate Technologies, Inc. c:\windows\system32\drivers\wg5n.sys

    + wg6n wgxn Sygate Technologies, Inc. c:\windows\system32\drivers\wg6n.sys

    + winachsf HSF_CNXT driver Conexant Systems, Inc. c:\windows\system32\drivers\hsfcxts2.sys

    + wpsdrvnt wpsdrvnt Sygate Technologies, Inc. c:\windows\system32\drivers\wpsdrvnt.sys

    + WSTCODEC WDM WST Codec Driver Microsoft Corporation c:\windows\system32\drivers\wstcodec.sys

    HKLM\System\CurrentControlSet\Control\Session Manager\BootExecute

    + autocheck autochk * Auto Check Utility Microsoft Corporation c:\windows\system32\autochk.exe

    HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options

    + Your Image File Name Here without a path Symbolic Debugger for Windows 2000 Microsoft Corporation c:\windows\system32\ntsd.exe

    HKLM\System\CurrentControlSet\Control\Session Manager\KnownDlls

    + advapi32 Advanced Windows 32 Base API Microsoft Corporation c:\windows\system32\advapi32.dll

    + comdlg32 Common Dialogs DLL Microsoft Corporation c:\windows\system32\comdlg32.dll

    + gdi32 GDI Client DLL Microsoft Corporation c:\windows\system32\gdi32.dll

    + imagehlp Windows NT Image Helper Microsoft Corporation c:\windows\system32\imagehlp.dll

    + kernel32 Windows NT BASE API Client DLL Microsoft Corporation c:\windows\system32\kernel32.dll

    + lz32 LZ Expand/Compress API DLL Microsoft Corporation c:\windows\system32\lz32.dll

    + ole32 Microsoft OLE for Windows Microsoft Corporation c:\windows\system32\ole32.dll

    + oleaut32 Microsoft Corporation c:\windows\system32\oleaut32.dll

    + olecli32 Object Linking and Embedding Client Library Microsoft Corporation c:\windows\system32\olecli32.dll

    + olecnv32 Microsoft OLE for Windows Microsoft Corporation c:\windows\system32\olecnv32.dll

    + olesvr32 Object Linking and Embedding Server Library Microsoft Corporation c:\windows\system32\olesvr32.dll

    + olethk32 Microsoft OLE for Windows Microsoft Corporation c:\windows\system32\olethk32.dll

    + rpcrt4 Remote Procedure Call Runtime Microsoft Corporation c:\windows\system32\rpcrt4.dll

    + shell32 Windows Shell Common Dll Microsoft Corporation c:\windows\system32\shell32.dll

    + url Internet Shortcut Shell Extension DLL Microsoft Corporation c:\windows\system32\url.dll

    + urlmon OLE32 Extensions for Win32 Microsoft Corporation c:\windows\system32\urlmon.dll

    + user32 Windows XP USER API Client DLL Microsoft Corporation c:\windows\system32\user32.dll

    + version Version Checking and File Installation Libraries Microsoft Corporation c:\windows\system32\version.dll

    + wininet Internet Extensions for Win32 Microsoft Corporation c:\windows\system32\wininet.dll

    + wldap32 Win32 LDAP API DLL Microsoft Corporation c:\windows\system32\wldap32.dll

    HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\UIHost

    + logonui.exe Windows Logon UI Microsoft Corporation c:\windows\system32\logonui.exe

    HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Notify

    + crypt32chain Crypto API32 Microsoft Corporation c:\windows\system32\crypt32.dll

    + cryptnet Crypto Network Related API Microsoft Corporation c:\windows\system32\cryptnet.dll

    + cscdll Offline Network Agent Microsoft Corporation c:\windows\system32\cscdll.dll

    + ScCertProp Common DLL to receive Winlogon notifications Microsoft Corporation c:\windows\system32\wlnotify.dll

    + Schedule Common DLL to receive Winlogon notifications Microsoft Corporation c:\windows\system32\wlnotify.dll

    + sclgntfy Secondary Logon Service Notification DLL Microsoft Corporation c:\windows\system32\sclgntfy.dll

    + SensLogn Common DLL to receive Winlogon notifications Microsoft Corporation c:\windows\system32\wlnotify.dll

    + termsrv Common DLL to receive Winlogon notifications Microsoft Corporation c:\windows\system32\wlnotify.dll

    + wlballoon Common DLL to receive Winlogon notifications Microsoft Corporation c:\windows\system32\wlnotify.dll

    HKCU\Control Panel\Desktop\Scrnsave.exe

    + C:\WINDOWS\System32\logon.scr Logon Screen Saver Microsoft Corporation c:\windows\system32\logon.scr

    HKLM\System\CurrentControlSet\Services\WinSock2\Parameters\Protocol_Catalog9

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{06B4F49B-4F02-4C94-912B-57C2FB642806}] DATAGRAM 3 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{06B4F49B-4F02-4C94-912B-57C2FB642806}] SEQPACKET 3 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{28A00066-21DB-4DA7-99CB-10D83B177C26}] DATAGRAM 6 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{28A00066-21DB-4DA7-99CB-10D83B177C26}] SEQPACKET 6 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{3720CBD4-01BE-4A6E-AC53-81F1BC6CEECA}] DATAGRAM 4 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{3720CBD4-01BE-4A6E-AC53-81F1BC6CEECA}] SEQPACKET 4 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{4AF0948F-0018-40A6-8722-B09E7135DBEF}] DATAGRAM 8 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{4AF0948F-0018-40A6-8722-B09E7135DBEF}] SEQPACKET 8 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{AEF50BDC-816F-4AEE-8F45-EDAFA92106E0}] DATAGRAM 5 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{AEF50BDC-816F-4AEE-8F45-EDAFA92106E0}] SEQPACKET 5 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{AFF2242A-F3FA-4D40-A8D4-A4DF168C3568}] DATAGRAM 7 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{AFF2242A-F3FA-4D40-A8D4-A4DF168C3568}] SEQPACKET 7 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{B0B360F6-A144-4DC8-BBE7-D49E16757C99}] DATAGRAM 0 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{B0B360F6-A144-4DC8-BBE7-D49E16757C99}] SEQPACKET 0 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{E5773BC6-79E6-490A-910A-48EB33054998}] DATAGRAM 9 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{E5773BC6-79E6-490A-910A-48EB33054998}] SEQPACKET 9 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{EE7F66DD-615E-439D-AEA3-15C6AFCAE001}] DATAGRAM 2 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{EE7F66DD-615E-439D-AEA3-15C6AFCAE001}] SEQPACKET 2 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{F4E8E74E-254D-41BC-8652-BF64DDA7874C}] DATAGRAM 1 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD NetBIOS [\Device\NetBT_Tcpip_{F4E8E74E-254D-41BC-8652-BF64DDA7874C}] SEQPACKET 1 Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD Tcpip [RAW/IP] Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD Tcpip [TCP/IP] Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + MSAFD Tcpip [UDP/IP] Microsoft Windows Sockets 2.0 Service Provider Microsoft Corporation c:\windows\system32\mswsock.dll

    + RSVP TCP Service Provider Microsoft Windows Rsvp 1.0 Service Provider Microsoft Corporation c:\windows\system32\rsvpsp.dll

    + RSVP UDP Service Provider Microsoft Windows Rsvp 1.0 Service Provider Microsoft Corporation c:\windows\system32\rsvpsp.dll

    HKLM\SYSTEM\CurrentControlSet\Control\Print\Monitors

    + BJ Language Monitor Langage Monitor for Canon Bubble-Jet Printer Microsoft Corporation c:\windows\system32\cnbjmon.dll

    + Local Port Local Spooler DLL Microsoft Corporation c:\windows\system32\localspl.dll

    + PJL Language Monitor PJL Language monitor Microsoft Corporation c:\windows\system32\pjlmon.dll

    + Standard TCP/IP Port Standard TCP/IP Port Monitor DLL Microsoft Corporation c:\windows\system32\tcpmon.dll

    + USB Monitor Standard Dynamic Printing Port Monitor DLL Microsoft Corporation c:\windows\system32\usbmon.dll

    HKLM\SYSTEM\CurrentControlSet\Control\Lsa\Authentication Packages

    + msv1_0 Microsoft Authentication Package v1.0 Microsoft Corporation c:\windows\system32\msv1_0.dll

    HKLM\SYSTEM\CurrentControlSet\Control\Lsa\Notification Packages

    + scecli Windows Security Configuration Editor Client Engine Microsoft Corporation c:\windows\system32\scecli.dll

    HKLM\SYSTEM\CurrentControlSet\Control\Lsa\Security Packages

    + kerberos Kerberos Security Package Microsoft Corporation c:\windows\system32\kerberos.dll

    + msv1_0 Microsoft Authentication Package v1.0 Microsoft Corporation c:\windows\system32\msv1_0.dll

    + schannel TLS / SSL Security Provider Microsoft Corporation c:\windows\system32\schannel.dll

    + wdigest Microsoft Digest Access Microsoft Corporation c:\windows\system32\wdigest.dll

    Source: http://community.livejournal.com/computergeeks/913325.html

  20. css/html bg image problems

    Date: 04/24/06 (WebDesign)    Keywords: css, html

    Hello,

    I need some help with a site I am designing. The basic layout has been defined as a table and I'm trying to use CSS for the main content. I have a background image for the content area and a scroll box where the actual text will be placed defined as ".content" (the text) placed on top of a colored element ".contentBox". The reason why I have these separated as such is because I would like to use the opacity/alpha option so that the background image shows through the content box, but doesn't effect the text. You can get the idea
    here (note - the opactity effect is not recognized by IE). The first problem, as you can see, is the bg image begins to tile. This first example has the bg image inserted with HTML (tr background="images/body.gif" height="536"). I cannot find a method for preventing the tiling with HTML, so I instead use CSS (url(images/body.gif) no-repeat), but the image will not show at all. Here is my attempt with CSS background image. Can anyone see where I'm going wrong here?

    Style code below the

    body {
    background-color: #BAB9B9;
    }
    body,td,th {
    color: #333333;
    font-size: 12px;
    }

    .content {
    width: 510px; height: 400px;
    position:relative; left: 280px; top: -390px;
    font-color:#000000;
    overflow: auto;
    z-index:100
    }

    .contentBox {
    background:#a2b5b0;
    opacity:.35;filter: alpha(opacity=35); -moz-opacity: 0.35;
    width: 510px; height: 400px;
    position:relative; left: 280px; top: 10px;
    z-index:50;
    }

    #bg {
    background-image: url(images/body.gif) no-repeat;
    z-index:5;
    }


    Many thanks in advance!!!
    (x-posted lightly)

    Source: http://community.livejournal.com/webdesign/1099500.html

Previous page  ||  Next page


antivirus | apache | asp | blogging | browser | bugtracking | cms | crm | css | database | ebay | ecommerce | google | hosting | html | java | jsp | linux | microsoft | mysql | offshore | offshoring | oscommerce | php | postgresql | programming | rss | security | seo | shopping | software | spam | spyware | sql | technology | templates | tracker | virus | web | xml | yahoo | home