win10 won't shut down my computer fully, I have to choose "Enable/Disable Hibernation", right? thanks!
I don't know which version of windows 10 you are using, but i can see a crapload of useless services. Still working in check wich ones can be disabled without break everything. I use to disable/change services from auto to manual since xp, some services can be disabled safely since you don't use any related resources. If you compare services between windows enterprise and windows home, you will see that there is several services that are disabled in home or don't even exist. Some services are useful only for tables or notebooks, being useless for desktops.
Coming along nicely, thank you for update One suggestion. Can you fix the spelling error in menu, its irritating, lol Should be 'enable', not 'enabele'
Regarding the Enable/Disable "Windows Update Delivery Optimization" Code: reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /v "DODownloadMode" /t REG_DWORD /d "0" /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /v "DODownloadMode" /t REG_DWORD /d "1" /f reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DeliveryOptimization\Config" /v "DODownloadMode" /t REG_DWORD /d "3" /f 0 = Off 1 = On, PCs on my local network 3 = On, PCs on my local network, and PCs on the Internet
Enable/Disable Windows Smart Screen Filter Windows Code: reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "SmartScreenEnabled" /t REG_DWORD /d "Off" /f reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "SmartScreenEnabled" /t REG_DWORD /d "RequireAdmin" /f reg add "HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer" /v "SmartScreenEnabled" /t REG_DWORD /d "Prompt" /f Store Code: reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t REG_DWORD /d "0" /f -Off reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t REG_DWORD /d "1" /f -On
I had to Google for that answer, but here it goes: Code: powershell.exe -command "Add-AppxPackage -register 'C:\Program Files\WindowsApps\PackageFullName\AppxManifest.xml' -DisableDevelopmentMode" For example, I just restored the Store app by running: Code: powershell.exe -command "Add-AppxPackage -register 'C:\Program Files\WindowsApps\Microsoft.WindowsStore_2015.8.3.0_x64__8wekyb3d8bbwe\AppxManifest.xml' -DisableDevelopmentMode" For that you'll have to backup the PackageFullName of the apps you remove so you can restore them later, but they are also on the registry. Just searched for 3dbuilder in my registry and found it and all others in [HKEY_CLASSES_ROOT\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppModel\PackageRepository\Packages] and in [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\CurrentVersion\AppModel\PackageRepository\Packages]. Now there's "only" the question of figuring out how to detect if an app is or is not installed. And for the previous Remove command I posted, it might be better to only use quotes for "Remove-AppxPackage PackageFullName", like this: Code: powershell.exe -command "Remove-AppxPackage PackageFullName"
Thanks i will try it and if it worked for me i will add it Note : in the code to install again, the package name is : Microsoft.WindowsStore_2015.8.3.0_x64__8wekyb3d8bbwe\ Do other versions of windows have other package names !!
The problem with re-installing the Store App, for example, is that it'll install in English and not in the actual system language. At least that was what happened to me.