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.
@Paul Mercer @abbodi1406 Hello guys, I've one question, is there any official version of Windows IoT N (W10 or W11)? Thanks
I have a Windows 11 Enterprise LTSC license, does anyone know if performing this process retains the Enterprise 2024 LTSC > IoT Enterprise 2024 LTSC license? https://forums.mydigitallife.net/th...-n-ltsc-2024-24h2-26100-x.88280/#post-1833792
@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! ;-)
No https://forums.mydigitallife.net/posts/1806368/ unless you want to remove the whole Experience Pack
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.
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 >'' } }