hi winter in winreducer 8.1 in unattand tab there have dism clean up and reset base option for those who integrate updates but in winreducer 7 there hvnt these option?
Code:
Get-WindowsFeature | ?{$_.Installed -eq 0 -and $_.InstallState -eq 'Available'} | Uninstall-WindowsFeature -Remove
dism /online /cleanup-image /StartComponentCleanup
brittech wrote:Zeeshii
Try these commands in Powershell - they are not a direct match for /resetbase, but they may help reduce the size of WinSXS.
The first command removes the files related to optional features that are not installed
Powershell command!!Code:
Get-WindowsFeature | ?{$_.Installed -eq 0 -and $_.InstallState -eq 'Available'} | Uninstall-WindowsFeature -Remove
dism /online /cleanup-image /StartComponentCleanup