Wargod18

Members
  • Content Count

    16
  • Joined

  • Last visited

Posts posted by Wargod18

  1. I am writing a program to rename Files in VB en Mass. I have almost all of the program working the only thing i don't know how to do is have VB rename the files in the folder I choose in the directory box. I have everything else all i have to do(in theory is throw in the code and it should work).

    I use a program called Ipodwizard(Google it) to change how my Ipod looks. you can add themes and change the pictures on it. anyway every time Apple releases a new firmware upgrade it makes the old themes obsolete. they change the picture names so old themes don't work, this program i am writing will rename the pictures( bitmaps) to the new format going back from the first version to the latest version.

    My questions are

    1. How do i get VB to recognize the directory the person navigated to in the directory box and then rename the files I specify?

    2. how do i get VB to make a sub directory and put the renamed files in the sub directory?

  2. I deleted a truecrypt file that had a bunch of other files in it i need to get just one file back from it is it possible. the truecrypt file was 2 GB big but only had 500mb at most of stuff in it, i need to get another encrypted file out of that file that had my private info. how can i get this back preferably for free?

    / this was all stored on my IPOD as an external drive.java script:bbc_pop()

    Help BB Code Help

  3. ALright let me try.

    Basicly i want to go on my school computer and sstart up IE at my school. i want to then type in my PC's IP address put in a password and then have my PC forward all traffic to IE in school so there are no blocks. But when Im using my PC's internet connectio i dont want anyone using my PC to notice anything besides the router blinking faster than normal. Is that possible and for free?

    \no this is NOT so i can play games they block all image searches and half of the stuff that google,yahoo,whatever bring up for your search. i cant get any reasearch done at school

  4. I want to set my PC up so that i can connect through IE. i want to connect to my PC and have it forward all the info to the school computer in an encrypted signal. I dont want to use remote desktop. i dont want anyone using my PC to know that Im using its internet connection. Is this possible for free. i know this might be a little confusing if you want i can try to reword it.

  5. i am trying to make an equal sign but when i click it if i have say 9+1 it equals 2 or if i give it 7+0 it equals nothing. i have it coded to work with only the add button right now i dont want to go any father until this is fixed.

    Dim operand1 As Integer, operand2 As Integer
    Dim ans As Integer

    Private Sub CMDadd_Click()
    sign = "+"
    operand1 = Val(LBLans.Caption)
    LBLans.Caption = "" 'Clear for next number
    LBLsign.Caption = "+"
    End Sub

    Private Sub CMDans_Click()
    If LBLsign.Caption = "+" Then
    operand1 = Val(LBLans.Caption)
    operand2 = LBLans.Caption
    ans = operand1 + operand2
    LBLans.Caption = ans
    End If
    End Sub

    i am just starting to program in VB, i thought this would work but i guess not what am i doing wrong and what do i have to change, thanks in advance.

  6. Honestly, I've never seen a CD/DVD drive stop working because of firmware of drivers

    Those Intel drivers caused compatability issues between burners and Roxio. It's not the first time an Intel driver has caused problems.

    i updated it to the lastest version and it still isnt working im guessing its a hardware problem. is there anyting else i can try.

  7. my DVD/CD rom drive stopped working. i thought maybe it was dust on the laser so i tried one of this disks with the brushes on the bottom it didnt work. so now im going to try to update my drivers i went on everest and it said i have a NEC DVD_RW ND-3540A (DVD+R9:8x, DVD-R9:4x, DVD+RW:16x/8x, DVD-RW:16x/6x, DVD-ROM:16x, CD:48x/32x/48x DVD+RW/DVD-RW)

    i went to there website and they said to uninstall some intel programs(Intel Ultra-ATA Storage Driver

    + Intel Application Accelerator ). i could not find them so i thought maybe thats why its not working i just spent 30 mins on there site trying to find the programs but i dont know what to download. if i have an Intel Lakeport-G i945G chipset then where do i get these files? thank you in advance.

  8. I thought that the colorchange was telling VB what to do but it was just a name. i feel really stupid now.

    first i would like to say welcome the worlds newest script kiddie. 2nd i would like to say thank for your help in advance. 3rd i would like to say im not the worlds newest script kiddie anymore.

    anyway, i cant get this subroutine to run in VB 6. it gives me a compile error, i have 2 subroutines, one controls the backround color change the other controls the foreground color change. i think the problem is that there both called colorchange how do you fix this. This is the entire code that is related to the problem. The VSBblue, green, red control the backround while the Foreround is controled by the ones with F after them.

    P.S. sorry if this is a little confusing but i told you before im a script kiddie. so im new at this.

    P.P.S. once this code is fixed if anybody wants to use it in there own project go ahead just give me credit.

    errorpv6.jpg

    Private Sub VSBblue_Change()
    Call ColorChange(VSBred.Value, VSBgreen.Value, VSBblue.Value)
    End Sub

    Private Sub VSBbluef_Change()
    Call ColorChange(VSBredf.Value, VSBGreenf.Value, VSBbluef.Value)
    End Sub

    Private Sub VSBgreen_Change()
    Call ColorChange(VSBred.Value, VSBgreen.Value, VSBblue.Value)
    End Sub

    Private Sub VSBGreenf_Change()
    Call ColorChange(VSBredf.Value, VSBGreenf.Value, VSBbluef.Value)
    End Sub

    Private Sub VSBredf_Change()
    Call ColorChange(VSBredf.Value, VSBGreenf.Value, VSBbluef.Value)
    End Sub

    Private Sub VSBred_Change()
    Call ColorChange(VSBred.Value, VSBgreen.Value, VSBblue.Value)
    End Sub

    'subroutine that may be called from multiple locations in the program

    Private Sub ColorChange(ByRef r As Integer, ByRef g As Integer, ByRef b As Integer)
    LBLrgb.Caption = r & "," & g & "," & b
    frmDumbProject.BackColor = RGB(r, g, b)
    OPThello.BackColor = RGB(r, g, b)
    OPTwelcome.BackColor = RGB(r, g, b)
    OPThowareyou.BackColor = RGB(r, g, b)
    OPT18.BackColor = RGB(r, g, b)
    OPT36.BackColor = RGB(r, g, b)
    OPT48.BackColor = RGB(r, g, b)
    OPTblue.BackColor = RGB(r, g, b)
    OPTblack.BackColor = RGB(r, g, b)
    OPTwhite.BackColor = RGB(r, g, b)
    OPTorange.BackColor = RGB(r, g, b)
    OPTYellow.BackColor = RGB(r, g, b)
    OPTgreen.BackColor = RGB(r, g, b)
    OPTsnap.BackColor = RGB(r, g, b)
    OPTarial.BackColor = RGB(r, g, b)
    OPTroman.BackColor = RGB(r, g, b)
    FRAMessage.BackColor = RGB(r, g, b)
    FRAstyle.BackColor = RGB(r, g, b)
    FRAsize.BackColor = RGB(r, g, b)
    FRAcolor.BackColor = RGB(r, g, b)
    FRAfont.BackColor = RGB(r, g, b)
    FRAonoff.BackColor = RGB(r, g, b)
    CHKBold.BackColor = RGB(r, g, b)
    CHKitalic.BackColor = RGB(r, g, b)
    CHKunderlined.BackColor = RGB(r, g, b)
    CHKstyleonoff.BackColor = RGB(r, g, b)
    CHKfontonoff.BackColor = RGB(r, g, b)
    CHKmessageonoff.BackColor = RGB(r, g, b)
    CHKsizeonoff.BackColor = RGB(r, g, b)
    CMDexit.BackColor = RGB(r, g, b)
    LBLred.BackColor = RGB(r, g, b)
    LBLgreen.BackColor = RGB(r, g, b)
    LBLblue.BackColor = RGB(r, g, b)
    LBLGreeting.BackColor = RGB(r, g, b)
    LBLrgb.BackColor = RGB(r, g, b)
    End Sub


    'subroutine that may be called from multiple locations in the program

    Private Sub ColorChange(ByRef r As Integer, ByRef g As Integer, ByRef b As Integer)
    LBLrgbf.Caption = r & "," & g & "," & b
    frmDumbProject.ForeColor = RGB(r, g, b)
    OPThello.ForeColor = RGB(r, g, b)
    OPTwelcome.ForeColor = RGB(r, g, b)
    OPThowareyou.ForeColor = RGB(r, g, b)
    OPT18.ForeColor = RGB(r, g, b)
    OPT36.ForeColor = RGB(r, g, b)
    OPT48.ForeColor = RGB(r, g, b)
    OPTblue.ForeColor = RGB(r, g, b)
    OPTblack.ForeColor = RGB(r, g, b)
    OPTwhite.ForeColor = RGB(r, g, b)
    OPTorange.ForeColor = RGB(r, g, b)
    OPTYellow.ForeColor = RGB(r, g, b)
    OPTgreen.ForeColor = RGB(r, g, b)
    OPTsnap.ForeColor = RGB(r, g, b)
    OPTarial.ForeColor = RGB(r, g, b)
    OPTroman.ForeColor = RGB(r, g, b)
    FRAMessage.ForeColor = RGB(r, g, b)
    FRAstyle.ForeColor = RGB(r, g, b)
    FRAsize.ForeColor = RGB(r, g, b)
    FRAcolor.ForeColor = RGB(r, g, b)
    FRAfont.ForeColor = RGB(r, g, b)
    FRAonoff.ForeColor = RGB(r, g, b)
    CHKBold.ForeColor = RGB(r, g, b)
    CHKitalic.ForeColor = RGB(r, g, b)
    CHKunderlined.ForeColor = RGB(r, g, b)
    CHKstyleonoff.ForeColor = RGB(r, g, b)
    CHKfontonoff.ForeColor = RGB(r, g, b)
    CHKmessageonoff.ForeColor = RGB(r, g, b)
    CHKsizeonoff.ForeColor = RGB(r, g, b)
    CMDexit.ForeColor = RGB(r, g, b)
    LBLred.ForeColor = RGB(r, g, b)
    LBLgreen.ForeColor = RGB(r, g, b)
    LBLblue.ForeColor = RGB(r, g, b)
    LBLGreeting.ForeColor = RGB(r, g, b)
    LBLrgb.ForeColor = RGB(r, g, b)
    LBLrgbf.ForeColor = RGB(r, g, b)
    End Sub

  9. i put VB on my IPOD but whenever i double click the VB.exe file the splash screen comes up and then it says cannot find file DAO350.DLL i found that this is a file in the registry(i think) is there anyway to trick the program into running without the file or having it look on my IPOD for the file instead. i dont want to edit the registry to get VB to run.

    P.S. this is a legal copy of VB my dad bought it a while ago incase your wondering.

  10. i dont get it it worked great last night. the only thing that happened is the power went out for a brief second while i was playing COD UO and backing up a DVD to my hard drive. so i turned the PC on and started to play it agian everything was fine. but this morning when try to connected to a server that i always go on the game crashes to desktop with no error message. and i go to a server called extreme game arena and it has a thing in the corner that says overall axis killed and overall allies killed the overall score and other things and it just says unlocalized.

    reinstalling the game just made things worse now i get this error when i try to start it. recursive error cant use keys with a "key:'dom"

    value '<NULL>'

    and i also get this.

    ------- Miles sound system initialization -------

    Attempting 11 kHz 16 bit stereo sound

    2D provider initialized at 9436800 0 89455988

    available 3D providers:

    Aureal A3D Interactive

    Aureal A3D 2.0

    DirectSound3D Software Emulation

    DirectSound3D Hardware Support

    DirectSound3D 7+ Software - Pan and Volume

    DirectSound3D 7+ Software - Light HRTF

    DirectSound3D 7+ Software - Full HRTF

    Creative Labs EAX 3

    Creative Labs EAX 2

    Creative Labs EAX

    RAD Game Tools RSX 3D Audio

    Dolby Surround

    Miles Fast 2D Positional Audio

    using 3D provider 'Miles Fast 2D Positional Audio'

    32 max 3D channels

    ------- Miles successfully initialized -------

    menu file not found: maps/mp/gametypes/uza.txt, using default

    ********************

    ERROR: Can't use keys with a "

    key: 'dom"'

    value: '<NULL>'

    ********************

    RE_Shutdown( 0 )

    Hunk_Clear: reset the hunk ok

    ----- R_Init -----

    GL_VENDOR: ATI Technologies Inc.

    GL_RENDERER: RADEON X800 XL x86/SSE2

    GL_VERSION: 2.0.5220 WinXP Release

    GL_EXTENSIONS: GL_ARB_multitexture GL_EXT_texture_env_add GL_EXT_compiled_vertex_array GL_S3_s3tc GL_ARB_depth_texture GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_multisample GL_ARB_occlusion_query GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_shader_objects GL_ARB_shading_language_100 GL_ARB_shadow GL_ARB_shadow_ambient GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_mirrored_repeat GL_ARB_transpose_matrix GL_ARB_vertex_blend GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_element_array GL_ATI_envmap_bumpmap GL_ATI_fragment_shader GL_ATI_map_object_buffer GL_ATI_separate_stencil GL_ATI_texture_compression_3dc GL_ATI_texture_env_combine3 GL_ATI_texture_float GL_ATI_texture_mirror_once GL_ATI_vertex_array_object GL_ATI_vertex_attrib_array_object GL_ATI_vertex_streams GL_ATIX_texture_env_combine3 GL_ATIX_texture_env_route GL_ATIX_vertex_shader_output_point_size GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_clip_volume_hint GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_object GL_EXT_multi_draw_arrays GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_EXT_texgen_reflection GL_EXT_texture3D GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_EXT_vertex_shader GL_HP_occlusion_test GL_NV_blend_square GL_NV_occlusion_query GL_NV_texgen_reflection GL_SGI_color_matrix GL_SGIS_generate_mipmap GL_SGIS_multitexture GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod GL_SUN_multi_draw_arrays GL_WIN_swap_hint WGL_EXT_extensions_string WGL_EXT_swap_control

    WGL_EXTENSIONS: WGL_ARB_extensions_string WGL_ARB_make_current_read WGL_ARB_multisample WGL_ARB_pbuffer WGL_ARB_pixel_format WGL_ARB_render_texture WGL_ATI_pixel_format_float WGL_EXT_extensions_string WGL_EXT_swap_control WGL_ATI_render_texture_rectangle

    GL_MAX_TEXTURE_SIZE: 2048

    GL_MAX_ACTIVE_TEXTURES_ARB: 8

    PIXELFORMAT: color(32-bits) Z(24-bit) stencil(8-bits)

    MODE: 8, 1280 x 1024 fullscreen hz:60

    GAMMA: hardware w/ 0 overbright bits

    CPU: Intel Pentium III

    rendering primitives: single glDrawElements

    texturemode: GL_LINEAR_MIPMAP_NEAREST

    picmip: 2

    picmip2: 3

    texture bits: 0

    multitexture: enabled

    compiled vertex arrays: enabled

    texenv add: enabled

    ATI truform: disabled

    NV distance fog: disabled

    Forcing glFinish

    Initializing Shaders

    ----- finished R_Init -----

    menu file not found: maps/mp/gametypes/uza.txt, using default

    RE_Shutdown( 1 )

    Shutting down OpenGL subsystem

    ...wglMakeCurrent( NULL, NULL ): success

    ...deleting GL context: success

    ...releasing DC: success

    ...destroying window

    ...resetting display

    ...shutting down QGL

    ...unloading OpenGL DLL

    recursive error after: Can't use keys with a "

    key: 'dom"'

    value: '<NULL>'

  11. ive noticed alot of programs that are new to me are trying to use the internet.so i did a scan and found that nortons had found 6 things it deleted 1 the others it could not and they are

    DC1.exe, DrPMon.dll, fcrcoo.exe, Nail.exe, svcproc.exe. it could delete InstallerV5.exe

    Any processes that i dont have to have that i can get ride of would be nice too

    Logfile of HijackThis v1.99.1

    Scan saved at 10:14:35 PM, on 9/9/2005

    Platform: Windows XP SP2 (WinNT 5.01.2600)

    MSIE: Internet Explorer v6.00 SP2 (6.00.2900.2180)

    Running processes:

    C:\WINDOWS\System32\smss.exe

    C:\WINDOWS\system32\winlogon.exe

    C:\WINDOWS\system32\services.exe

    C:\WINDOWS\system32\lsass.exe

    C:\WINDOWS\system32\Ati2evxx.exe

    C:\WINDOWS\system32\svchost.exe

    C:\WINDOWS\System32\svchost.exe

    C:\Program Files\Common Files\Symantec Shared\ccProxy.exe

    C:\Program Files\Common Files\Symantec Shared\ccSetMgr.exe

    C:\Program Files\Norton Internet Security\ISSVC.exe

    C:\Program Files\Common Files\Symantec Shared\SNDSrvc.exe

    C:\Program Files\Common Files\Symantec Shared\SPBBC\SPBBCSvc.exe

    C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe

    C:\WINDOWS\system32\Ati2evxx.exe

    C:\WINDOWS\Explorer.exe

    C:\WINDOWS\system32\spoolsv.exe

    C:\PROGRA~1\COMMON~1\AOL\ACS\AOLacsd.exe

    C:\WINDOWS\eHome\ehRecvr.exe

    C:\WINDOWS\eHome\ehSched.exe

    C:\Program Files\McAfee\McAfee AntiSpyware\Msssrv.exe

    C:\Program Files\Norton Internet Security\Norton AntiVirus\navapsvc.exe

    C:\Program Files\Common Files\New Boundary\PrismXL\PRISMXL.SYS

    C:\WINDOWS\system32\UAService7.exe

    C:\Program Files\Common Files\Symantec Shared\Security Center\SymWSC.exe

    C:\WINDOWS\system32\fcrcoo.exe

    C:\WINDOWS\system32\dllhost.exe

    C:\Program Files\Java\jre1.5.0_02\bin\jusched.exe

    C:\Program Files\Common Files\Symantec Shared\ccApp.exe

    C:\Program Files\Digital Media Reader\shwiconem.exe

    C:\PROGRA~1\mcafee.com\agent\mcagent.exe

    C:\Program Files\McAfee\McAfee AntiSpyware\MssCli.exe

    C:\Program Files\QuickTime\qttask.exe

    C:\Program Files\Intel Audio Studio\IntelAudioStudio.exe

    C:\Program Files\Common Files\Real\Update_OB\realsched.exe

    C:\WINDOWS\system32\ctfmon.exe

    C:\Program Files\Messenger\msmsgs.exe

    C:\PROGRA~1\NORTON~1\NORTON~1\Navw32.exe

    C:\Program Files\Internet Explorer\iexplore.exe

    C:\Program Files\Common Files\Symantec Shared\AdBlocking\NSMdtr.exe

    C:\Program Files\Internet Explorer\iexplore.exe

    C:\Program Files\WinRAR\WinRAR.exe

    C:\DOCUME~1\Owner\LOCALS~1\Temp\Rar$EX00.031\HijackThis.exe

    R0 - HKCU\Software\Microsoft\Internet Explorer\Main,Start Page = http://www.gateway.com/

    R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Page_URL = http://www.gatewaybiz.com

    R0 - HKLM\Software\Microsoft\Internet Explorer\Main,Start Page = http://www.gatewaybiz.com

    F2 - REG:system.ini: Shell=Explorer.exe C:\WINDOWS\Nail.exe

    O2 - BHO: AcroIEHlprObj Class - {06849E9F-C8D7-4D59-B87D-784B7D6BE0B3} - C:\Program Files\Adobe\Acrobat 7.0\ActiveX\AcroIEHelper.dll

    O2 - BHO: Norton Internet Security - {9ECB9560-04F9-4bbc-943D-298DDF1699E1} - C:\Program Files\Common Files\Symantec Shared\AdBlocking\NISShExt.dll

    O2 - BHO: Google Toolbar Helper - {AA58ED58-01DD-4d91-8333-CF10577473F7} - c:\program files\google\googletoolbar1.dll

    O2 - BHO: NAV Helper - {BDF3E430-B101-42AD-A544-FADC6B084872} - C:\Program Files\Norton Internet Security\Norton AntiVirus\NavShExt.dll

    O3 - Toolbar: Norton Internet Security - {0B53EAC3-8D69-4b9e-9B19-A37C9A5676A7} - C:\Program Files\Common Files\Symantec Shared\AdBlocking\NISShExt.dll

    O3 - Toolbar: Norton AntiVirus - {42CDD1BF-3FFB-4238-8AD1-7859DF00B1D6} - C:\Program Files\Norton Internet Security\Norton AntiVirus\NavShExt.dll

    O3 - Toolbar: AOL Toolbar - {4982D40A-C53B-4615-B15B-B5B5E98D167C} - C:\Program Files\AOL Toolbar\toolbar.dll

    O3 - Toolbar: &Google - {2318C2B1-4965-11d4-9B18-009027A5CD4F} - c:\program files\google\googletoolbar1.dll

    O4 - HKLM\..\Run: [sunJavaUpdateSched] C:\Program Files\Java\jre1.5.0_02\bin\jusched.exe

    O4 - HKLM\..\Run: [ccApp] "C:\Program Files\Common Files\Symantec Shared\ccApp.exe"

    O4 - HKLM\..\Run: [sunKistEM] C:\Program Files\Digital Media Reader\shwiconem.exe

    O4 - HKLM\..\Run: [MCAgentExe] c:\PROGRA~1\mcafee.com\agent\mcagent.exe

    O4 - HKLM\..\Run: [MCUpdateExe] C:\PROGRA~1\mcafee.com\agent\mcupdate.exe

    O4 - HKLM\..\Run: [_AntiSpyware] C:\Program Files\McAfee\McAfee AntiSpyware\MssCli.exe

    O4 - HKLM\..\Run: [igfxTray] C:\WINDOWS\system32\igfxtray.exe

    O4 - HKLM\..\Run: [HotKeysCmds] C:\WINDOWS\system32\hkcmd.exe

    O4 - HKLM\..\Run: [Persistence] C:\WINDOWS\system32\igfxpers.exe

    O4 - HKLM\..\Run: [symantec NetDriver Monitor] C:\PROGRA~1\SYMNET~1\SNDMon.exe /Consumer

    O4 - HKLM\..\Run: [QuickTime Task] "C:\Program Files\QuickTime\qttask.exe" -atboottime

    O4 - HKLM\..\Run: [intelAudioStudio] "C:\Program Files\Intel Audio Studio\IntelAudioStudio.exe" TRAY

    O4 - HKLM\..\Run: [TkBellExe] "C:\Program Files\Common Files\Real\Update_OB\realsched.exe" -osboot

    O4 - HKLM\..\Run: [ebtnqf] C:\WINDOWS\system32\fcrcoo.exe r

    O4 - HKCU\..\Run: [ctfmon.exe] C:\WINDOWS\system32\ctfmon.exe

    O4 - HKCU\..\Run: [MSMSGS] "C:\Program Files\Messenger\msmsgs.exe" /background

    O8 - Extra context menu item: E&xport to Microsoft Excel - res://C:\PROGRA~1\MICROS~2\OFFICE11\EXCEL.EXE/3000

    O9 - Extra button: (no name) - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0_02\bin\npjpi150_02.dll

    O9 - Extra 'Tools' menuitem: Sun Java Console - {08B0E5C0-4FCB-11CF-AAA5-00401C608501} - C:\Program Files\Java\jre1.5.0_02\bin\npjpi150_02.dll

    O9 - Extra button: AOL Toolbar - {4982D40A-C53B-4615-B15B-B5B5E98D167C} - C:\Program Files\AOL Toolbar\toolbar.dll

    O9 - Extra 'Tools' menuitem: AOL Toolbar - {4982D40A-C53B-4615-B15B-B5B5E98D167C} - C:\Program Files\AOL Toolbar\toolbar.dll

    O9 - Extra button: Research - {92780B25-18CC-41C8-B9BE-3C9C571A8263} - C:\PROGRA~1\MICROS~2\OFFICE11\REFIEBAR.DLL

    O9 - Extra button: Real.com - {CD67F990-D8E9-11d2-98FE-00C0F0318AFE} - C:\WINDOWS\system32\Shdocvw.dll

    O9 - Extra button: Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe

    O9 - Extra 'Tools' menuitem: Windows Messenger - {FB5F1910-F110-11d2-BB9E-00C04F795683} - C:\Program Files\Messenger\msmsgs.exe

    O16 - DPF: {39B0684F-D7BF-4743-B050-FDC3F48F7E3B} (FilePlanet Download Control Class) - http://www.fileplanet.com/fpdlmgr/cabs/FPDC_1_0_0_44.cab

    O16 - DPF: {6414512B-B978-451D-A0D8-FCFDF33E833C} (WUWebControl Class) - http://update.microsoft.com/windowsupdate/...b?1121720290468

    O16 - DPF: {6E32070A-766D-4EE6-879C-DC1FA91D2FC3} (MUWebControl Class) - http://update.microsoft.com/microsoftupdat...b?1123856597843

    O16 - DPF: {9A57B18E-2F5D-11D5-8997-00104BD12D94} (compid Class) - http://support.gateway.com/support/serialharvest/gwCID.CAB

    O16 - DPF: {D1E7CBDA-E60E-4970-A01C-37301EF7BF98} (Measurement Services Client v.3.7) - http://gameadvisor.futuremark.com/global/msc37.cab

    O20 - Winlogon Notify: igfxcui - C:\WINDOWS\SYSTEM32\igfxdev.dll

    O23 - Service: AOL Connectivity Service (AOL ACS) - America Online, Inc. - C:\PROGRA~1\COMMON~1\AOL\ACS\AOLacsd.exe

    O23 - Service: Ati HotKey Poller - ATI Technologies Inc. - C:\WINDOWS\system32\Ati2evxx.exe

    O23 - Service: ATI Smart - Unknown owner - C:\WINDOWS\system32\ati2sgag.exe

    O23 - Service: Symantec Event Manager (ccEvtMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccEvtMgr.exe

    O23 - Service: Symantec Network Proxy (ccProxy) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccProxy.exe

    O23 - Service: Symantec Password Validation (ccPwdSvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccPwdSvc.exe

    O23 - Service: Symantec Settings Manager (ccSetMgr) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\ccSetMgr.exe

    O23 - Service: InstallDriver Table Manager (IDriverT) - Macrovision Corporation - C:\Program Files\Common Files\InstallShield\Driver\11\Intel 32\IDriverT.exe

    O23 - Service: ISSvc (ISSVC) - Symantec Corporation - C:\Program Files\Norton Internet Security\ISSVC.exe

    O23 - Service: McAfee AntiSpyware Real-Time Scanner (McAfeeAntiSpyware) - Network Associates, Inc. - C:\Program Files\McAfee\McAfee AntiSpyware\Msssrv.exe

    O23 - Service: McAfee SecurityCenter Update Manager (mcupdmgr.exe) - McAfee, Inc - C:\PROGRA~1\McAfee.com\Agent\mcupdmgr.exe

    O23 - Service: Norton AntiVirus Auto-Protect Service (navapsvc) - Symantec Corporation - C:\Program Files\Norton Internet Security\Norton AntiVirus\navapsvc.exe

    O23 - Service: PrismXL - New Boundary Technologies, Inc. - C:\Program Files\Common Files\New Boundary\PrismXL\PRISMXL.SYS

    O23 - Service: SAVScan - Symantec Corporation - C:\Program Files\Norton Internet Security\Norton AntiVirus\SAVScan.exe

    O23 - Service: ScriptBlocking Service (SBService) - Symantec Corporation - C:\PROGRA~1\COMMON~1\SYMANT~1\SCRIPT~1\SBServ.exe

    O23 - Service: Symantec Network Drivers Service (SNDSrvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SNDSrvc.exe

    O23 - Service: Symantec SPBBCSvc (SPBBCSvc) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\SPBBC\SPBBCSvc.exe

    O23 - Service: System Startup Service (SvcProc) - Unknown owner - C:\WINDOWS\svcproc.exe

    O23 - Service: SymWMI Service (SymWSC) - Symantec Corporation - C:\Program Files\Common Files\Symantec Shared\Security Center\SymWSC.exe

    O23 - Service: SecuROM User Access Service (V7) (UserAccess7) - Sony DADC Austria AG. - C:\WINDOWS\system32\UAService7.exe