1. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    Yes.
     
  2. mx101

    mx101 MDL Junior Member

    Aug 12, 2015
    52
    19
    0
    I integrated the new icons, but they don't show up in windows
     
  3. mydlwin20

    mydlwin20 MDL Novice

    May 8, 2020
    8
    1
    0
    Hi thank you for your suggestions. But i already tried those and didnt make a difference.
    1.The directory is short, C:\Tool\...
    2. I am running Start.cmd as administrator.
    3. Checked to update net framework and it says im already on the latest.
     
  4. rus123

    rus123 MDL Novice

    Oct 12, 2020
    3
    0
    0
    I have this odd issue, where when i try to remove stuff from the "System Apps" section, Security Center gets removed for some reason, even though its not on that list? i'm not interested in removing that. im using the latest 11.7 version. Any know why this happens?
     
  5. Dism based Powershell cmdlets will do this job in a very easy way plus user grid view passthru will work like a charm. pl do some more research & i know you will find a good solution though.
     
  6. Titanos

    Titanos MDL Novice

    Dec 11, 2019
    31
    28
    0
    My advice is to keep Microsoft.VCLibs.140.... package.
     
  7. spidernz

    spidernz MDL Senior Member

    May 20, 2011
    390
    114
    10
    I'm not well versed in scripting, just know a bit of basic command prompt stuff from back in the day, so was easy to just throw together and get it to work.
     
  8. jinvidia

    jinvidia MDL Member

    Aug 7, 2016
    238
    35
    10
  9. SergeyKarimov

    SergeyKarimov MDL Novice

    Jan 9, 2021
    20
    4
    0
    Такой Вопрос Как Сохранить Магазин Windows ?
     
  10. Expert @RaiyvaN Knows this . he is an Expert in modding Toolkit with a very easy user friendly way. Lots n Lots of thanks to him for being here with us to support us on toolkit .

    or this :
    Code:
    @echo off
    echo ======================================================
    echo -------------- Disable Windows Features --------------
    echo ======================================================
    Powershell -Command "Get-WindowsOptionalFeature -Online | Where-Object {$_.State -eq 'Enabled' } | Out-GridView -PassThru -Title 'Select Windows Optional Features to Disable' | Disable-WindowsOptionalFeature -Online -NoRestart -Verbose"
    echo ======================================================
    echo ------------- Remove Windows Capabilities ------------
    echo ======================================================
    Powershell -Command "Get-WindowsCapability -Online | Where-Object {$_.State -eq 'Installed' } | Out-GridView -PassThru -Title 'Select Windows Capabilities to Remove' | Remove-WindowsCapability -Online -Verbose"
    echo ======================================================
    echo ------------------ Remove MetroApps ------------------
    echo ======================================================
    PowerShell -Command "Get-AppXProvisionedPackage -Online | Out-GridView -PassThru -Title 'Remove Windows Apps' | Remove-AppXProvisionedPackage -Online -ErrorAction SilentlyContinue -Verbose"
    echo ======================================================
    echo ------------------ Remove SystemApps -----------------
    echo ======================================================
    Powershell -Command "Get-AppxPackage -AllUsers | Out-GridView -PassThru -Title 'Remove System Apps' | Remove-AppxPackage -AllUsers -ErrorAction SilentlyContinue -Verbose"
    echo ======================================================
    pause
    
    This script works upon only current Installed OS but not Offline Wim Index.
     
  11. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
  12. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,894
    10,735
    240
    Hello SergeyKarimov please use the English language here in the forum
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. Ace2

    Ace2 MDL Expert

    Oct 10, 2014
    1,863
    1,524
    60
    OFFLINE - [Use with PowerRun Command Prompt]
    Code:
    Disable Windows Features:
    Powershell -Command "Get-WindowsOptionalFeature -Path C:\mount | Where-Object {$_.State -eq 'Enabled' } | Out-GridView -PassThru -Title 'Select Windows Optional Features to Disable' | Disable-WindowsOptionalFeature -Path C:\mount -NoRestart -Verbose"
    
    Enable Windows Features:
    Powershell -Command "Get-WindowsOptionalFeature -Path C:\mount | Where-Object {$_.State -eq 'Disabled' } | Out-GridView -PassThru -Title 'Select Windows Optional Features to Enable' | Enable-WindowsOptionalFeature -Path C:\mount -NoRestart -Verbose"
    
    Remove Windows Capabilities:
    Powershell -Command "Get-WindowsCapability -Path C:\mount | Where-Object {$_.State -eq 'Installed' } | Out-GridView -PassThru -Title 'Select Windows Capabilities to Remove' | Remove-WindowsCapability -Path C:\mount -Verbose"
    
    Remove MetroApps:
    Powershell -Command "Get-AppXProvisionedPackage -Path C:\mount | Out-GridView -PassThru -Title 'Remove Windows Apps' | Remove-AppxProvisionedPackage -Path C:\mount -ErrorAction SilentlyContinue -Verbose"
    
    Remove SystemApps:
    Powershell -Command "Get-ChildItem -Path C:\mount\Windows\SystemApps | Out-GridView -PassThru -Title 'Select SystemApps to Remove' | Remove-Item -Force -Confirm:$False"
    
    Remove Regedit SystemApps:
    Reg Load HKLM\S C:\mount\Windows\System32\config\SOFTWARE
    
    Powershell -Command "Get-ChildItem -Path "HKLM:S\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Config"  | Out-GridView -PassThru -Title 'Select Configs to Remove' | Remove-Item -Force -Confirm:$False"
    
    Reg Unload HKLM\S
     
  14. geese howard

    geese howard MDL Member

    Aug 18, 2009
    103
    15
    10