AW: AS7530G: RAM Auslastung sehr hoch und über 80 Prozesse!?
Bewandtnis!?
cheers, Swordfish
bewandtnis? wollte nightskull verdeutlichen, es geht auch mit weniger prozessen. ist allgemein bekannt das vista im vergleich zu xp, das doppelte und dreifache an irgendwelchen prozessen und diensten hat. wollte damit sagen, bei xp hatte ich sogar 16 prozesse im taskmanager laufen, 16!! und nicht über 100 wie bei vista ultimate nach der ersten installation.
@nightskull, der ganze balast muss weg und lass nur das nötigste automatisch laufen, zur not kann man ja die programme und dienste auch manuell starten.
z.b. bei meinem hp photosmart c7280 drucker, wenn ich ihn brauche starte ich meine HP AN.cmd
Code:
sc config Spooler binpath= "C:\Windows\System32\spoolsv.exe" start= "auto"
sc config hpqddsvc binpath= "C:\Windows\system32\svchost.exe -k hpdevmgmt" start= "auto"
sc config hpqcxs08 binpath= "C:\Windows\system32\svchost.exe -k hpdevmgmt" start= "auto"
sc config "Net Driver HPZ12" start= auto
sc config "Pml Driver HPZ12" start= auto
sc start Spooler
sc start hpqddsvc
sc start hpqcxs08
sc start "Net Driver HPZ12"
sc start "Pml Driver HPZ12"
wenn ich fertig bin mit drucken, deaktiviere ich alles wieder mit HP AUS.cmd
Code:
sc stop Spooler
sc stop hpqddsvc
sc stop hpqcxs08
sc stop "Net Driver HPZ12"
sc stop "Pml Driver HPZ12"
sc config Spooler binpath= "C:\Windows\System32\spoolsv.exe" start= "disabled"
sc config hpqddsvc binpath= "C:\Windows\system32\svchost.exe -k hpdevmgmt" start= "disabled"
sc config hpqcxs08 binpath= "C:\Windows\system32\svchost.exe -k hpdevmgmt" start= "disabled"
sc config "Net Driver HPZ12" start= disabled
sc config "Pml Driver HPZ12" start= disabled
oder anderes beispiel media center
MC AN.cmd
Code:
sc config fdPHost binpath= "C:\Windows\system32\svchost.exe -k LocalService" start= "auto"
sc config IPBusEnum binpath= "C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted" start= "auto"
sc config SSDPSRV binpath= "C:\Windows\system32\svchost.exe -k LocalService" start= "auto"
sc config TermService binpath= "C:\Windows\System32\svchost.exe -k NetworkService" start= "auto"
sc config ehstart binpath= "C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork" start= "auto"
sc config ehRecvr binpath= "C:\Windows\ehome\ehRecvr.exe" start= "auto"
sc config ehSched binpath= "C:\Windows\ehome\ehsched.exe" start= "auto"
sc config Mcx2Svc start= "auto"
sc start fdPHost
sc start IPBusEnum
sc start SSDPSRV
sc start TermService
sc start ehstart
sc start ehRecvr
sc start ehSched
sc start Mcx2Svc
MC AUS.cmd
Code:
sc stop ehstart
sc stop ehRecvr
sc stop ehSched
sc stop Mcx2Svc
sc stop IPBusEnum
sc stop SSDPSRV
sc stop TermService
sc stop fdPHost
sc config fdPHost binpath= "C:\Windows\system32\svchost.exe -k LocalService" start= "disabled"
sc config IPBusEnum binpath= "C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted" start= "disabled"
sc config SSDPSRV binpath= "C:\Windows\system32\svchost.exe -k LocalService" start= "disabled"
sc config TermService binpath= "C:\Windows\System32\svchost.exe -k NetworkService" start= "disabled"
sc config ehstart binpath= "C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork" start= "disabled"
sc config ehRecvr binpath= "C:\Windows\ehome\ehRecvr.exe" start= "disabled"
sc config ehSched binpath= "C:\Windows\ehome\ehsched.exe" start= "disabled"
sc config Mcx2Svc start= disabled
taskkill /f /im ehmsas.exe
taskkill /f /im ehtray.exe
taskkill /f /im ehrec.exe
taskkill /f /im ehrecvr.exe
taskkill /f /im ehsched.exe
taskkill /f /im ehschell.exe
Windows Update AN.cmd
Code:
sc config wuauserv start= "auto"
sc config BITS start= "demand"
sc start wuauserv
sc start BITS
Windows Update AUS.cmd
Code:
sc stop wuauserv
sc stop BITS
sc stop BITS
sc config wuauserv start= "disabled"
sc config BITS start= "demand"
Bluetooth AN.cmd
Code:
sc config btwdins binpath= "C:\Program Files\WIDCOMM\Bluetooth Software\bin\btwdins.exe" start= "auto"
sc config BthServ binpath= "C:\Windows\system32\svchost.exe -k bthsvcs" start= "auto"
sc start btwdins
sc start BthServ
Bluetooth AUS.cmd
Code:
sc stop btwdins
sc stop BthServ
sc config btwdins binpath= "C:\Program Files\WIDCOMM\Bluetooth Software\bin\btwdins.exe" start= "disabled"
sc config BthServ binpath= "C:\Windows\system32\svchost.exe -k bthsvcs" start= "disabled"
so mache ich das, unnötigen ballast einfach weg damit.=)