Jump to content

Jeronimo

Member
  • Posts

    395
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by Jeronimo

  1. I am using dead0 his preset, but it is not working for me. I tried several removal types, but I am not getting anywhere with services, network and system removal. Just an error everytime during installation. Is there somewhere you can dig up what installation fails on?
  2. For me Windows Search keeps working if removed by vLite (not from Windows Features/dism).
  3. Stick with dead0's dwm-list that 1 makes sence. dead0, still I just do not understand... Why the following are not removed with dism (drivers): Microsoft-Windows-Client-Drivers-Package, Microsoft-Windows-Client-Wired-Network-Drivers-Package,Microsoft-Windows-Common-Drivers-Package (those are removed with other packages?) Why this is removed with dism and not with vLite: Microsoft-Windows-RDC-Package (Remote Differential Compression)
  4. @dead0: Please note that SQM can be removed, but does Windows Update work afterwards for me it did not? Also why do you remove components with dism in stead of vLite. What is your motivation, what do you base your dicision on or what is your motivation otherwise?
  5. I have no luck with the attached preset. Installation does finish the 1st phase and reboot, but in the next phase it errors out.
  6. That I am also certain of underxp. However I had hoped to see all packages left over, so that I would know what to remove with dism before running vLite. Turns out, that "no matter how many" packages you remove with vLite, dism will always show these packages of which I would not think of removing the first 2.
  7. Well I am first going to try the win7ultra preset variant with a few components extra kept, to see how that turns out.
  8. Thanks. What I do not understand is, that when I remove everything besides manual Setup and winsxs, that I only have the following packages: Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~amd64~en-US~6.1.7232.0 Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-LocalPack-AU-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-LocalPack-CA-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-LocalPack-GB-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-LocalPack-US-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-LocalPack-ZA-Package~31bf3856ad364e35~amd64~~6.1.7232.0 This seems to make the dism-removal only necessary for those components that fail by vLite-removal. If at all possible: For instance should I remove IE and Windows Firewall with dism, does the installation work or does it also fail (as if removed by vLite).
  9. Am really anxious to your results. Would love to do some tests as well. Still working out issues with with dism/vLite.
  10. @dead0: You move quite a bit less packages than before, how come? (amonst others Microsoft-Media-Foundation-Package, Microsoft-Windows-Client-Wired-Network-Drivers-Package, Microsoft-Windows-ClipsInTheLibrary-Package)
  11. @dead0: After install_wim_tweak.exe in Stage 1, do you need to commit the image before going to stage 2? If so, I missed out on that with my batch-file and need to update it.
  12. Just a few pointers: Windows Search removed with Windows features also removes search in Menu Start and explorer (vLite does not, dism untested) Winodws Image Acquisition is also used for Webcams (not just photo cameras). I think vLite might do a better job at cleaning packages (also from winsxs?). Need to test what is best: dead-0 guide and then vLite or the other way round? Also you can use dism and do not need waik, you just need to make sure all files are up to date in the sources-folder if you have a VHD-version. These files can be extracted from the install.wim (7-Zip) or if you mount it with imagex (mount the image for a tool to mount the image, contradiction ). You need the dism.exe from windows\system32, dism*.exe- and WimProvider.dll from windows32\system32\dism to the sources-folder. Also you might need dism.exe.mui from windows\system32\en-us and dism*.mui from windows\system32\dism\en-us to sources\en-use folder. Mount (must be a folder, root not allowed) with: %sources%\dism.exe /mount-wim /wimfile:"%sources%\install.wim" /index:1 /mountdir:%mount% Un-mount with: %sources%\dism.exe /unmount-wim /mountdir:%mount% /commit (undo with /discard instead of /commit)
  13. Yep, that was a test. Thanks for the heads up, I corrected it (did remove the package, see last code-bit where he package is not shown).
  14. I created all steps in 3 batch-files that should do the trick (along with the stuff dead0 posted in the same folder). removal.bat (note the 5 parameters you need to alter): @echo off REM amd64 or x86 set bits=amd64 set version=7232 set sources=I:\Windows 7\sources REM Imagex mount/unmount set mount=E: set imagex="D:\Quicksilver\Windows\Instellingen\imagex.exe" set mountimagex=%imagex% /mountrw "%sources%\install.wim" 1 "%mount%" set unmountimagex=%imagex% /unmount /commit %mount% REM Dism mount/unmount set mountwim=E:\Wim set mountdism="%sources%\dism.exe" /mount-wim /wimfile:"%sources%\install.wim" /index:1 /mountdir:%mountwim% set unmountdism="%sources%\dism.exe" /unmount-wim /mountdir:%mountwim% /commit Rem Imagex/Dism set mountimage=%mountimagex% set unmountimage=%unmountimagex% REM mkdir %mountwim% REM set mountimage=%mountdism% REM set unmountimage=%unmountdism% REM Perform the install tweak %mountimage% install_wim_tweak.exe /p %mount% /m del /s /f %mount%\Windows\System32\Recovery /q REM delete wallpapers except for Windows (default) from %mount%\Windows\Web\Wallpaper %unmountimage% REM Perform the package removals %mountimage% call rempckgs.bat call rempckg2.bat %unmountimage% rempckgs.bat (dead0 rem7201): @echo off set dism="%sources%\dism.exe" /image:%mount% /remove-package /packagename %dism%:Microsoft-Hyper-V-Common-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Hyper-V-Guest-Integration-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Anytime-Upgrade-Results-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Backup-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-BLB-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-BusinessScanning-Feature-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Client-Wired-Network-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-ClipsInTheLibrary-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Common-Modem-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Disk-Diagnosis-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Gadget-Platform-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Help-Customization-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-IIS-WebServer-AddOn-2-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-IIS-WebServer-AddOn-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Indexing-Service-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-IE-Troubleshooters-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Links-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-LocalPack-AU-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-LocalPack-CA-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-LocalPack-GB-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-LocalPack-ZA-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-LocalPack-US-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-MediaCenter-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-MobilePC-Client-Basic-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-MobilePC-Client-Premium-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-MobilePC-Client-Sensors-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-MobilePC-Client-SideShow-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-NetworkDiagnostics-DirectAccessEntry-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-NFS-ClientSKU-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-OfflineFiles-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-OpticalMediaDisc-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-ParentalControls-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-PeerDist-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-PeerToPeer-Full-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-PhotoPremiumPackage~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Printer-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Printing-Foundation-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Printing-XPSServices-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 REM %dism%:Microsoft-Windows-RasCMAK-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-RasRip-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-RDC-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-RecDisc-SDP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-RemoteAssistance-Package-Client~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-SampleContent-Music-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-SampleContent-Ringtones-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-SecureStartup-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Shell-HomeGroup-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Shell-InboxGames-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Sidebar-Killbits-SDP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-SimpleTCP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-SnippingTool-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-SNMP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-StickyNotes-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-SUA-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-SystemRestore-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-TabletPC-OC-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Telnet-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Telnet-Server-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-TerminalServices-CommandLineTools-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-TerminalServices-MiscRedirection-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-TerminalServices-Publishing-WMIProvider-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-TerminalServices-RemoteApplications-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-TerminalServices-UsbRedirector-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-TerminalServices-WMIProvider-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-TFTP-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Tuner-Drivers-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-WindowsMediaPlayer-Troubleshooters-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-WinOcr-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-WMPNetworkSharingService-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Xps-Foundation-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Server-Help-Package.ClientUltimate~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Networking-MPSSVC-Rules-UltimateEdition-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 rempckg2.bat (gendouhydeist additions - REM-lines: did not work, already removed) @echo off set dism="%sources%\dism.exe" /image:%mount% /remove-package /packagename %dism%:Microsoft-Media-Foundation-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 REM %dism%:Microsoft-Windows-Anytime-Upgrade-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-GroupPolicy-ClientExtensions-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-GroupPolicy-ClientTools-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 REM %dism%:Microsoft-Windows-Help-CoreClientUAHP-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 REM %dism%:Microsoft-Windows-Help-CoreClientUAPS-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-Help-CoreClientUAUE-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-IIS-WebServer-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-MediaPlayback-OC-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 REM %dism%:Microsoft-Windows-MediaPlayer-DVDRegistration-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 REM %dism%:Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 REM %dism%:Microsoft-Windows-MSMQ-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-SearchEngine-Client-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 REM %dism%:Microsoft-Windows-StorageService-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-VirtualPC-Licensing-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-VirtualPC-USB-RPM-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 %dism%:Microsoft-Windows-VirtualXP-Licensing-Package~31bf3856ad364e35~%bits%~~6.1.%version%.0 After this the following packages remain (not including Language Packages): Microsoft-Windows-Branding-Ultimate-Client-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Client-Drivers-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Client-Features-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-CodecPack-Basic-Encoder-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-CodecPack-Basic-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Common-Drivers-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-DesktopWindowManager-uDWM-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Editions-Client-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Foundation-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-GPUPipeline-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-ICM-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~amd64~~8.0.7232.0 Microsoft-Windows-InternetExplorer-Package~31bf3856ad364e35~amd64~~8.0.7232.0 Microsoft-Windows-Killbits-Package~31bf3856ad364e35~amd64~~8.0.7232.0 Microsoft-Windows-Media-Format-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Personalization-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Printing-LocalPrinting-Home-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Printing-PremiumTools-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Security-SPP-Component-SKU-Ultimate-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-ServicingBaseline-Ultimate-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Microsoft-Windows-Shell-SoundThemes-Package~31bf3856ad364e35~amd64~~6.1.7232.0 Please note that VHD versions (as with my 7232 x62) have differeny versions in sources (taken from 7137), so you need to extract dism from the install.wim (windows\system32\dism.exe and windows\system32\dism\dism*.*) in that case and place the files in the sourcs-folder. Also I have not yet tested vLite or installation yet. Think I will try plain installation first.
  15. @dead0: I checked if winsxs\backup can be removed, but I am not too sure especially when I read this I am creating batch file that is reusable for the aactions specified, should not be that complex.
  16. @liquid0624: great first post! Few questions though. Would be nice to include reasoning for protected files see my post here for example. With build 7137 I had no installation issues when removing the following components: Game Explorer, Snipping Tool, Welcome Center, Windows Firewall, Internet Connection Sharing. What changed for these components?
  17. I on certain occasions do: Removed LLTD, kept Network and Sharing Center Removed QoS and IPsec, kept WIndows update Removed Task Scheduler, kept SQM However my preset does not work with build 7201.
  18. I matched your Extreme preset against mine and you have these components extra: Shell event sounds Shell event sounds Extensible Authentication Protocol (EAP) Beep Crash Dump Support At least I know Crash Dump Support will cause your pc not to go hibernation and isn't EAP used for WLAN?
  19. My preset can be found in the topic Windows 7 "Keep" List, here a direct link to my post with details on how which steps I followed to vLite my Windows 7.
  20. With all due respect: I think none of the above. My preset removes 170 out 202 components for build 7137 and I only have 1 issue with it (Safe removal USB). Will test again when I get my hands on build 7229 or 7230 or I can get the Dutch language pack for any of the other builds.
  21. Power options work as they should with my preset on build 7137. I did encounter 1 additional issue and that is that I can not dismount my external HD from explorer (option not shown for the HD) or from the system tray icon (shows Open devices and printers as well as ..., but I can not remove the drive safely).
  22. I do not use home networking or a firewall: I have a Hardware firewall in my router, a Virus scanner with a bit of mallware protection, a well protected browser (Firefox) and a good brain + common sense that I can use in case all else fails . As I said I did a Sysrep-install in which I choose to remove IE via Windows features. The files that remain are in Winsxs and some in Program Files (around 8MB) do not bother me. I kept browcli.dll because otherwise I can not use "net start/stop" or SysInternals equivalent psservice to start and stop services (good point I had forgotten about this). I think 7100 and 7137 where builds without debugging code and 7127 did have that, not sure on 7201 though as I have not gotten my hands on it yet. I have seen it is 3.29GB oppposed to 3.04GB for 7137 x64 so this probably indicates that it does have debugging code.
  23. Nope issues where related to those last 2 components. So full story for the attached 7137-preset is... Removal issues (and therefore not removed): Snipping Tool (Sticky Notes do not work, keeps appearing in vLite after removal) Welcome Center (keeps appearing in vLite after removal) IE (installation error) Application Experience (installation error) Crash Dump Support (hibernate does not work) MDAC (unable to start Device Manager, Computer Management and probably other mmc.exe related components) SQM (Windows Update does not show updates correctly) Protect files details: windows\system32\browcli.dll & windows\SYSwow64\browcli (required for "net start/stop" and psservice) windows\system32\winipsec.dll (IPSec removal gives installation error) windows\system32\Magnification.dll & windows\system32\msdrm.dll (Snipping Tool does not function) windows\system32\wer.dll & windows\system32\werconcpl.dll (issues? not verified) On to 7201 and then RTM
  24. New removal issues (**** FridgeTooFar was right :-( ): MDAC (unable to start Device Manager, Computer Management: mmc.eexe) SQM? (Update issues, probably related to this)
  25. I retested again with build 7137: vLite'd image, kept everything, but just rebuild for Windows 7 Ultimate (remove other editions) Install to secondary partition, went into audit mode to install the Dutch languagepack, Updates and removed everything by use of Windows features (except for XPS viewer) and finalized the image. With vLite I removed everything I previously did, although some things were not shown, because I removed them in Windows features (Windows Search for example, but IE still appaers). I was able to remove a bit more: Game Explorer, Help (Windows features removed already), QoS, Windows Firewall, Task Scheduler, TPM Base Service, Windows Event Log, MDAC, SQM. (The preset below does not have these checked for removal yet). IE, QoS, Windows Firewall together in 1 turn provided blocking errors during install (I already encountered this in the past though). Removal issues: Snipping Tool (Sticky Notes do not work, keeps appearing in vLite after removal) Welcome Center (keeps appearing in vLite after removal) IE (installation error) Application Experience (installation error) Crash Dump Support (hibernate does not work) Protect files: windows\system32\winipsec.dll (IPSec removal gives installation error) windows\system32\Magnification.dll & windows\system32\msdrm.dll (Snipping Tool does not function) windows\system32\wer.dll & windows\system32\werconcpl.dll (issues? not verified) edit: Tested Task Scheduler and SQM removal succesfully edit 2: Tested QoS (succesfull) and Crash dump support (failed) removal edit 3: Tested Windows firewall removal succesfully (preset not updated yet) edit 3: Tested ICS removal succesfully (preset not updated yet)
×
×
  • Create New...