Foren
Neue Beiträge
Foren durchsuchen
Aktuelles
Neue Beiträge
Profilnachrichten
Neueste Aktivitäten
Mitglieder
Zurzeit aktive Besucher
Profilnachrichten
Profilnachrichten suchen
Login
Registrieren
Aktuelles
Suche
Suche
Nur Titel durchsuchen
Von:
Neue Beiträge
Foren durchsuchen
Menü
Login
Registrieren
App installieren
Installieren
Foren
Acer Forum
Acer Notebook Forum
Acer Aspire Forum
AS7530G: RAM Auslastung sehr hoch und über 80 Prozesse!?
JavaScript ist deaktiviert. Für eine bessere Darstellung aktiviere bitte JavaScript in deinem Browser, bevor du fortfährst.
Du verwendest einen veralteten Browser. Es ist möglich, dass diese oder andere Websites nicht korrekt angezeigt werden.
Du solltest ein Upgrade durchführen oder einen
alternativen Browser
verwenden.
Auf Thema antworten
Beitrag
<blockquote data-quote="apareti" data-source="post: 171559"><p><strong>AW: AS7530G: RAM Auslastung sehr hoch und über 80 Prozesse!?</strong></p><p></p><p>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. </p><p> </p><p>@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.</p><p> </p><p>z.b. bei meinem hp photosmart c7280 drucker, wenn ich ihn brauche starte ich meine HP AN.cmd</p><p>[CODE]sc config Spooler binpath= "C:\Windows\System32\spoolsv.exe" start= "auto"</p><p>sc config hpqddsvc binpath= "C:\Windows\system32\svchost.exe -k hpdevmgmt" start= "auto"</p><p>sc config hpqcxs08 binpath= "C:\Windows\system32\svchost.exe -k hpdevmgmt" start= "auto"</p><p>sc config "Net Driver HPZ12" start= auto</p><p>sc config "Pml Driver HPZ12" start= auto</p><p>sc start Spooler</p><p>sc start hpqddsvc</p><p>sc start hpqcxs08</p><p>sc start "Net Driver HPZ12"</p><p>sc start "Pml Driver HPZ12"[/CODE]</p><p> </p><p>wenn ich fertig bin mit drucken, deaktiviere ich alles wieder mit HP AUS.cmd</p><p>[CODE]sc stop Spooler</p><p>sc stop hpqddsvc</p><p>sc stop hpqcxs08</p><p>sc stop "Net Driver HPZ12"</p><p>sc stop "Pml Driver HPZ12"</p><p>sc config Spooler binpath= "C:\Windows\System32\spoolsv.exe" start= "disabled"</p><p>sc config hpqddsvc binpath= "C:\Windows\system32\svchost.exe -k hpdevmgmt" start= "disabled"</p><p>sc config hpqcxs08 binpath= "C:\Windows\system32\svchost.exe -k hpdevmgmt" start= "disabled"</p><p>sc config "Net Driver HPZ12" start= disabled</p><p>sc config "Pml Driver HPZ12" start= disabled</p><p>[/CODE]</p><p> </p><p>oder anderes beispiel media center</p><p>MC AN.cmd</p><p>[CODE]sc config fdPHost binpath= "C:\Windows\system32\svchost.exe -k LocalService" start= "auto"</p><p>sc config IPBusEnum binpath= "C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted" start= "auto"</p><p>sc config SSDPSRV binpath= "C:\Windows\system32\svchost.exe -k LocalService" start= "auto"</p><p>sc config TermService binpath= "C:\Windows\System32\svchost.exe -k NetworkService" start= "auto"</p><p>sc config ehstart binpath= "C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork" start= "auto"</p><p>sc config ehRecvr binpath= "C:\Windows\ehome\ehRecvr.exe" start= "auto"</p><p>sc config ehSched binpath= "C:\Windows\ehome\ehsched.exe" start= "auto"</p><p>sc config Mcx2Svc start= "auto"</p><p>sc start fdPHost</p><p>sc start IPBusEnum</p><p>sc start SSDPSRV</p><p>sc start TermService</p><p>sc start ehstart</p><p>sc start ehRecvr</p><p>sc start ehSched</p><p>sc start Mcx2Svc[/CODE]</p><p> </p><p>MC AUS.cmd</p><p>[CODE]sc stop ehstart</p><p>sc stop ehRecvr</p><p>sc stop ehSched</p><p>sc stop Mcx2Svc</p><p>sc stop IPBusEnum</p><p>sc stop SSDPSRV</p><p>sc stop TermService</p><p>sc stop fdPHost</p><p>sc config fdPHost binpath= "C:\Windows\system32\svchost.exe -k LocalService" start= "disabled"</p><p>sc config IPBusEnum binpath= "C:\Windows\system32\svchost.exe -k LocalSystemNetworkRestricted" start= "disabled"</p><p>sc config SSDPSRV binpath= "C:\Windows\system32\svchost.exe -k LocalService" start= "disabled"</p><p>sc config TermService binpath= "C:\Windows\System32\svchost.exe -k NetworkService" start= "disabled"</p><p>sc config ehstart binpath= "C:\Windows\system32\svchost.exe -k LocalServiceNoNetwork" start= "disabled"</p><p>sc config ehRecvr binpath= "C:\Windows\ehome\ehRecvr.exe" start= "disabled"</p><p>sc config ehSched binpath= "C:\Windows\ehome\ehsched.exe" start= "disabled"</p><p>sc config Mcx2Svc start= disabled</p><p>taskkill /f /im ehmsas.exe</p><p>taskkill /f /im ehtray.exe</p><p>taskkill /f /im ehrec.exe</p><p>taskkill /f /im ehrecvr.exe</p><p>taskkill /f /im ehsched.exe</p><p>taskkill /f /im ehschell.exe</p><p>[/CODE]</p><p> </p><p>Windows Update AN.cmd</p><p>[CODE]sc config wuauserv start= "auto"</p><p>sc config BITS start= "demand"</p><p>sc start wuauserv</p><p>sc start BITS[/CODE]</p><p> </p><p>Windows Update AUS.cmd</p><p>[CODE]sc stop wuauserv</p><p>sc stop BITS</p><p>sc stop BITS</p><p>sc config wuauserv start= "disabled"</p><p>sc config BITS start= "demand"</p><p>[/CODE]</p><p> </p><p>Bluetooth AN.cmd</p><p>[CODE]sc config btwdins binpath= "C:\Program Files\WIDCOMM\Bluetooth Software\bin\btwdins.exe" start= "auto"</p><p>sc config BthServ binpath= "C:\Windows\system32\svchost.exe -k bthsvcs" start= "auto"</p><p>sc start btwdins</p><p>sc start BthServ[/CODE]</p><p> </p><p>Bluetooth AUS.cmd</p><p>[CODE]sc stop btwdins</p><p>sc stop BthServ</p><p>sc config btwdins binpath= "C:\Program Files\WIDCOMM\Bluetooth Software\bin\btwdins.exe" start= "disabled"</p><p>sc config BthServ binpath= "C:\Windows\system32\svchost.exe -k bthsvcs" start= "disabled"[/CODE]</p><p> </p><p>so mache ich das, unnötigen ballast einfach weg damit.=)</p></blockquote><p></p>
[QUOTE="apareti, post: 171559"] [b]AW: AS7530G: RAM Auslastung sehr hoch und über 80 Prozesse!?[/b] 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"[/CODE] 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 [/CODE] 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[/CODE] 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 [/CODE] Windows Update AN.cmd [CODE]sc config wuauserv start= "auto" sc config BITS start= "demand" sc start wuauserv sc start BITS[/CODE] Windows Update AUS.cmd [CODE]sc stop wuauserv sc stop BITS sc stop BITS sc config wuauserv start= "disabled" sc config BITS start= "demand" [/CODE] 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[/CODE] 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"[/CODE] so mache ich das, unnötigen ballast einfach weg damit.=) [/QUOTE]
Authentifizierung
Antworten
Foren
Acer Forum
Acer Notebook Forum
Acer Aspire Forum
AS7530G: RAM Auslastung sehr hoch und über 80 Prozesse!?
Oben