Zainstaluj Steam
zaloguj się
|
język
简体中文 (chiński uproszczony)
繁體中文 (chiński tradycyjny)
日本語 (japoński)
한국어 (koreański)
ไทย (tajski)
български (bułgarski)
Čeština (czeski)
Dansk (duński)
Deutsch (niemiecki)
English (angielski)
Español – España (hiszpański)
Español – Latinoamérica (hiszpański latynoamerykański)
Ελληνικά (grecki)
Français (francuski)
Italiano (włoski)
Bahasa Indonesia (indonezyjski)
Magyar (węgierski)
Nederlands (niderlandzki)
Norsk (norweski)
Português (portugalski – Portugalia)
Português – Brasil (portugalski brazylijski)
Română (rumuński)
Русский (rosyjski)
Suomi (fiński)
Svenska (szwedzki)
Türkçe (turecki)
Tiếng Việt (wietnamski)
Українська (ukraiński)
Zgłoś problem z tłumaczeniem
They removed it from processes and put it under the performance/memory tab so as not to confuse people.
Along with some of my friends experiencing same problems on that update..
I'll wait for a few more week before going for the anniversary update just in case..
This message was posted 8/11/2016 @ 4:28 PM CDT.
PS. I dont care about necro posting as long as it serves the question, so screw u all haters ahead of time.
My recommendation is just add more ram to your system, but, u want to disable here you go.
Might wanna read up on this before you use so u know exactly what memory compression and superfetch does:
makeuseof.com/tag/what-is-superfetch
Steps.
**anything with # before any line will not run and or is used just as a description to you.**
1. Use notepad or notepad++, type this up
Code (dont type this line up into notepad)
# disable Memory Compression (requires SysMain (service))
Disable-MMAgent -mc
#Get-MMAgent
echo "Now you can also disable service SysMain (former Superfetch which learns and preloads them into RAM ahead of time) in case it's not used, remove the # in front of the next line if u wanna disable superfetch also"
#Get-Service "SysMain" | Set-Service -StartupType Disabled -PassThru | Stop-Service
End of code (Dont type this line into notepad)
2. ***Now save it as name.ps1 anywhere u want then move it to any rood drive. I saved it to desktop then manually moved the script to root of C drive. I'll use root of C drive as example.***
3. Run Windows PowerShell as administrator.
4. Verify up top on opened powershell u running it as admin and type the following in and klik enter.
Set-ExecutionPolicy Unrestricted -Force
5. Now navigate inside powershell to where u saved the script using my example and klik enter:
cd C:\
6. Verify u are in that directory, u will see this in the powershell window
PS C:\>
7. type the following then enter
./name.ps1
8. Verify with arrow key up and enter again. this will rerun the script.
9. Read the screen and verify the following are as follows:
ApplicationLaunchPrefetching : False
ApplicationPreLaunch : False
MaxOperationAPIFiles : 256
MemoryCompression : False
OperationAPI : False
PageCombining : False
10. After this do ur thing, or just reboot pc and go on about ur business.
so ur script if u wanna disable both mem compres and super fetch should be like this:
Disable-MMAgent -mc
Get-MMAgent
echo
Get-Service "SysMain" | Set-Service -StartupType Disabled -PassThru | Stop-Service
Disable-MMAgent -ApplicationPreLaunch
Get-MMAgent
# disable Prefetch
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters" /v EnablePrefetcher /t REG_DWORD /d "0" /f
# disable (Edge) Prelaunch
reg add "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main" /v AllowPrelaunch /t REG_DWORD /d "0" /f
The 0 in the above lines means disable, u can enable by changing the 0 to 1. Would look something like this as final:
Disable-MMAgent -ApplicationPreLaunch
Get-MMAgent
# disable Prefetch
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters" /v EnablePrefetcher /t REG_DWORD /d "1" /f
# disable (Edge) Prelaunch
reg add "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main" /v AllowPrelaunch /t REG_DWORD /d "1" /f
https://github.com/W4RH4WK/Debloat-Windows-10