Day: February 12, 2015

  • Virtual Machine tweaks for a better performance

    Over the last couple of months I gathered the following tweaks for a better performance insight the virtual machine, besides disabling / uninstalling useless services and devices: – Disable the pre-logon screensaver: Open Regedit HKEY_USERS\.DEFAULT\Control Panel\Desktop Change the value of “ScreenSaveActive” to 0. – Disable updates of the last access time attribute for your NTFS…

  • DISM: disable features

    OSDDisableFeatures.ps1 DISM /online /Disable-Feature /FeatureName:MediaCenter /Quiet /NoRestart write-host “Successfully removed Media Center” DISM /online /Disable-Feature /FeatureName:FaxServicesClientPackage /Quiet /NoRestart write-host “Successfully removed Windows Fax and Scan” DISM /online /Disable-Feature /FeatureName:OpticalMediaDisc /Quiet /NoRestart write-host “Successfully removed Windows DVD Maker” http://tweaks.com/windows/40255/manage-windows-features-from-command-line-with-dism/