[DISCUSSION] Windows 11 Enterprise/IoT Enterprise (N) LTSC 2024 (24H2 / 26100.x)

Discussion in 'Windows 11' started by Enthousiast, Apr 26, 2024.

  1. maur0

    maur0 MDL Senior Member

    Aug 3, 2012
    479
    252
    10
    I turned off Defender so I consume less
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. cyberthug

    cyberthug MDL Junior Member

    Jan 9, 2017
    85
    98
    0
    #1222 cyberthug, Jul 22, 2024
    Last edited: Jul 22, 2024
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. rayman95

    rayman95 MDL Senior Member

    Oct 3, 2018
    419
    289
    10
    what about security updates??
     
  4. Jingzin

    Jingzin MDL Addicted

    Nov 10, 2021
    666
    536
    30
    Well been using windows since win 98 not even once I had virus on my pc that's because I didn't open or download infected files. It's easy to check. I would never do online shopping or bank transfers pay bills and such using windows for that I use phone with stock rom. Microsoft security updates are just placebo to make you think you're secure while fact is that all those security updates defender it's just a way for Microsoft to know what apps etc are you installing and soon in the future making you to be not able install apps outside Microsoft store.
     
  5. Shortyportuguese

    Shortyportuguese MDL Addicted

    Apr 3, 2019
    586
    218
    30
    @Paul Mercer @abbodi1406 Hello guys,

    I've one question, is there any official version of Windows IoT N (W10 or W11)?

    Thanks
     
  6. Giacomino1968

    Giacomino1968 MDL Senior Member

    Feb 23, 2023
    252
    131
    10
    Probably with StartAllBack... I have a same...
     
  7. Paul Mercer

    Paul Mercer MDL Guru

    Apr 6, 2018
    2,084
    4,363
    90
    don't think so, here's the list of virtual editions from uup-converter readme

     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. Shortyportuguese

    Shortyportuguese MDL Addicted

    Apr 3, 2019
    586
    218
    30
    I use StartAllBack, and I don't know how to do it...
     
  9. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,941
    450
    #1231 Enthousiast, Jul 22, 2024
    Last edited: Jul 22, 2024
    (OP)
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. GabiDB99

    GabiDB99 MDL Novice

    Jul 17, 2024
    1
    1
    0
  11. Giacomino1968

    Giacomino1968 MDL Senior Member

    Feb 23, 2023
    252
    131
    10
  12. Shortyportuguese

    Shortyportuguese MDL Addicted

    Apr 3, 2019
    586
    218
    30
    @abbodi1406 Do you have any updated script that could remove Windows Backup app/feature?
    Something that I noticed, is that mobility center is not present as shortcut, but the executable file is present.
    PS: I trust your scripts! ;-)
     
  13. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    18,610
    100,025
    340
    No :)
    https://forums.mydigitallife.net/posts/1806368/

    unless you want to remove the whole Experience Pack
     
  14. Jingzin

    Jingzin MDL Addicted

    Nov 10, 2021
    666
    536
    30
  15. Shortyportuguese

    Shortyportuguese MDL Addicted

    Apr 3, 2019
    586
    218
    30
  16. There is no difference between 21H2,22H2,23H2 and even with 24H2 "in terms of gaming performance" with the same games that use different API`S DX9,11,12 and Vulkan.It's nothing but self-deception and wasting your time.
     
  17. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,966
    125,941
    450
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. Jingzin

    Jingzin MDL Addicted

    Nov 10, 2021
    666
    536
    30
    #1240 Jingzin, Jul 22, 2024
    Last edited: Jul 23, 2024
    Here's one way of getting rid of backupapp against 24h2 with latest update. But you will lose search in start menu. Maybe there's someone that could modify it to skip removing search from CBS. Don't know if that's possible.
    Code:
    $remove_appx = @("Client.CBS"); $provisioned = get-appxprovisionedpackage -online; $appxpackage = get-appxpackage -allusers; $eol = @()
    $store = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore'
    $users = @('S-1-5-18'); if (test-path $store) {$users += $((dir $store -ea 0 |where {$_ -like '*S-1-5-21*'}).PSChildName)}
    foreach ($choice in $remove_appx) { if ('' -eq $choice.Trim()) {continue}
    foreach ($appx in $($provisioned |where {$_.PackageName -like "*$choice*"})) {
    $next = !1; foreach ($no in $skip) {if ($appx.PackageName -like "*$no*") {$next = !0}} ; if ($next) {continue}
    $PackageName = $appx.PackageName; $PackageFamilyName = ($appxpackage |where {$_.Name -eq $appx.DisplayName}).PackageFamilyName
    ni "$store\Deprovisioned\$PackageFamilyName" -force >''; $PackageFamilyName
    foreach ($sid in $users) {ni "$store\EndOfLife\$sid\$PackageName" -force >''} ; $eol += $PackageName
    dism /online /set-nonremovableapppolicy /packagefamily:$PackageFamilyName /nonremovable:0 >''
    remove-appxprovisionedpackage -packagename $PackageName -online -allusers >''
    }
    foreach ($appx in $($appxpackage |where {$_.PackageFullName -like "*$choice*"})) {
    $next = !1; foreach ($no in $skip) {if ($appx.PackageFullName -like "*$no*") {$next = !0}} ; if ($next) {continue}
    $PackageFullName = $appx.PackageFullName;
    ni "$store\Deprovisioned\$appx.PackageFamilyName" -force >''; $PackageFullName
    foreach ($sid in $users) {ni "$store\EndOfLife\$sid\$PackageFullName" -force >''} ; $eol += $PackageFullName
    dism /online /set-nonremovableapppolicy /packagefamily:$PackageFamilyName /nonremovable:0 >''
    remove-appxpackage -package $PackageFullName -allusers >''
    }
    }