Jump to content

BlueMe

Member
  • Posts

    146
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Romania

Posts posted by BlueMe

  1. I hope i got the right forum, so, does someone knows how can i connect my audio system to one of the cables from the power source. The Audio System stays On everyday no matter if my pc is up or not, so i would like it to power on only when i turn on my pc. On wich cable can i connect it to ? I need a 12V output.

    A.S. Spec: Medion 15 w RMS / 5+1 Chann.

    Thanks for reading.

  2. Like i said i'll do some more tests in this, so the result is that it doesn't matter, what priority taskmgr has, in most of the cases .. it will still freeze. Thus not helping with anything.

    I'm not trying to pick on someone's work but i thought it would be good to know if this tweak/tip makes a difference !

  3. After Seeing DarkShadows post, i've been thinking about this and :

    The alternative has no sense! To bring up task manager you could use :

    A shortcut

    The Taskbar Menu

    RUN from Start Menu

    Ctrl+Alt+Del

    Ctrl+Shift+Esc

    The first 3 are launched by explorer so making explorer.exe go 100% CPU usage, which has a Normal priority would not improve anything.

    Ctrl+Alt+Del is launched by winlogon.exe (I think ?)which runs in High priority

    Were left with the last method wich might get Task Manager a Realtime priority this way making this tweak usefull.

    I'll do some forther tests, until then, if someone has something to say, reply.

  4. Maybe you have a fast CPU and don't notice the difference, to benchmark this, run 2 or more applications that you now they eat up some CPU, set the script to make explorer run in HIGH priority then browse my computer, open some high resolution pictures, something that usually opens slower (and depends on explorer). You have to run this script after explorer was started. That's why i've said that you have to place it in you're Startup folder.

    Other than that, you have a fast CPU/PC or don't work with "heavy" apps.

    On my system it makes a big differenece, i have not explorer run in a different priority but allmost all my apps. I might do a tut. for this but if ppl. don't understand what priority of processes mean it will be useless.(not referring to anyone in specific)

    Good luck !

  5. Uhhh... usualy i know how to keep out of trouble, but now i asked for it, so i've imported that reg tweak and as Aegis said, thats what happend to me, but guess what, i've deleted the reg , forgot about it and until i've restarted my pc i've even installed some tweaking app. to see what they worth, didn't so i've uninstalled them, but without making any setting in the apps. they still reverted everything back to windows default and for some reason my connection was down, what could be worse ? Pulled the video card out, wait to cool, clean, reinstall driver and after 45' or so i've remembered about the dpi thing, search the registry and deleted. I've learned something today.

  6. do what i do, i am using my computer and i am using my svideo output on my vid card which then goes into an svideo to rca converter which then plugs into my vcr which then plugs into my tv. this allows me to watch a movie on my tv :)

    and i play the sound off of my sterio speakers which are also my comp speakers.

    You could buy a SCART adapter, it would be more efficient. :)

  7. If nothing else works, try this :

    [HKEY_CURRENT_USER\Control Panel\Mouse]
    "ActiveWindowTracking"=dword:00000000
    "DoubleClickHeight"="4"
    "DoubleClickSpeed"="500"
    "DoubleClickWidth"="4"
    "MouseSensitivity"="12"
    "MouseSpeed"="1"
    "MouseThreshold1"="6"
    "SmoothMouseXCurve"=hex:00,00,00,00,00,00,00,00,15,6e,00,00,00,00,00,00,00,40,\
    01,00,00,00,00,00,29,dc,03,00,00,00,00,00,00,00,28,00,00,00,00,00
    "SmoothMouseYCurve"=hex:00,00,00,00,00,00,00,00,b8,5e,01,00,00,00,00,00,cd,4c,\
    05,00,00,00,00,00,cd,4c,18,00,00,00,00,00,00,00,38,02,00,00,00,00
    "MouseThreshold2"="10"
    "SnapToDefaultButton"="0"
    "SwapMouseButtons"="0"
    "MouseTrails"="0"

  8. To disable the tweak you must revert back the settings or i don't know for sure if u delete the values from the registry if windows will use the default ones.

    Here's the .reg:

    [HKEY_CURRENT_USER\Control Panel\Desktop]
    "AutoEndTasks"="0"
    "HungAppTimeout"="20000"
    "WaitToKillAppTimeout"="20000"
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
    "WaitToKillServiceTimeout"="20000"

    I suggest, instead of using this tweak, you can install UPHClean from Microsoft.

  9. Open Notepad and save this as Priority.vbs and place this script in your Startup folder,

    On Error Resume Next

    'Priority Class Value
    ' Low - 64
    ' Below Normal - 16384
    ' Normal - 32
    ' Above_Normal - 32768
    ' High - 256
    ' Real_Time - 128

    Const High = 256
    strComputer = "."
    Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")

    Set colProcesses = objWMIService.ExecQuery _
    ("Select * from Win32_Process Where Name = 'Explorer.exe'")
    For Each objProcess in colProcesses
    objProcess.SetPriority(High)
    Next

    This should be self explanatory, but in any case lets explain a little bit, in this form you'll make explorer a High proccess, but i recomend just to keep it as a Above Normal proccess, you could do that by modifying the following :

    Const Above_Normal  = 32768

    ...and

    objProcess.SetPriority(Above_Normal)

    If its still not clear what this does, i suggest you don't do it. :)

    Note : I did not do this, got it from Bill's site :lol:

×
×
  • Create New...