[
  {
    "path": ".github/FUNDING.yml",
    "content": "# These are supported funding model platforms\n\ngithub: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]\npatreon: # Replace with a single Patreon username\nopen_collective: # Replace with a single Open Collective username\nko_fi: # Replace with a single Ko-fi username\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncommunity_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry\nliberapay: # Replace with a single Liberapay username\nissuehunt: # Replace with a single IssueHunt username\nlfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry\npolar: # Replace with a single Polar username\nbuy_me_a_coffee: zoicware\nthanks_dev: # Replace with a single thanks.dev username\ncustom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help improve the script\ntitle: ''\nlabels: bug\nassignees: ''\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Desktop (open winver to see build):**\n - Windows Build: \n\n**Additional context**\nAdd any other context about the problem here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: enhancement\nassignees: ''\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": "Documentation.md",
    "content": "## Remove Windows AI Documentation\n---\n### OS Support\n\n- The script is created for any version of Windows 10 and Windows 11, Latest Stable Builds\n- For best results use a Pro, Enterprise, Server, or Education version. I can not guarentee 100% removal on Home versions\n  - If you are on a Home version and want to convert to Pro I recommend using massgrave: https://github.com/massgravel/Microsoft-Activation-Scripts\n> [!NOTE]\n> The script will work on Insider builds however, any new AI features added to Insider builds will not be added to the script till they are released in the latest stable build\n>\n\n---\n\n### Code Review\n\n- Given that Microsoft REALLY do not want users removing all AI features the script uses some advanced techniques in PowerShell\n\n#### Run-Trusted Function\n\n- This function leverages an exploit allowing code execution under the `TrustedInstaller.exe` service also known as `Windows Module Installer`\n  - Various PowerShell commands will be ran hidden from the user allowing the script to remove items and packages that are locked via System Privileges\n \n#### Registry Keys\n- I have collected all registry keys regarding AI disablement, including Notepad, Paint, and Edge.\n  - Some of these are Group Policies so if you see any AI feature settings greyed out with the message `Some Settings are Managed by Your Organization` this is why\n \n#### Prevent Reinstall of AI Packages\n- This option will install a custom Windows Update package to make Windows think that there is already a newer version of the AI package installed.\n- Method from Atlas and Revi OS as they make use of these\n\n#### Disable Copilot In IntegratedServicesRegionPolicySet\n- This JSON file contains rules for deciding weither or not certain apps and settings are enabled based on your region\n  - This is mainly used for the EEA [European Economic Area]\n- The script finds all policies related to Copilot and sets the default state to disabled \n\n\n#### Appx Package Removal\n- While the main Copilot package can be removed without any special tricks (Remove-AppxPackage) most AI packages are marked as `Non-Removeable` therefore, the script needs to use multiple exploits to remove these\n - The script creates a sub script in `%TEMP%` to be ran under the above mentioned function `Run-Trusted`\n   - **Exploits Performed**\n     \n     - **End of Life**: one way to trick Windows into thinking a locked package can be removed is to add its Package Family Name to `HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\EndOfLife\\USERSID`\n       - To avoid Windows Update from failing these registry entries are removed once the package is confirmed uninstalled\n     - **Deprovisioning**: this adds the Package Family Name to `HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\Deprovisioned` this will prevent the package from being reinstalled by Windows Update\n     - **Set-NonRemovableAppsPolicy**: this dism command will attempt to remove the `Non-Removeable` property mentioned above and needs to have system privileges to work\n     - **Removing Inbox Apps**: some packages are marked as `InboxApps` this prevents the user from removing them however, when the package is removed from the `HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\InboxApplications` via Run-Trusted Windows will no longer recognize it as an Inbox App\n\n#### Recall Optional Feature\n- On most systems recall will be installed via an optional feature, the script will disable and remove this resulting in the State of: `DisabledWithPayloadRemoved`\n\n#### Hidden AI CBS Packages\n- Windows CBS [Component-Based Servicing] contains windows packages where some can be visible and removable via `get-windowspackage` and `remove-windowspackage` respectfully\n  - Most packages are not visible to the dism command by default so a few tricks are needed to enable this and allow for removal\n- The script will search for packages containing various AI keywords in `HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Component Based Servicing\\Packages`\n  - To enable visualzation and allow for removal the `Visibility` key needs to be set to 1 and the subkeys `Owners` and `Updates` need to be removed\n \n#### Removing AI Files and Folders\n- The script will forcibly remove the Appx package install locations, remove Machine Learning Dlls, and hidden Copilot installers.\n- Additionally, various other reg keys and files are removed to ensure a proper cleanup of AI features\n\n#### Disable Rewrite In Notepad\n- There is two methods of doing this, the first way is loading the settings.dat file from notepads appdata directory into registry and setting the `RewriteEnabled` key to false\n- Later on Microsoft added a much simpler policy to disable this, the script does both methods to be sure its disabled \n\n#### Remove Recall Scheduled Task\n- This will create another sub script in `%TEMP%` in order to run with system privileges\n  - The script will agressively remove Recall's scheduled tasks by removing the files as well as the registry entries\n \n#### Install Classic Apps\n- This will allow you to replace/install the classic version of notepad, paint, photo viewer, and photos legacy (uwp store app)\n  - Mspaint and Snipping Tool files found in the repo are extracted from Windows Server 2025 ISO as the desktop experience edition of server uses these classic apps\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2024 zoicware\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "OtherAIFeatures.md",
    "content": "## Other AI Features in Windows\r\n\r\n- the following features cannot be disabled or removed via a script (unless further developments prove otherwise)\r\n\r\n> [!NOTE]\r\n> Some of these are Copilot+ PC features and can possibly be disabled via the script however, I do not have one of these systems to test with\r\n> \r\n\r\n### OneDrive AI \r\n\r\nIf you use OneDrive (not recommended) there is an AI feature to scan images for facial recognition, you can find this setting by going to `Settings > Privacy and permissions > Features > People Section`\r\n\r\n<img width=\"540\" height=\"380\" alt=\"image\" src=\"https://github.com/user-attachments/assets/5be01139-ded4-45f6-9692-c287d562d6ba\" />\r\n\r\n\r\n<img width=\"632\" height=\"331\" alt=\"image\" src=\"https://github.com/user-attachments/assets/815f48f0-155f-4c57-a2e0-9fa879128205\" />\r\n\r\n\r\n\r\n### Windows Studio Effects\r\n\r\n>[!NOTE]\r\n> Recently, I added a method to disable AI voice effects for the mic\r\n>\r\n> Check to see if this is working on your system\r\n>\r\n\r\nIf you have a Copilot+ PC (a CPU with a NPU) then you will have access to Windows Studio Effects.\r\n\r\nThese effects are AI powered features for the camera and mic.\r\n\r\n- Make sure to check your camera and mic for these effects and disable:\r\n\r\n<img width=\"648\" height=\"568\" alt=\"image\" src=\"https://github.com/user-attachments/assets/7ba18488-7133-4926-b6fb-543ca737e27d\" />\r\n\r\n\r\nHere is a good guide from elevenfourms: https://www.elevenforum.com/t/enable-or-disable-windows-studio-effects-for-camera-in-windows-11.39828/\r\n\r\n\r\n\r\n\r\n"
  },
  {
    "path": "README.md",
    "content": "# Remove Windows Ai\r\n## Why?\r\nThe current 25H2 build of Windows 11 and future builds will include increasingly more AI features and components. This script aims to remove ALL of these features to improve user experience, privacy and security. \r\n\r\n<img width=\"150\" alt=\"AI-Explorer-icon\" src=\"https://github.com/zoicware/RemoveWindowsAI/assets/118035521/33efb033-c935-416c-977d-777bb69a3737\">\r\n\r\n\r\n----------------------\r\n\r\n\r\n\r\n### Script Features\r\n - **Disable Registry Keys** \r\n   - Disable Copilot\r\n   - Disable Recall\r\n   - Disable Input Insights and typing data harvesting \r\n   - Copilot in Edge\r\n   - Image Creator in Paint\r\n   - Remove AI Fabric Service\r\n   - Disable AI Actions\r\n   - Disable AI in Paint\r\n   - Disable Voice Access\r\n   - Disable AI Voice Effects\r\n   - Disable AI in Settings Search\r\n   - Disable Gaming Copilot\r\n   - Disable Copilot in All Office Apps\r\n - **Prevent Reinstall of AI Packages**\r\n   - Installs custom Windows Update package to prevent reinstall of AI packages in the CBS (Component-Based Servicing) store \r\n - **Disable Copilot policies** \r\n   - Disables policies related to Copilot and Recall in IntegratedServicesRegionPolicySet.json\r\n - **Remove AI Appx Packages**\r\n   - Removes all AI appx packages including `Nonremovable` packages and WindowsWorkload \r\n - **Remove Recall Optional Feature**\r\n - **Remove AI Packages in CBS**\r\n   - This will remove hidden and locked AI packages in the CBS (Component-Based Servicing) store \r\n - **Remove AI Files**\r\n   - This will do a full system cleanup removing all remaining AI installers, registry keys, and package files \r\n - **Hide AI Components**\r\n   - This will hide the settings page `AI Components` \r\n - **Disable Rewrite AI Feature in Notepad**\r\n - **Remove Recall Tasks**\r\n   - Forcibly removes all instances of Recall's scheduled tasks\r\n  - **Update Cleanup Check**\r\n     - Creates scheduled task to check if Windows has been updated and if it has, newly installed AI features will be removed\r\n\r\n - #### Install Classic Apps\r\n   - These options will allow you to replace the modern AI infested apps with their classic version\r\n   - **Options:** Replace Notepad, Paint, Snipping Tool, Photo Viewer, and Install Photos Legacy \r\n \r\n#### Manual AI Disabling\r\n- Unfortunately, not all features and settings can be disabled via a script. This guide will show additional AI features to disable.\r\n> **[Disable Other AI Features](https://github.com/zoicware/RemoveWindowsAI/blob/main/OtherAIFeatures.md)**\r\n  \r\n### Read the Script Docs Here\r\n  > **[Documentation](https://github.com/zoicware/RemoveWindowsAI/blob/main/Documentation.md)**\r\n\r\n  > [!WARNING]\r\n  > Some third party anti-viruses will falsely detect the script as malicious, obviously this is a false positive and the anti-virus will need to be temporarily disabled or set the script as an exclusion.\r\n  >\r\n  > Due to the nature of making advanced changes to the system many debloat tools/scripts will be falsely detected as malware... if you are unsure about the script I always recommend testing any software in a virtual machine first\r\n\r\n---\r\n\r\n\r\n ### How to Use\r\n \r\n #### Run From Powershell Console as Administrator\r\n ---\r\n\r\n > [!WARNING]\r\n > Running the script with PowerShell 7 is no longer supported and it WILL cause issues, to avoid this ensure you are running Windows PowerShell (5.1)\r\n >\r\n\r\n ### Launch with UI\r\n ```PowerShell\r\n & ([scriptblock]::Create((irm \"https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1\")))\r\n ```\r\n ### Compact Command:\r\n ##### Link shortened using open source link shortener: https://kutt.it/\r\n ```PowerShell\r\n & ([scriptblock]::Create((irm 'https://kutt.it/RWAI')))\r\n ```\r\n\r\n\r\n\r\n <details>  \r\n  <summary>Click to View UI</summary>\r\n  <img width=\"586\" height=\"693\" alt=\"Capture2\" src=\"https://github.com/user-attachments/assets/fa105ba5-c1dc-447c-ae2e-7ee373291042\" />\r\n  <img width=\"586\" height=\"693\" alt=\"Capture2\" src=\"https://github.com/user-attachments/assets/8a446a23-7c47-468e-856b-1e783205c511\" />\r\n</details>  \r\n\r\n&nbsp;\r\n\r\n### Command Line Options\r\n\r\n**Run in Non-Interactive Mode with All Options**\r\n ```PowerShell\r\n & ([scriptblock]::Create((irm \"https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1\"))) -nonInteractive -AllOptions\r\n ```\r\n\r\n--- \r\n\r\n**Run with Specific Options Example**\r\n ```PowerShell\r\n & ([scriptblock]::Create((irm \"https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1\"))) -nonInteractive -Options DisableRegKeys,RemoveAppxPackages,DisableCopilotPolicies \r\n ```\r\n\r\n**All Possible Options:**\r\n```\r\nDisableRegKeys          \r\nPreventAIPackageReinstall     \r\nDisableCopilotPolicies       \r\nRemoveAppxPackages        \r\nRemoveRecallFeature \r\nRemoveCBSPackages         \r\nRemoveAIFiles               \r\nHideAIComponents            \r\nDisableRewrite      \r\nRemoveRecallTasks\r\nUpdateCleanupCheck\r\n```\r\n\r\n**Run Install Classic Apps**\r\n ```PowerShell\r\n & ([scriptblock]::Create((irm \"https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1\"))) -nonInteractive -InstallClassicApps photoviewer,mspaint,snippingtool,notepad  \r\n ```\r\n\r\n**All Possible Options:**\r\n```\r\nphotoviewer          \r\nmspaint     \r\nsnippingtool       \r\nnotepad        \r\nphotoslegacy \r\n```\r\n\r\n\r\n**Run with Backup Mode Enabled**\r\n\r\n> [!NOTE]\r\n> Backup Mode needs to be enabled to be able to fully revert\r\n> \r\n ```PowerShell\r\n & ([scriptblock]::Create((irm \"https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1\"))) -nonInteractive -backupMode -AllOptions\r\n ```\r\n\r\n---\r\n\r\n**Revert Changes**\r\n\r\n ```PowerShell\r\n & ([scriptblock]::Create((irm \"https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1\"))) -nonInteractive -revertMode -AllOptions\r\n ```\r\n\r\n---\r\n\r\n### Updates\r\n\r\nGiven that Microsoft are continually updating and adding new AI features this script will attempt to stay updated for the newest stable build.\r\n\r\nYou can view the newest updates to the script here:\r\nhttps://github.com/zoicware/RemoveWindowsAI/commits/main/\r\n\r\n > [!NOTE]  \r\n> Any feature added to an Insider build will not be added to this script till it's added to the latest stable release\r\n\r\n \r\n> [!TIP]\r\n> **Submitting an AI Feature**\r\n>\r\n> If you find an AI feature or registry key that is not currently removed or disabled by the script submit an issue with as much information as possible and I will add it to the script.\r\n\r\n\r\n### Donation \r\n\r\nIf you would like to support my work consider donating :)\r\n\r\n[![\"Buy Me A Coffee\"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/zoicware)\r\n\r\n\r\n### Join The Discord\r\n\r\n[![Discord](https://discordapp.com/api/guilds/1173717737017716777/widget.png?style=banner1)](https://discord.gg/VsC7XS5vgA)\r\n\r\n\r\n### YT Guide\r\n#### [How to Remove ALL Windows AI Features](https://youtu.be/j5_eEBWGHFw)\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n"
  },
  {
    "path": "RemoveAI-UpdateCleanup.ps1",
    "content": "function Run-Trusted([String]$command, $psversion) {\r\n\r\n    function RunAsTI {\r\n        param(\r\n            [Parameter(Position = 0)]$cmd, \r\n            [Parameter(ValueFromRemainingArguments)]$xargs\r\n        )\r\n\r\n        $Ex = $xargs -contains '-Exit'\r\n        $xargs = $xargs | Where-Object { $_ -ne '-Exit' }\r\n        $wi = [Security.Principal.WindowsIdentity]::GetCurrent()\r\n        $id = 'RunAsTI'\r\n        $key = \"Registry::HKU\\$($wi.User.Value)\\Volatile Environment\"\r\n        $arg = ''\r\n        $rs = $false\r\n        $csf = Get-PSCallStack | Where-Object { $_.ScriptName -and $_.ScriptName -like '*.ps1' } | Select-Object -l 1\r\n        $cs = if ($csf) { $csf.ScriptName } else { $null }\r\n\r\n        if (!$cmd) {\r\n            if ((whoami /groups) -like '*S-1-16-16384*') { return }\r\n\r\n            $rs = $true\r\n            $arr = [Environment]::GetCommandLineArgs()\r\n            $i = [array]::IndexOf($arr, '-File')\r\n            if ($i -lt 0) { \r\n                $i = [array]::IndexOf($arr, '-f') \r\n            }\r\n\r\n            if ($i -ge 0 -and ($i + 1) -lt $arr.Count) { \r\n                if (!$cs) { \r\n                    $cs = $arr[$i + 1] \r\n                } \r\n\r\n                if (($i + 2) -lt $arr.Count) { \r\n                    $arg = ($arr[($i + 2)..($arr.Count - 1)] | ForEach-Object { \"`\"$($_-replace'\"','\"\"')`\"\" }) -join ' ' \r\n                } \r\n            }\r\n            else {\r\n                $cp = if ($csf) { $csf.InvocationInfo.BoundParameters } else { Get-Variable PSBoundParameters -sc 1 -va -ea 0 } \r\n\r\n                $ca = if ($csf) { $csf.InvocationInfo.UnboundArguments } else { Get-Variable args -sc 1 -va -ea 0 }\r\n\r\n                if ($null -eq $cp) { \r\n                    $cp = @{} \r\n                }\r\n                if ($null -eq $ca) { \r\n                    $ca = @() \r\n                }\r\n\r\n                $arg = (@($cp.GetEnumerator() | ForEach-Object { if (($_.Value -is [switch] -and $_.Value.IsPresent) -or ($_.Value -eq $true)) { \"-$($_.Key)\" }elseif ($_.Value -isnot [switch] -and $_.Value -ne $true -and $_.Value -ne $false) { \"-$($_.Key) `\"$($_.Value-replace'\"','\"\"')`\"\" } }) + @($ca | ForEach-Object { \"`\"$($_-replace'\"','\"\"')`\"\" })) -join ' '\r\n            }\r\n\r\n            if ($cs) { \r\n                $cmd = 'powershell'\r\n                $arg = \"-nop -ep bypass -f `\"$cs`\" $arg\" \r\n            }\r\n            else { \r\n                $cmd = 'powershell'\r\n                $arg = '-nop -ep bypass' \r\n            }\r\n        }\r\n        elseif ($xargs) { \r\n            $arg = $xargs -join ' ' \r\n        } \r\n\r\n        $V = ''\r\n        'cmd', 'arg', 'id', 'key' | ForEach-Object { $V += \"`n`$$_='$($(Get-Variable $_ -val)-replace\"'\",\"''\")';\" }\r\n\r\n        Set-ItemProperty $key $id $($V, @'\r\n $I=[int32];$M=$I.module.gettype(\"System.Runtime.Interop`Services.Mar`shal\");$P=$I.module.gettype(\"System.Int`Ptr\");$S=[string]\r\n $D=@();$T=@();$DM=[AppDomain]::CurrentDomain.\"DefineDynami`cAssembly\"(1,1).\"DefineDynami`cModule\"(1);$Z=[uintptr]::size\r\n 0..5|%{$D+=$DM.\"Defin`eType\"(\"AveYo_$_\",1179913,[ValueType])};$D+=[uintptr];4..6|%{$D+=$D[$_].\"MakeByR`efType\"()}\r\n $F='kernel','advapi','advapi',($S,$S,$I,$I,$I,$I,$I,$S,$D[7],$D[8]),([uintptr],$S,$I,$I,$D[9]),([uintptr],$S,$I,$I,[byte[]],$I)\r\n 0..2|%{$9=$D[0].\"DefinePInvok`eMethod\"(('CreateProcess','RegOpenKeyEx','RegSetValueEx')[$_],$F[$_]+'32',8214,1,$S,$F[$_+3],1,4)}\r\n $DF=($P,$I,$P),($I,$I,$I,$I,$P,$D[1]),($I,$S,$S,$S,$I,$I,$I,$I,$I,$I,$I,$I,[int16],[int16],$P,$P,$P,$P),($D[3],$P),($P,$P,$I,$I)\r\n 1..5|%{$k=$_;$n=1;$DF[$_-1]|%{$9=$D[$k].\"Defin`eField\"('f'+$n++,$_,6)}};0..5|%{$T+=$D[$_].\"Creat`eType\"()}\r\n 0..5|%{nv \"A$_\" ([Activator]::CreateInstance($T[$_])) -fo};function F($1,$2){$T[0].\"G`etMethod\"($1).invoke(0,$2)}\r\n $TI=(whoami /groups)-like'*S-1-16-16384*';$As=0\r\n if(!$TI){'TrustedInstaller','lsass','winlogon'|%{if(!$As){$9=sc.exe start $_;$As=@(gps -name $_ -ea 0|%{$_})[0]}}\r\n function M($1,$2,$3){$M.\"G`etMethod\"($1,[type[]]$2).invoke(0,$3)};$H=@();$Z,(4*$Z+16)|%{$H+=M \"AllocHG`lobal\" $I $_}\r\n M \"WriteInt`Ptr\" ($P,$P) ($H[0],$As.Handle);$A1.f1=131072;$A1.f2=$Z;$A1.f3=$H[0];$A2.f1=1;$A2.f2=1;$A2.f3=1;$A2.f4=1\r\n $A2.f6=$A1;$A3.f1=10*$Z+32;$A4.f1=$A3;$A4.f2=$H[1];M \"StructureTo`Ptr\" ($D[2],$P,[boolean]) (($A2-as$D[2]),$A4.f2,$false)\r\n $Run=@($null,\"powershell -win hidden -nop -c iex `$env:R; # $id\",0,0,0,0x0E080600,0,$null,($A4-as$T[4]),($A5-as$T[5]))\r\n F 'CreateProcess' $Run;return};$env:R='';rp $key $id -force;$priv=[diagnostics.process].\"GetM`ember\"('SetPrivilege',42)[0]\r\n 'SeSecurityPrivilege','SeTakeOwnershipPrivilege','SeBackupPrivilege','SeRestorePrivilege'|%{$priv.Invoke($null,@(\"$_\",2))}\r\n $HKU=[uintptr][uint32]2147483651;$NT='S-1-5-18';$reg=($HKU,$NT,8,2,($HKU-as$D[9]));F 'RegOpenKeyEx' $reg;$LNK=$reg[4]\r\n function L($1,$2,$3){sp 'HKLM\\Software\\Classes\\AppID\\{CDCBCFCA-3CDC-436f-A4E2-0E02075250C2}' 'RunAs' $3\r\n  $b=[Text.Encoding]::Unicode.GetBytes(\"\\Registry\\User\\$1\");F 'RegSetValueEx' @($2,'SymbolicLinkValue',0,6,[byte[]]$b,$b.Length)}\r\n L ($key-split'\\\\')[1] $LNK '';$R=[diagnostics.process]::start($cmd,$arg);if($R){$R.WaitForExit()};L '.Default' $LNK 'Interactive User'\r\n'@) -type 7\r\n\r\n        $a = \"-win hidden -nop -c `n$V `$env:R=(gi `$key -ea 0).getvalue(`$id)-join''; iex `$env:R\"\r\n        if ($Ex) { \r\n            $wshell = New-Object -ComObject WScript.Shell\r\n            $exe = 'powershell.exe'\r\n            $wshell.Run(\"$exe $a\", 0, $false) >$null\r\n        }\r\n        else { \r\n            $wshell = New-Object -ComObject WScript.Shell\r\n            $exe = 'powershell.exe'\r\n            $wshell.Run(\"$exe $a\", 0, $true) >$null # true to -wait\r\n        } \r\n\r\n        # if ($rs -or $Ex) { exit }\r\n    } \r\n    # lean & mean snippet by AveYo; refined by RapidOS [haslate]\r\n    # zoicware change log:\r\n    # changed start-process to wshell run to avoid the first powershell instance window from flashing\r\n\r\n\r\n    $psexe = 'PowerShell.exe'\r\n\r\n    #convert command to base64 to avoid errors with spaces\r\n    $bytes = [System.Text.Encoding]::Unicode.GetBytes($command)\r\n    $base64Command = [Convert]::ToBase64String($bytes)\r\n\r\n\r\n    try {\r\n        Stop-Service -Name TrustedInstaller -Force -ErrorAction Stop -WarningAction Stop\r\n    }\r\n    catch {\r\n        taskkill /im trustedinstaller.exe /f >$null\r\n    }\r\n    \r\n    # trusted installer proc not found (128) or access denied (1)\r\n    if ($LASTEXITCODE -eq 128 -or $LASTEXITCODE -eq 1) {\r\n        RunAsTI $psexe \"-win hidden -encodedcommand $base64Command\"\r\n        Start-Sleep 1\r\n        return \r\n    }\r\n\r\n    #get bin path to revert later\r\n    $service = Get-CimInstance -ClassName Win32_Service -Filter \"Name='TrustedInstaller'\"\r\n    $DefaultBinPath = $service.PathName\r\n    #make sure path is valid and the correct location\r\n    $trustedInstallerPath = \"$env:SystemRoot\\servicing\\TrustedInstaller.exe\"\r\n    if ($DefaultBinPath -ne $trustedInstallerPath) {\r\n        $DefaultBinPath = $trustedInstallerPath\r\n    }\r\n    #change bin to command\r\n    sc.exe config TrustedInstaller binPath= \"cmd.exe /c $psexe -encodedcommand $base64Command\" | Out-Null\r\n    #run the command\r\n    sc.exe start TrustedInstaller | Out-Null\r\n    #set bin back to default\r\n    sc.exe config TrustedInstaller binpath= \"`\"$DefaultBinPath`\"\" | Out-Null\r\n    try {\r\n        Stop-Service -Name TrustedInstaller -Force -ErrorAction Stop -WarningAction Stop\r\n    }\r\n    catch {\r\n        taskkill /im trustedinstaller.exe /f >$null\r\n    }\r\n    \r\n}\r\n\r\n\r\n$Global:tempDir = ([System.IO.Path]::GetTempPath())\r\n$key = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey('SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')\r\n$OSBuild = \"$($key.GetValue('CurrentBuild')).$($key.GetValue('UBR'))\"\r\n$key.Close()\r\ntry {\r\n    $key2 = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey('SOFTWARE\\RemoveWindowsAI')\r\n    $CurrentCachedBuild = \"$($key2.GetValue('CachedBuild'))\"\r\n    $key2.Close()\r\n}\r\ncatch {\r\n    $CurrentCachedBuild = $null\r\n}\r\n$regValName = 'CachedBuild'\r\nif ($CurrentCachedBuild -ne $OSBuild) {\r\n    #update has occured because current cached build is not equal to current reported build\r\n    #updated cached build\r\n    Reg.exe add 'HKLM\\SOFTWARE\\RemoveWindowsAI' /v $regValName /d \"$OSBuild\" /t REG_SZ /f >$null\r\n\r\n    #run through checks for reinstalled ai\r\n    #===================================================================================================\r\n    $code = @'\r\n$aipackages = @(\r\n    'MicrosoftWindows.Client.AIX'\r\n    'MicrosoftWindows.Client.CoPilot'\r\n    'Microsoft.Windows.Ai.Copilot.Provider'\r\n    'Microsoft.Copilot'\r\n    'Microsoft.MicrosoftOfficeHub'\r\n    'MicrosoftWindows.Client.CoreAI'\r\n    'Microsoft.Edge.GameAssist'\r\n    'Microsoft.Office.ActionsServer'\r\n    'aimgr'\r\n    'Microsoft.WritingAssistant'\r\n    'MicrosoftWindows.*.Voiess'\r\n    'MicrosoftWindows.*.Speion'\r\n    'MicrosoftWindows.*.Livtop'\r\n    'MicrosoftWindows.*.InpApp'\r\n    'MicrosoftWindows.*.Filons'\r\n    'WindowsWorkload.Data.Analysis.Stx.*'\r\n    'WindowsWorkload.Manager.*'\r\n    'WindowsWorkload.PSOnnxRuntime.Stx.*'\r\n    'WindowsWorkload.PSTokenizer.Stx.*'\r\n    'WindowsWorkload.QueryBlockList.*'\r\n    'WindowsWorkload.QueryProcessor.Data.*'\r\n    'WindowsWorkload.QueryProcessor.Stx.*'\r\n    'WindowsWorkload.SemanticText.Data.*'\r\n    'WindowsWorkload.SemanticText.Stx.*'\r\n    'WindowsWorkload.Data.ContentExtraction.Stx.*'\r\n    'WindowsWorkload.ScrRegDetection.Data.*'\r\n    'WindowsWorkload.ScrRegDetection.Stx.*'\r\n    'WindowsWorkload.TextRecognition.Stx.*'\r\n    'WindowsWorkload.Data.ImageSearch.Stx.*'\r\n    'WindowsWorkload.ImageContentModeration.*'\r\n    'WindowsWorkload.ImageContentModeration.Data.*'\r\n    'WindowsWorkload.ImageSearch.Data.*'\r\n    'WindowsWorkload.ImageSearch.Stx.*'\r\n    'WindowsWorkload.ImageTextSearch.Data.*'\r\n    'WindowsWorkload.PSOnnxRuntime.Stx.*'\r\n    'WindowsWorkload.PSTokenizerShared.Data.*'\r\n    'WindowsWorkload.PSTokenizerShared.Stx.*'\r\n    'WindowsWorkload.ImageTextSearch.Stx.*'\r\n)\r\n\r\n$provisioned = get-appxprovisionedpackage -online \r\n$appxpackage = get-appxpackage -allusers\r\n$store = 'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore'\r\n$users = @('S-1-5-18'); if (test-path $store) { $users += $((Get-ChildItem $store -ea 0 | Where-Object { $_ -like '*S-1-5-21*' }).PSChildName) }\r\n\r\n#use eol trick to uninstall some locked packages\r\nforeach ($choice in $aipackages) {\r\n    foreach ($appx in $($provisioned | Where-Object { $_.PackageName -like \"*$choice*\" })) {\r\n\r\n        $PackageName = $appx.PackageName \r\n        $PackageFamilyName = ($appxpackage | Where-Object { $_.Name -eq $appx.DisplayName }).PackageFamilyName\r\n        New-Item \"$store\\Deprovisioned\\$PackageFamilyName\" -force\r\n     \r\n        Set-NonRemovableAppsPolicy -Online -PackageFamilyName $PackageFamilyName -NonRemovable 0\r\n        remove-appxprovisionedpackage -packagename $PackageName -online -allusers\r\n    }\r\n    foreach ($appx in $($appxpackage | Where-Object { $_.PackageFullName -like \"*$choice*\" })) {\r\n\r\n        $PackageFullName = $appx.PackageFullName\r\n        $PackageFamilyName = $appx.PackageFamilyName\r\n        New-Item \"$store\\Deprovisioned\\$PackageFamilyName\" -force\r\n        Set-NonRemovableAppsPolicy -Online -PackageFamilyName $PackageFamilyName -NonRemovable 0\r\n       \r\n        #remove inbox apps\r\n        $inboxApp = \"$store\\InboxApplications\\$PackageFullName\"\r\n        Remove-Item -Path $inboxApp -Force\r\n\r\n        #get all installed user sids for package due to not all showing up in reg\r\n        foreach ($user in $appx.PackageUserInformation) { \r\n            $sid = $user.UserSecurityID.SID\r\n            New-Item \"$store\\EndOfLife\\$sid\\$PackageFullName\" -force -verbose\r\n            remove-appxpackage -package $PackageFullName -User $sid \r\n        } \r\n        remove-appxpackage -package $PackageFullName -allusers\r\n\r\n        foreach ($sid in $users) { \r\n            New-Item \"$store\\EndOfLife\\$sid\\$PackageFullName\" -force\r\n        }  \r\n    }\r\n}\r\n'@\r\n    $packageRemovalPath = \"$($tempDir)aiPackageRemoval.ps1\"\r\n    if (!(test-path $packageRemovalPath)) {\r\n        New-Item $packageRemovalPath -Force | Out-Null\r\n    }\r\n\r\n    Set-Content -Path $packageRemovalPath -Value $code -Force \r\n    #allow removal script to run\r\n    try {\r\n        Set-ExecutionPolicy Unrestricted -Force -ErrorAction Stop\r\n    }\r\n    catch {\r\n        #user has set powershell execution policy via group policy or via settings, to change it we need to update the registry \r\n        try {\r\n            $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' -Name 'ExecutionPolicy' -ErrorAction Stop\r\n            Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'EnableScripts' /t REG_DWORD /d '1' /f >$null\r\n            Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n            $Global:executionPolicyUser = $false\r\n            $Global:executionPolicyMachine = $false\r\n            $Global:executionPolicyWow64 = $false\r\n            $Global:executionPolicyUserPol = $false\r\n        }\r\n        catch {\r\n            try {\r\n                $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKCU:\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' -Name 'ExecutionPolicy' -ErrorAction Stop\r\n                Reg.exe add 'HKCU\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n                $Global:executionPolicyUser = $true\r\n                $Global:executionPolicyMachine = $false\r\n                $Global:executionPolicyWow64 = $false\r\n                $Global:executionPolicyUserPol = $false\r\n            }\r\n            catch {\r\n                try {\r\n                    $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKLM:\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' -Name 'ExecutionPolicy' -ErrorAction Stop\r\n                    Reg.exe add 'HKLM\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n                    $Global:executionPolicyUser = $false\r\n                    $Global:executionPolicyMachine = $true\r\n                    $Global:executionPolicyWow64 = $false\r\n                    $Global:executionPolicyUserPol = $false\r\n                }\r\n                catch {\r\n                    try {\r\n                        $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKLM:\\SOFTWARE\\Wow6432Node\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' -Name 'ExecutionPolicy' -ErrorAction Stop\r\n                        Reg.exe add 'HKLM\\SOFTWARE\\Wow6432Node\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n                        $Global:executionPolicyUser = $false\r\n                        $Global:executionPolicyMachine = $false\r\n                        $Global:executionPolicyWow64 = $true\r\n                        $Global:executionPolicyUserPol = $false\r\n\r\n                    }\r\n                    catch {\r\n                        $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' -Name 'ExecutionPolicy' \r\n                        Reg.exe add 'HKCU\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'EnableScripts' /t REG_DWORD /d '1' /f >$null\r\n                        Reg.exe add 'HKCU\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n                        $Global:executionPolicyUser = $false\r\n                        $Global:executionPolicyMachine = $false\r\n                        $Global:executionPolicyWow64 = $false\r\n                        $Global:executionPolicyUserPol = $true\r\n                    }\r\n                        \r\n\r\n                }\r\n                    \r\n            }\r\n               \r\n        }\r\n            \r\n           \r\n    }\r\n\r\n    $command = \"&`\"$($tempDir)aiPackageRemoval.ps1`\"\"\r\n    Run-Trusted -command $command\r\n\r\n    #needed for separate powershell sessions\r\n    $aipackages = @(\r\n        # 'MicrosoftWindows.Client.Photon'\r\n        'MicrosoftWindows.Client.AIX'\r\n        'MicrosoftWindows.Client.CoPilot'\r\n        'Microsoft.Windows.Ai.Copilot.Provider'\r\n        'Microsoft.Copilot'\r\n        'Microsoft.MicrosoftOfficeHub'\r\n        'MicrosoftWindows.Client.CoreAI'\r\n        'Microsoft.Edge.GameAssist'\r\n        'Microsoft.Office.ActionsServer'\r\n        'aimgr'\r\n        'Microsoft.WritingAssistant'\r\n        #ai component packages installed on copilot+ pcs\r\n        'MicrosoftWindows.*.Voiess'\r\n        'MicrosoftWindows.*.Speion'\r\n        'MicrosoftWindows.*.Livtop'\r\n        'MicrosoftWindows.*.InpApp'\r\n        'MicrosoftWindows.*.Filons'\r\n        'WindowsWorkload.Data.Analysis.Stx.*'\r\n        'WindowsWorkload.Manager.*'\r\n        'WindowsWorkload.PSOnnxRuntime.Stx.*'\r\n        'WindowsWorkload.PSTokenizer.Stx.*'\r\n        'WindowsWorkload.QueryBlockList.*'\r\n        'WindowsWorkload.QueryProcessor.Data.*'\r\n        'WindowsWorkload.QueryProcessor.Stx.*'\r\n        'WindowsWorkload.SemanticText.Data.*'\r\n        'WindowsWorkload.SemanticText.Stx.*'\r\n        'WindowsWorkload.Data.ContentExtraction.Stx.*'\r\n        'WindowsWorkload.ScrRegDetection.Data.*'\r\n        'WindowsWorkload.ScrRegDetection.Stx.*'\r\n        'WindowsWorkload.TextRecognition.Stx.*'\r\n        'WindowsWorkload.Data.ImageSearch.Stx.*'\r\n        'WindowsWorkload.ImageContentModeration.*'\r\n        'WindowsWorkload.ImageContentModeration.Data.*'\r\n        'WindowsWorkload.ImageSearch.Data.*'\r\n        'WindowsWorkload.ImageSearch.Stx.*'\r\n        'WindowsWorkload.ImageTextSearch.Data.*'\r\n        'WindowsWorkload.PSOnnxRuntime.Stx.*'\r\n        'WindowsWorkload.PSTokenizerShared.Data.*'\r\n        'WindowsWorkload.PSTokenizerShared.Stx.*'\r\n        'WindowsWorkload.ImageTextSearch.Stx.*'\r\n    )\r\n\r\n    #check packages removal\r\n    #exit loop after 10 tries\r\n    $attempts = 0\r\n    do {\r\n        Start-Sleep 1\r\n        $packages = get-appxpackage -AllUsers | Where-Object { $aipackages -contains $_.Name }\r\n        if ($packages) {\r\n            $attempts++\r\n            $command = \"&`\"$($tempDir)aiPackageRemoval.ps1`\"\"\r\n            Run-Trusted -command $command\r\n        }\r\n    \r\n    }while ($packages -and $attempts -lt 10)\r\n\r\n\r\n    #add registry keys even tho im pretty sure they dont get changed \r\n    #add maybe some file cleanup\r\n\r\n\r\n\r\n\r\n    #set executionpolicy back to what it was\r\n    if ($ogExecutionPolicy) {\r\n        if ($Global:executionPolicyUser) {\r\n            Reg.exe add 'HKCU\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n        }\r\n        elseif ($Global:executionPolicyMachine) {\r\n            Reg.exe add 'HKLM\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n        }\r\n        elseif ($Global:executionPolicyWow64) {\r\n            Reg.exe add 'HKLM\\SOFTWARE\\Wow6432Node\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n        }\r\n        elseif ($Global:executionPolicyUserPol) {\r\n            Reg.exe add 'HKCU\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n        }\r\n        else {\r\n            Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n        }\r\n    }\r\n}"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_16bf9f5ddcdcc858358ce8a2a9f69f935b0e2c72_31bf3856ad364e35_38655.38527.65535.65535_none_9dea49e759204384.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"16bf9f5ddcdcc858358ce8a2a9f69f935b0e2c72\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"Microsoft-Copilot-Deployment-LanguagePack\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_1ac4efa52cc987e34206a4b499ef297c16f443f9_31bf3856ad364e35_38655.38527.65535.65535_none_d12a7b37e1ce0c63.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"1ac4efa52cc987e34206a4b499ef297c16f443f9\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-CoreAI\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_3e5f6992f365ae98da785153cb853cdd2b8d334d_31bf3856ad364e35_38655.38527.65535.65535_none_21a198b98b0eb5cb.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"3e5f6992f365ae98da785153cb853cdd2b8d334d\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-CoreAI-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_690413e3dcead26f87b3989953c5ed27bb12eb95_31bf3856ad364e35_38655.38527.65535.65535_none_2f5fa210a2da208e.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"690413e3dcead26f87b3989953c5ed27bb12eb95\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"Microsoft-Windows-SystemSettings-SettingsHandlers-Copilot\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_761f3629e488278caa4c7585c950f520404712cf_31bf3856ad364e35_38655.38527.65535.65535_none_fab6052e6768b003.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"761f3629e488278caa4c7585c950f520404712cf\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-AIX-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_a1b65e8b129c7dfee79b5234097d94812770c52a_31bf3856ad364e35_38655.38527.65535.65535_none_427e504fcbfba8f2.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"a1b65e8b129c7dfee79b5234097d94812770c52a\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"Microsoft-Copilot\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_bf9f7f39101e056d32e46992b64d45da3774921c_31bf3856ad364e35_38655.38527.65535.65535_none_1b7aa6c634649ec5.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"bf9f7f39101e056d32e46992b64d45da3774921c\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-AIX\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_c93ca6c2cd59575fe45bad46f6152c80cc5ab492_31bf3856ad364e35_38655.38527.65535.65535_none_048f8255f6dd3270.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"c93ca6c2cd59575fe45bad46f6152c80cc5ab492\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-Recall\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_d18d700de06fc98ae558e2a73994193f028d6209_31bf3856ad364e35_38655.38527.65535.65535_none_99bf2484525af2f0.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"d18d700de06fc98ae558e2a73994193f028d6209\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"Microsoft-Copilot-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_microsoft-copilot-d..oyment-languagepack_31bf3856ad364e35_38655.38527.65535.65535_none_0fea620d27c4484e.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"Microsoft-Copilot-Deployment-LanguagePack\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_microsoft-copilot-deployment_31bf3856ad364e35_38655.38527.65535.65535_none_26df2268220c2a52.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"Microsoft-Copilot-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_microsoft-copilot_31bf3856ad364e35_38655.38527.65535.65535_none_58a35da8a335eb56.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"Microsoft-Copilot\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_microsoft-windows-s..ngshandlers-copilot_31bf3856ad364e35_38655.38527.65535.65535_none_f88b80f068ad03a6.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"Microsoft-Windows-SystemSettings-SettingsHandlers-Copilot\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_userexperience-aix-deployment_31bf3856ad364e35_38655.38527.65535.65535_none_cdba7e3535b8898d.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-AIX-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_userexperience-aix_31bf3856ad364e35_38655.38527.65535.65535_none_293807153aa35c79.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-AIX\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_userexperience-coreai-deployment_31bf3856ad364e35_38655.38527.65535.65535_none_494247c8d14488ba.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-CoreAI-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_userexperience-coreai_31bf3856ad364e35_38655.38527.65535.65535_none_851c3d913b2d96b4.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-CoreAI\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/amd64/amd64_userexperience-recall_31bf3856ad364e35_38655.38527.65535.65535_none_d1d3458f41002cd0.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-Recall\" version=\"38655.38527.65535.65535\" processorArchitecture=\"amd64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_072c8668ec63514fc98714c09cef5ffb61eac4d0_31bf3856ad364e35_38655.38527.65535.65535_none_fc8a4193bbbf8ce9.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"072c8668ec63514fc98714c09cef5ffb61eac4d0\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-CoreAI-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_19b4f2d2eb01fe86e2858f3356507a3743d63a96_31bf3856ad364e35_38655.38527.65535.65535_none_c3b6ebc0bc9bc32a.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"19b4f2d2eb01fe86e2858f3356507a3743d63a96\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"Microsoft-Copilot\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_2415624e03eaf74c3ed2718f0823e7ef1746afdd_31bf3856ad364e35_38655.38527.65535.65535_none_8ebe44a9559113a2.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"2415624e03eaf74c3ed2718f0823e7ef1746afdd\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-CoreAI\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_37e84906b7c3ad6ec7fd0f73eb941da2bbd40170_31bf3856ad364e35_38655.38527.65535.65535_none_4755105c8785546a.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"37e84906b7c3ad6ec7fd0f73eb941da2bbd40170\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"Microsoft-Copilot-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_9977ad932a57937cbd5b595b7054ef37a6fa80d7_31bf3856ad364e35_38655.38527.65535.65535_none_176e9ba77eb5736f.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"9977ad932a57937cbd5b595b7054ef37a6fa80d7\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-AIX-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_af04861f8804c4ce83a52310a455da3f912b468f_31bf3856ad364e35_38655.38527.65535.65535_none_9c9d75201debd11a.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"af04861f8804c4ce83a52310a455da3f912b468f\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-Recall\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_b1c39ab687ddb87f21e0bef8191922a64760b277_31bf3856ad364e35_38655.38527.65535.65535_none_8c5f153cdaa8c371.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"b1c39ab687ddb87f21e0bef8191922a64760b277\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"Microsoft-Copilot-Deployment-LanguagePack\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_d555b631e519d0dcd7872958a590cb5e81441910_31bf3856ad364e35_38655.38527.65535.65535_none_ab9a0f7301cc9b81.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"d555b631e519d0dcd7872958a590cb5e81441910\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"Microsoft-Windows-SystemSettings-SettingsHandlers-Copilot\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_f9b5a2b834a34ab4b8fa8da477a953885907d528_31bf3856ad364e35_38655.38527.65535.65535_none_a9f36e0ec06d9f38.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"f9b5a2b834a34ab4b8fa8da477a953885907d528\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/><deployment xmlns=\"urn:schemas-microsoft-com:asm.v3\"/><dependency discoverable=\"false\"><dependentAssembly dependencyType=\"install\"><assemblyIdentity name=\"UserExperience-AIX\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\"/></dependentAssembly></dependency></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_microsoft-copilot-d..oyment-languagepack_31bf3856ad364e35_38655.38527.65535.65535_none_0fea6a4727c43cea.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"Microsoft-Copilot-Deployment-LanguagePack\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_microsoft-copilot-deployment_31bf3856ad364e35_38655.38527.65535.65535_none_26df2aa2220c1eee.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"Microsoft-Copilot-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_microsoft-copilot_31bf3856ad364e35_38655.38527.65535.65535_none_58a365e2a335dff2.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"Microsoft-Copilot\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_microsoft-windows-s..ngshandlers-copilot_31bf3856ad364e35_38655.38527.65535.65535_none_f88b892a68acf842.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"Microsoft-Windows-SystemSettings-SettingsHandlers-Copilot\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_userexperience-aix-deployment_31bf3856ad364e35_38655.38527.65535.65535_none_cdba866f35b87e29.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-AIX-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_userexperience-aix_31bf3856ad364e35_38655.38527.65535.65535_none_29380f4f3aa35115.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-AIX\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_userexperience-coreai-deployment_31bf3856ad364e35_38655.38527.65535.65535_none_49425002d1447d56.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-CoreAI-Deployment\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_userexperience-coreai_31bf3856ad364e35_38655.38527.65535.65535_none_851c45cb3b2d8b50.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-CoreAI\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAIPackage/arm64/arm64_userexperience-recall_31bf3856ad364e35_38655.38527.65535.65535_none_d1d34dc94100216c.manifest",
    "content": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?><assembly xmlns=\"urn:schemas-microsoft-com:asm.v3\" manifestVersion=\"1.0\" copyright=\"Zoicware\"><assemblyIdentity name=\"UserExperience-Recall\" version=\"38655.38527.65535.65535\" processorArchitecture=\"arm64\" language=\"neutral\" buildType=\"release\" publicKeyToken=\"31bf3856ad364e35\" versionScope=\"nonSxS\" /></assembly>"
  },
  {
    "path": "RemoveWindowsAi.ps1",
    "content": "param(\r\n    [switch]$EnableLogging,\r\n    [switch]$nonInteractive,\r\n    [ValidateSet('DisableRegKeys',          \r\n        'PreventAIPackageReinstall',     \r\n        'DisableCopilotPolicies',       \r\n        'RemoveAppxPackages',        \r\n        'RemoveRecallFeature', \r\n        'RemoveCBSPackages',         \r\n        'RemoveAIFiles',               \r\n        'HideAIComponents',            \r\n        'DisableRewrite',       \r\n        'RemoveRecallTasks',\r\n        'UpdateCleanupCheck')]\r\n    [array]$Options,\r\n    [switch]$AllOptions,\r\n    [switch]$revertMode,\r\n    [switch]$backupMode,\r\n    [ValidateSet('photoviewer', 'mspaint', 'snippingtool', 'notepad', 'photoslegacy')]\r\n    [array]$InstallClassicApps,\r\n    [switch]$RunWinUpdateRepair\r\n)\r\n\r\nif ($nonInteractive) {\r\n    if (!($AllOptions) -and (!$Options -or $Options.Count -eq 0) -and !($InstallClassicApps)) {\r\n        throw 'Non-Interactive mode was supplied without any options... Please use -Options or -AllOptions when using Non-Interactive Mode'\r\n        exit\r\n    }\r\n}\r\n\r\n\r\n#get powershell version to ensure run-trusted doesnt enter an infinite loop\r\n$version = $PSVersionTable.PSVersion\r\nif ($version -like '7*') {\r\n    $Global:psversion = 7\r\n}\r\nelse {\r\n    $Global:psversion = 5\r\n}\r\n\r\nif ($psversion -ge 7) {\r\n    Write-Host 'ERROR: This script requires Windows PowerShell 5.1 (powershell.exe).' -ForegroundColor Red\r\n    Write-Host \"You are currently running PowerShell version $($PSVersionTable.PSVersion.Major).$($PSVersionTable.PSVersion.Minor).\" -ForegroundColor Red\r\n    Write-Host 'PowerShell 7+ (pwsh.exe) is not supported. Please run the script using the classic Windows PowerShell 5.1.' -ForegroundColor Red\r\n    if (-not $nonInteractive) {\r\n        try {\r\n            Add-Type -AssemblyName System.Windows.Forms\r\n            [System.Windows.Forms.MessageBox]::Show(\r\n                \"This script must be run in Windows PowerShell 5.1.`n`nCurrent version: $($PSVersionTable.PSVersion)`n`nPlease use powershell.exe instead of pwsh.exe.\",\r\n                'PowerShell Version Error',\r\n                [System.Windows.Forms.MessageBoxButtons]::OK,\r\n                [System.Windows.Forms.MessageBoxIcon]::Error\r\n            ) | Out-Null\r\n        }\r\n        catch { }\r\n    }\r\n    exit 1\r\n}\r\n\r\nIf (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]'Administrator')) {\r\n    #leave out the trailing \" to add supplied params first \r\n    $arglist = \"-NoProfile -ExecutionPolicy Bypass -C `\"& ([scriptblock]::Create((irm 'https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/main/RemoveWindowsAi.ps1')))\"\r\n    #pass the correct params if supplied\r\n    if ($nonInteractive) {\r\n        $arglist = $arglist + ' -nonInteractive'\r\n\r\n        if ($AllOptions) {\r\n            $arglist = $arglist + ' -AllOptions'\r\n        }\r\n\r\n        if ($revertMode) {\r\n            $arglist = $arglist + ' -revertMode'\r\n        }\r\n\r\n        if ($backupMode) {\r\n            $arglist = $arglist + ' -backupMode'\r\n        }\r\n\r\n\r\n        if ($Options -and $Options.count -ne 0) {\r\n            #if options and alloptions is supplied just do all options\r\n            if ($AllOptions) {\r\n                #double check arglist has all options (should already have it)\r\n                if (!($arglist -like '*-AllOptions*')) {\r\n                    $arglist = $arglist + ' -AllOptions'\r\n                }\r\n            }\r\n            else {\r\n                $arglist = $arglist + \" -Options $Options\"\r\n            }\r\n        }\r\n\r\n        if ($InstallClassicApps -and $InstallClassicApps.Count -ne 0) {\r\n            $arglist = $arglist + \" -InstallClassicApps $InstallClassicApps\"\r\n        }\r\n    }\r\n\r\n    if ($EnableLogging) {\r\n        $arglist = $arglist + ' -EnableLogging'\r\n    }\r\n\r\n    #add the trailing quote \r\n    $arglist = $arglist + '\"'\r\n    Start-Process PowerShell.exe -ArgumentList $arglist -Verb RunAs\r\n    Exit\t\r\n}\r\n\r\nAdd-Type -AssemblyName PresentationFramework\r\nAdd-Type -AssemblyName System.Windows.Forms\r\n\r\nfunction Run-Trusted([String]$command, $psversion) {\r\n\r\n    function RunAsTI {\r\n        param(\r\n            [Parameter(Position = 0)]$cmd, \r\n            [Parameter(ValueFromRemainingArguments)]$xargs\r\n        )\r\n\r\n        $Ex = $xargs -contains '-Exit'\r\n        $xargs = $xargs | Where-Object { $_ -ne '-Exit' }\r\n        $wi = [Security.Principal.WindowsIdentity]::GetCurrent()\r\n        $id = 'RunAsTI'\r\n        $key = \"Registry::HKU\\$($wi.User.Value)\\Volatile Environment\"\r\n        $arg = ''\r\n        $rs = $false\r\n        $csf = Get-PSCallStack | Where-Object { $_.ScriptName -and $_.ScriptName -like '*.ps1' } | Select-Object -l 1\r\n        $cs = if ($csf) { $csf.ScriptName } else { $null }\r\n\r\n        if (!$cmd) {\r\n            if ((whoami /groups) -like '*S-1-16-16384*') { return }\r\n\r\n            $rs = $true\r\n            $arr = [Environment]::GetCommandLineArgs()\r\n            $i = [array]::IndexOf($arr, '-File')\r\n            if ($i -lt 0) { \r\n                $i = [array]::IndexOf($arr, '-f') \r\n            }\r\n\r\n            if ($i -ge 0 -and ($i + 1) -lt $arr.Count) { \r\n                if (!$cs) { \r\n                    $cs = $arr[$i + 1] \r\n                } \r\n\r\n                if (($i + 2) -lt $arr.Count) { \r\n                    $arg = ($arr[($i + 2)..($arr.Count - 1)] | ForEach-Object { \"`\"$($_-replace'\"','\"\"')`\"\" }) -join ' ' \r\n                } \r\n            }\r\n            else {\r\n                $cp = if ($csf) { $csf.InvocationInfo.BoundParameters } else { Get-Variable PSBoundParameters -sc 1 -va -ea 0 } \r\n\r\n                $ca = if ($csf) { $csf.InvocationInfo.UnboundArguments } else { Get-Variable args -sc 1 -va -ea 0 }\r\n\r\n                if ($null -eq $cp) { \r\n                    $cp = @{} \r\n                }\r\n                if ($null -eq $ca) { \r\n                    $ca = @() \r\n                }\r\n\r\n                $arg = (@($cp.GetEnumerator() | ForEach-Object { if (($_.Value -is [switch] -and $_.Value.IsPresent) -or ($_.Value -eq $true)) { \"-$($_.Key)\" }elseif ($_.Value -isnot [switch] -and $_.Value -ne $true -and $_.Value -ne $false) { \"-$($_.Key) `\"$($_.Value-replace'\"','\"\"')`\"\" } }) + @($ca | ForEach-Object { \"`\"$($_-replace'\"','\"\"')`\"\" })) -join ' '\r\n            }\r\n\r\n            if ($cs) { \r\n                $cmd = 'powershell'\r\n                $arg = \"-nop -ep bypass -f `\"$cs`\" $arg\" \r\n            }\r\n            else { \r\n                $cmd = 'powershell'\r\n                $arg = '-nop -ep bypass' \r\n            }\r\n        }\r\n        elseif ($xargs) { \r\n            $arg = $xargs -join ' ' \r\n        } \r\n\r\n        $V = ''\r\n        'cmd', 'arg', 'id', 'key' | ForEach-Object { $V += \"`n`$$_='$($(Get-Variable $_ -val)-replace\"'\",\"''\")';\" }\r\n\r\n        Set-ItemProperty $key $id $($V, @'\r\n $I=[int32];$M=$I.module.gettype(\"System.Runtime.Interop`Services.Mar`shal\");$P=$I.module.gettype(\"System.Int`Ptr\");$S=[string]\r\n $D=@();$T=@();$DM=[AppDomain]::CurrentDomain.\"DefineDynami`cAssembly\"(1,1).\"DefineDynami`cModule\"(1);$Z=[uintptr]::size\r\n 0..5|%{$D+=$DM.\"Defin`eType\"(\"AveYo_$_\",1179913,[ValueType])};$D+=[uintptr];4..6|%{$D+=$D[$_].\"MakeByR`efType\"()}\r\n $F='kernel','advapi','advapi',($S,$S,$I,$I,$I,$I,$I,$S,$D[7],$D[8]),([uintptr],$S,$I,$I,$D[9]),([uintptr],$S,$I,$I,[byte[]],$I)\r\n 0..2|%{$9=$D[0].\"DefinePInvok`eMethod\"(('CreateProcess','RegOpenKeyEx','RegSetValueEx')[$_],$F[$_]+'32',8214,1,$S,$F[$_+3],1,4)}\r\n $DF=($P,$I,$P),($I,$I,$I,$I,$P,$D[1]),($I,$S,$S,$S,$I,$I,$I,$I,$I,$I,$I,$I,[int16],[int16],$P,$P,$P,$P),($D[3],$P),($P,$P,$I,$I)\r\n 1..5|%{$k=$_;$n=1;$DF[$_-1]|%{$9=$D[$k].\"Defin`eField\"('f'+$n++,$_,6)}};0..5|%{$T+=$D[$_].\"Creat`eType\"()}\r\n 0..5|%{nv \"A$_\" ([Activator]::CreateInstance($T[$_])) -fo};function F($1,$2){$T[0].\"G`etMethod\"($1).invoke(0,$2)}\r\n $TI=(whoami /groups)-like'*S-1-16-16384*';$As=0\r\n if(!$TI){'TrustedInstaller','lsass','winlogon'|%{if(!$As){$9=sc.exe start $_;$As=@(gps -name $_ -ea 0|%{$_})[0]}}\r\n function M($1,$2,$3){$M.\"G`etMethod\"($1,[type[]]$2).invoke(0,$3)};$H=@();$Z,(4*$Z+16)|%{$H+=M \"AllocHG`lobal\" $I $_}\r\n M \"WriteInt`Ptr\" ($P,$P) ($H[0],$As.Handle);$A1.f1=131072;$A1.f2=$Z;$A1.f3=$H[0];$A2.f1=1;$A2.f2=1;$A2.f3=1;$A2.f4=1\r\n $A2.f6=$A1;$A3.f1=10*$Z+32;$A4.f1=$A3;$A4.f2=$H[1];M \"StructureTo`Ptr\" ($D[2],$P,[boolean]) (($A2-as$D[2]),$A4.f2,$false)\r\n $Run=@($null,\"powershell -win hidden -nop -c iex `$env:R; # $id\",0,0,0,0x0E080600,0,$null,($A4-as$T[4]),($A5-as$T[5]))\r\n F 'CreateProcess' $Run;return};$env:R='';rp $key $id -force;$priv=[diagnostics.process].\"GetM`ember\"('SetPrivilege',42)[0]\r\n 'SeSecurityPrivilege','SeTakeOwnershipPrivilege','SeBackupPrivilege','SeRestorePrivilege'|%{$priv.Invoke($null,@(\"$_\",2))}\r\n $HKU=[uintptr][uint32]2147483651;$NT='S-1-5-18';$reg=($HKU,$NT,8,2,($HKU-as$D[9]));F 'RegOpenKeyEx' $reg;$LNK=$reg[4]\r\n function L($1,$2,$3){sp 'HKLM\\Software\\Classes\\AppID\\{CDCBCFCA-3CDC-436f-A4E2-0E02075250C2}' 'RunAs' $3\r\n  $b=[Text.Encoding]::Unicode.GetBytes(\"\\Registry\\User\\$1\");F 'RegSetValueEx' @($2,'SymbolicLinkValue',0,6,[byte[]]$b,$b.Length)}\r\n L ($key-split'\\\\')[1] $LNK '';$R=[diagnostics.process]::start($cmd,$arg);if($R){$R.WaitForExit()};L '.Default' $LNK 'Interactive User'\r\n'@) -type 7\r\n\r\n        $a = \"-win hidden -nop -c `n$V `$env:R=(gi `$key -ea 0).getvalue(`$id)-join''; iex `$env:R\"\r\n        if ($Ex) { \r\n            $wshell = New-Object -ComObject WScript.Shell\r\n            $exe = 'powershell.exe'\r\n            $wshell.Run(\"$exe $a\", 0, $false) >$null\r\n        }\r\n        else { \r\n            $wshell = New-Object -ComObject WScript.Shell\r\n            $exe = 'powershell.exe'\r\n            $wshell.Run(\"$exe $a\", 0, $true) >$null # true to -wait\r\n        } \r\n\r\n        # if ($rs -or $Ex) { exit }\r\n    } \r\n    # lean & mean snippet by AveYo; refined by RapidOS [haslate]\r\n    # zoicware change log:\r\n    # changed start-process to wshell run to avoid the first powershell instance window from flashing\r\n\r\n\r\n    $psexe = 'PowerShell.exe'\r\n\r\n    #convert command to base64 to avoid errors with spaces\r\n    $bytes = [System.Text.Encoding]::Unicode.GetBytes($command)\r\n    $base64Command = [Convert]::ToBase64String($bytes)\r\n\r\n\r\n    try {\r\n        Stop-Service -Name TrustedInstaller -Force -ErrorAction Stop -WarningAction Stop\r\n    }\r\n    catch {\r\n        taskkill /im trustedinstaller.exe /f >$null\r\n    }\r\n    \r\n    # trusted installer proc not found (128) or access denied (1)\r\n    if ($LASTEXITCODE -eq 128 -or $LASTEXITCODE -eq 1) {\r\n        Write-Status -msg 'Failed to stop TrustedInstaller.exe... Using fallback method!' -warningOutput\r\n        RunAsTI $psexe \"-win hidden -encodedcommand $base64Command\"\r\n        Start-Sleep 1\r\n        return \r\n    }\r\n\r\n    #get bin path to revert later\r\n    $service = Get-CimInstance -ClassName Win32_Service -Filter \"Name='TrustedInstaller'\"\r\n    $DefaultBinPath = $service.PathName\r\n    #make sure path is valid and the correct location\r\n    $trustedInstallerPath = \"$env:SystemRoot\\servicing\\TrustedInstaller.exe\"\r\n    if ($DefaultBinPath -ne $trustedInstallerPath) {\r\n        $DefaultBinPath = $trustedInstallerPath\r\n    }\r\n    #change bin to command\r\n    sc.exe config TrustedInstaller binPath= \"cmd.exe /c $psexe -encodedcommand $base64Command\" | Out-Null\r\n    #run the command\r\n    sc.exe start TrustedInstaller | Out-Null\r\n    #set bin back to default\r\n    sc.exe config TrustedInstaller binpath= \"`\"$DefaultBinPath`\"\" | Out-Null\r\n    try {\r\n        Stop-Service -Name TrustedInstaller -Force -ErrorAction Stop -WarningAction Stop\r\n    }\r\n    catch {\r\n        taskkill /im trustedinstaller.exe /f >$null\r\n    }\r\n    \r\n}\r\n\r\n\r\nfunction Write-Status {\r\n    param(\r\n        [string]$msg,\r\n        [switch]$errorOutput,\r\n        [switch]$warningOutput\r\n    )\r\n    if ($errorOutput) {\r\n        Write-Host \"[ ! ERROR ] $msg\" -ForegroundColor Red\r\n    }\r\n    elseif ($warningOutput) {\r\n        Write-Host \"[ * WARNING ] $msg\" -ForegroundColor Yellow\r\n    }\r\n    else {\r\n        Write-Host \"[ + ] $msg\" -ForegroundColor Cyan\r\n    }\r\n   \r\n    \r\n}\r\n\r\n#some users have messed with the system envrioment variables (for some reason) this breaks inline cmdlets like Reg.exe \r\n#to fix this we can ensure the enviroment variable for this powershell session is set properly\r\nif ($env:PATH -notlike \"*$env:SystemRoot\\system32;*\") {\r\n    Write-Status -msg \"System Envrioment Variable 'PATH' is corrupted! Fixing for script session...\" -errorOutput\r\n    $env:PATH = \"$env:SystemRoot\\system32;$env:SystemRoot;$env:SystemRoot\\System32\\Wbem;\" + $env:PATH\r\n}\r\n\r\n\r\n#setup script\r\n#=====================================================================================\r\n\r\nWrite-Host '~ ~ ~ Remove Windows AI by @zoicware ~ ~ ~' -ForegroundColor DarkCyan\r\n\r\nif ($EnableLogging) {\r\n    $date = (Get-Date).ToString('MM-dd-yyyy-HH:mm') -replace ':'\r\n    $Global:logPath = \"$env:USERPROFILE\\RemoveWindowsAI$date.log\"\r\n    New-Item $logPath -Force | Out-Null\r\n    Write-Status -msg \"Starting Log at [$logPath]\"\r\n    #start and stop the transcript to get the header\r\n    Start-Transcript -Path $logPath -IncludeInvocationHeader | Out-Null\r\n    Stop-Transcript | Out-Null\r\n\r\n    #create info object\r\n    $Global:logInfo = [PSCustomObject]@{\r\n        Line   = $null\r\n        Result = $null\r\n    }\r\n}\r\n\r\nif ($revertMode) {\r\n    $Global:revert = 1\r\n}\r\nelse {\r\n    $Global:revert = 0\r\n}\r\n\r\nif ($backupMode) {\r\n    $Global:backup = 1\r\n}\r\nelse {\r\n    $Global:backup = 0\r\n}\r\n\r\n$Global:tempDir = ([System.IO.Path]::GetTempPath())\r\n\r\n#=====================================================================================\r\n\r\nfunction Add-LogInfo {\r\n    param(\r\n        [string]$logPath,\r\n        $info\r\n    )\r\n\r\n    $content = @\"\r\n    ====================================\r\n    Line: $($info.Line)\r\n    Result: $($info.Result)\r\n\"@\r\n\r\n    Add-Content $logPath -Value $content | Out-Null\r\n}\r\n\r\n\r\nfunction Create-RestorePoint {\r\n    param(\r\n        [switch]$nonInteractive\r\n    )\r\n\r\n    #check vss service first\r\n    $vssService = Get-Service -Name 'VSS' -ErrorAction SilentlyContinue\r\n    if ($vssService -and $vssService.StartType -eq 'Disabled') {\r\n        try {\r\n            Write-Status -msg 'Enabling VSS Service...'\r\n            Set-Service -Name 'VSS' -StartupType Manual -ErrorAction Stop\r\n            Start-Service -Name 'VSS' -ErrorAction Stop\r\n        }\r\n        catch {\r\n            Write-Status -msg 'Unable to Start VSS Service... Can not create restore point!' -errorOutput\r\n            return\r\n        }\r\n        \r\n    }\r\n    #enable system protection to allow restore points\r\n    $restoreEnabled = Get-ComputerRestorePoint -ErrorAction SilentlyContinue\r\n    if (!$restoreEnabled) {\r\n        Write-Status -msg 'Enabling Restore Points on System...'\r\n        Enable-ComputerRestore -Drive \"$env:SystemDrive\\\" \r\n    }\r\n\r\n    \r\n    if ($nonInteractive) {\r\n        #allow restore point to be created even if one was just made\r\n        $restoreFreqPath = 'HKLM:\\Software\\Microsoft\\Windows NT\\CurrentVersion\\SystemRestore'\r\n        $restoreFreqKey = 'SystemRestorePointCreationFrequency'\r\n        $currentValue = (Get-ItemProperty -Path $restoreFreqPath -Name $restoreFreqKey -ErrorAction SilentlyContinue).$restoreFreqKey\r\n        if ($currentValue -ne 0) {\r\n            Set-ItemProperty -Path $restoreFreqPath -Name $restoreFreqKey -Value 0 -Force\r\n        }\r\n\r\n        $restorePointName = \"RemoveWindowsAI-$(Get-Date -Format 'yyyy-MM-dd')\"\r\n        Write-Status -msg \"Creating Restore Point: [$restorePointName]\"\r\n        Write-Status -msg 'This may take a moment...please wait'\r\n        Checkpoint-Computer -Description $restorePointName -RestorePointType 'MODIFY_SETTINGS' \r\n    }\r\n    else {\r\n        Write-Status -msg 'Opening Restore Point Dialog...'\r\n        try {\r\n            $proc = Start-Process 'SystemPropertiesProtection.exe' -ErrorAction Stop -PassThru\r\n        }\r\n        catch {\r\n            $proc = Start-Process 'C:\\Windows\\System32\\control.exe' -ArgumentList 'sysdm.cpl ,4' -PassThru\r\n        }\r\n        #click configure on the window\r\n        Start-Sleep 1\r\n        Add-Type -AssemblyName System.Windows.Forms\r\n        [System.Windows.Forms.SendKeys]::SendWait('%c') \r\n        Wait-Process -Id $proc.Id\r\n    }\r\n\r\n}\r\n\r\nfunction Set-UwpAppRegistryEntry {\r\n    # modified to work in windows powershell from https://github.com/agadiffe/WindowsMize/blob/fe78912ccb1c83d440bd2123f5e43a6156fab31a/src/modules/applications/settings/public/Set-UwpAppSetting.ps1\r\n    <# \r\n    .SYNOPSIS\r\n        Modifies UWP app registry entries in the settings.dat file.\r\n    \r\n    .EXAMPLE\r\n        PS> $setting = [PSCustomObject]@{\r\n                Name  = 'VideoAutoplay'\r\n                Value = '0'\r\n                Type  = '5f5e10b'\r\n            }\r\n        PS> $setting | Set-UwpAppRegistryEntry -FilePath $FilePath\r\n    #>\r\n\r\n    [CmdletBinding()]\r\n    param\r\n    (\r\n        [Parameter(Mandatory, ValueFromPipeline)]\r\n        $InputObject,\r\n\r\n        [Parameter(Mandatory)]\r\n        [string] $FilePath\r\n    )\r\n\r\n    begin {\r\n        $AppSettingsRegPath = 'HKEY_USERS\\APP_SETTINGS'\r\n        $RegContent = \"Windows Registry Editor Version 5.00`n\"\r\n\r\n        reg.exe UNLOAD $AppSettingsRegPath 2>&1 | Out-Null\r\n\r\n        $max = 30\r\n        $attempts = 0\r\n        $ProcessToStop = @(\r\n            'AppActions'\r\n            'SearchHost'\r\n            'FESearchHost'\r\n            'msedgewebview2'\r\n            'TextInputHost'\r\n            'VisualAssistExe'\r\n            'WebExperienceHostApp'\r\n            'WindowsMigration'\r\n            'WindowsBackupClient'\r\n            'SoftLandingTask'\r\n            'DesktopStickerEditorWin32Exe'\r\n            'CrossDeviceResume'\r\n            'DiscoveryHubApp'\r\n        )\r\n        Stop-Process -Name $ProcessToStop -Force -ErrorAction SilentlyContinue \r\n        # do while is needed here because wait-process in this case is not working maybe cause its just a trash function lol\r\n        # using microsofts own example found in the docs does not work \r\n        # https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.management/wait-process?view=powershell-7.5#example-1-stop-a-process-and-wait\r\n\r\n        # since we are trying multiple times while the processes are stopping this will work as soon as the file is freed \r\n        do {\r\n            reg.exe LOAD $AppSettingsRegPath $FilePath *>$null\r\n            $attempts++\r\n        } while ($LASTEXITCODE -ne 0 -and $attempts -lt $max)\r\n    \r\n        if ($LASTEXITCODE -ne 0) {\r\n            Write-Status -msg 'Unable to load settings.dat' -errorOutput\r\n            return\r\n        }\r\n      \r\n    }\r\n\r\n    process {\r\n        $Value = $InputObject.Value\r\n        $Value = switch ($InputObject.Type) {\r\n            '5f5e10b' { \r\n                # Single byte for boolean\r\n                '{0:x2}' -f [byte][int]$Value\r\n            }\r\n            '5f5e10c' { \r\n                # Unicode string \r\n                $bytes = [System.Text.Encoding]::Unicode.GetBytes($Value + \"`0\")\r\n                ($bytes | ForEach-Object { '{0:x2}' -f $_ }) -join ' ' \r\n            }\r\n            '5f5e104' { \r\n                # Int32\r\n                $bytes = [BitConverter]::GetBytes([int]$Value)\r\n                ($bytes | ForEach-Object { '{0:x2}' -f $_ }) -join ' '\r\n            }\r\n            '5f5e105' { \r\n                # UInt32\r\n                $bytes = [BitConverter]::GetBytes([uint32]$Value)\r\n                ($bytes | ForEach-Object { '{0:x2}' -f $_ }) -join ' '\r\n            }\r\n            '5f5e106' { \r\n                # Int64\r\n                $bytes = [BitConverter]::GetBytes([int64]$Value)\r\n                ($bytes | ForEach-Object { '{0:x2}' -f $_ }) -join ' '\r\n            }\r\n        }\r\n\r\n        $Value = $Value -replace '\\s+', ','\r\n    \r\n        # create timestamp for remaining bytes\r\n        $timestampBytes = [BitConverter]::GetBytes([int64](Get-Date).ToFileTime())\r\n        $Timestamp = ($timestampBytes | ForEach-Object { '{0:x2}' -f $_ }) -join ','\r\n    \r\n        # build registry content\r\n        if ($InputObject.Path) {\r\n            $RegKey = $InputObject.Path\r\n        }\r\n        else {\r\n            $RegKey = 'LocalState'\r\n        }\r\n        $RegContent += \"`n[$AppSettingsRegPath\\$RegKey]\r\n        \"\"$($InputObject.Name)\"\"=hex($($InputObject.Type)):$Value,$Timestamp`n\" -replace '(?m)^ *'\r\n    }\r\n\r\n    end {\r\n        $SettingRegFilePath = \"$($tempDir)uwp_app_settings.reg\"\r\n        $RegContent | Out-File -FilePath $SettingRegFilePath\r\n\r\n        reg.exe IMPORT $SettingRegFilePath 2>&1 | Out-Null\r\n        reg.exe UNLOAD $AppSettingsRegPath | Out-Null\r\n\r\n        Remove-Item -Path $SettingRegFilePath\r\n    }\r\n}\r\n\r\nfunction Disable-Registry-Keys {\r\n    #maybe add params for particular parts\r\n\r\n    #disable ai registry keys\r\n    Write-Status -msg \"$(@('Disabling', 'Enabling')[$revert]) Copilot and Recall...\"\r\n    <#\r\n    #new keys related to windows ai schedled task \r\n    #npu check \r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'HardwareCompatibility' /t REG_DWORD /d '0' /f \r\n    #dont know\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'ITManaged' /t REG_DWORD /d '0' /f\r\n    #enabled by windows ai schedled task \r\n    #set to 1 in the us \r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'AllowedInRegion' /t REG_DWORD /d '0' /f\r\n    #enabled by windows ai schelded task \r\n    # policy enabled = 1 when recall is enabled in group policy \r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'PolicyConfigured' /t REG_DWORD /d '0' /f\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'PolicyEnabled' /t REG_DWORD /d '0' /f\r\n    #dont know\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'FTDisabledState' /t REG_DWORD /d '0' /f\r\n    #prob the npu check failing\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'MeetsAdditionalDriverRequirements' /t REG_DWORD /d '0' /f\r\n    #sucess from last run \r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'LastOperationKind' /t REG_DWORD /d '2' /f\r\n    #doesnt install recall for me so 0\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'AttemptedInstallCount' /t REG_DWORD /d '0' /f\r\n    #windows build\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'LastBuild' /t REG_DWORD /d '7171' /f\r\n    #5 for no good reason\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /v 'MaxInstallAttemptsAllowed' /t REG_DWORD /d '5' /f\r\n    #>\r\n    if (!$revert) {\r\n        #removing it does not get remade on restart so we will just remove it for now \r\n        Reg.exe delete 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsAI\\LastConfiguration' /f *>$null\r\n\r\n        Reg.exe delete 'HKCU\\Software\\Microsoft\\Windows\\Shell\\Copilot' /v 'CopilotLogonTelemetryTime' /f *>$null\r\n        Reg.exe delete 'HKCU\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\Microsoft.Copilot_8wekyb3d8bbwe\\Copilot.StartupTaskId' /f *>$null\r\n        Reg.exe delete 'HKCU\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe\\WebViewHostStartupId' /f *>$null\r\n        Reg.exe delete 'HKCU\\Software\\Microsoft\\Copilot' /v 'WakeApp' /f *>$null\r\n    }\r\n    \r\n    #set for local machine and current user to be sure\r\n    $hives = @('HKLM', 'HKCU')\r\n    foreach ($hive in $hives) {\r\n        Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsCopilot\" /v 'TurnOffWindowsCopilot' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI\" /v 'DisableAIDataAnalysis' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI\" /v 'AllowRecallEnablement' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI\" /v 'DisableClickToDo' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI\" /v 'TurnOffSavingSnapshots' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI\" /v 'DisableSettingsAgent' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI\" /v 'DisableAgentConnectors' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI\" /v 'DisableAgentWorkspaces' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI\" /v 'DisableRemoteAgentConnectors' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        #only for insiders using enterprise or education as of right now (12/23/25)\r\n        #Reg.exe add \"$hive\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI\" /v 'DisableRecallDataProviders' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Microsoft\\Windows\\Shell\\Copilot\\BingChat\" /v 'IsUserEligible' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Microsoft\\Windows\\Shell\\Copilot\" /v 'IsCopilotAvailable' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add \"$hive\\SOFTWARE\\Microsoft\\Windows\\Shell\\Copilot\" /v 'CopilotDisabledReason' /t REG_SZ /d @('FeatureIsDisabled', ' ')[$revert] /f *>$null\r\n    }\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\microphone\\Microsoft.Copilot_8wekyb3d8bbwe' /v 'Value' /t REG_SZ /d @('Deny', 'Prompt')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\microphone\\Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe' /v 'Value' /t REG_SZ /d @('Deny', 'Prompt')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\systemAIModels' /v 'Value' /t REG_SZ /d @('Deny', 'Prompt')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\Capabilities\\systemAIModels' /v 'RecordUsageData' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Speech_OneCore\\Settings\\VoiceActivation\\UserPreferenceForAllApps' /v 'AgentActivationEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced' /v 'ShowCopilotButton' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\input\\Settings' /v 'InsightsEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\Shell\\ClickToDo' /v 'DisableClickToDo' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #remove copilot from search\r\n    Write-Status -msg \"$(@('Disabling', 'Enabling')[$revert]) Copilot In Windows Search...\"\r\n    Reg.exe add 'HKCU\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer' /v 'DisableSearchBoxSuggestions' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #disable copilot in edge\r\n    Write-Status -msg \"$(@('Disabling', 'Enabling')[$revert]) Copilot In Edge...\"\r\n    #keeping depreciated policies incase user has older versions of edge\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'CopilotCDPPageContext' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null #depreciated shows Unknown policy in edge://policy\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'CopilotPageContext' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'HubsSidebarEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'EdgeEntraCopilotPageContext' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'Microsoft365CopilotChatIconEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null #depreciated shows Unknown policy in edge://policy\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'EdgeHistoryAISearchEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'ComposeInlineEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'GenAILocalFoundationalModelSettings' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'BuiltInAIAPIsEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'AIGenThemesEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'DevToolsGenAiSettings' /t REG_DWORD /d @('2', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Edge' /v 'ShareBrowsingHistoryWithCopilotSearchAllowed' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    #disable edge copilot mode \r\n    # \"enabled_labs_experiments\":[\"edge-copilot-mode@2\"]\r\n    # view flags at edge://flags\r\n    taskkill.exe /im msedge.exe /f *>$null\r\n    $config = \"$env:LOCALAPPDATA\\Microsoft\\Edge\\User Data\\Local State\"\r\n    if (Test-Path $config) {\r\n        #powershell core bug where json that has empty strings will error\r\n        try {\r\n            $jsonContent = (Get-Content $config).Replace('\"\"', '\"_empty\"') | ConvertFrom-Json -ErrorAction Stop\r\n            $fail = $false\r\n        }\r\n        catch {\r\n            Write-Status -msg 'Unable to set Edge flags to disable Copilot due to a different langauge being used' -errorOutput \r\n            Write-Status -msg 'You can manually disable the Copilot flags at [edge://flags] in the browser' -errorOutput \r\n            $fail = $true\r\n        }\r\n        \r\n        if (!$fail) {\r\n            try {\r\n                if (($jsonContent.browser | Get-Member -MemberType NoteProperty enabled_labs_experiments -ErrorAction Stop) -eq $null) {\r\n                    $jsonContent.browser | Add-Member -MemberType NoteProperty -Name enabled_labs_experiments -Value @()\r\n                }\r\n                $flags = @(\r\n                    'edge-copilot-mode@2', \r\n                    'edge-ntp-composer@2', #disables the copilot search in new tab page \r\n                    'edge-compose@2' #disables the ai writing help \r\n                )\r\n                if ($revert) {\r\n                    $jsonContent.browser.enabled_labs_experiments = $jsonContent.browser.enabled_labs_experiments | Where-Object { $_ -notin $flags }\r\n                }\r\n                else {\r\n                    foreach ($flag in $flags) {\r\n                        if ($jsonContent.browser.enabled_labs_experiments -notcontains $flag) {\r\n                            $jsonContent.browser.enabled_labs_experiments += $flag\r\n                        }\r\n                    }\r\n                }\r\n        \r\n                $newContent = $jsonContent | ConvertTo-Json -Compress -Depth 10 \r\n                #add back the empty strings \r\n                $newContent = $newContent.replace('\"_empty\"', '\"\"')\r\n                Set-Content $config -Value $newContent -Encoding UTF8 -Force\r\n            }\r\n            catch {\r\n                Write-Status -msg 'Edge Browser has never been opened on this machine unable to set flags...' -errorOutput \r\n                Write-Status -msg 'Open Edge once and run this tweak again' -errorOutput \r\n            }\r\n        }\r\n        \r\n    }\r\n   \r\n    #disable office ai with group policy\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\training\\general' /v 'disabletraining' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\training\\specific\\adaptivefloatie' /v 'disabletrainingofadaptivefloatie' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #disable connected experiences in office should prevent copilot from working \r\n    Reg.exe add 'HKCU\\Software\\Policies\\Microsoft\\office\\16.0\\common\\privacy' /v 'controllerconnectedservicesenabled' /t REG_DWORD /d @('2', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Policies\\Microsoft\\office\\16.0\\common\\privacy' /v 'usercontentdisabled' /t REG_DWORD /d @('2', '1')[$revert] /f *>$null\r\n    #disable copilot buttons in word\r\n    #Reg.exe add 'HKCU\\Software\\Policies\\Microsoft\\office\\16.0\\word\\disabledcmdbaritemslist' /v 'TCID1' /t REG_SZ /d '47229' /f\r\n    #Reg.exe add 'HKCU\\Software\\Policies\\Microsoft\\office\\16.0\\word\\disabledcmdbaritemslist' /v 'TCID2' /t REG_SZ /d '43223' /f\r\n    #Reg.exe add 'HKCU\\Software\\Policies\\Microsoft\\office\\16.0\\word\\disabledcmdbaritemslist' /v 'TCID3' /t REG_SZ /d '34872' /f\r\n    #Reg.exe add 'HKCU\\Software\\Policies\\Microsoft\\office\\16.0\\word\\disabledcmdbaritemslist' /v 'TCID4' /t REG_SZ /d '42552' /f\r\n    #disable copilot in word\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Office\\16.0\\Word\\Options' /v 'EnableCopilot' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    #disable copilot in excel\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Office\\16.0\\Excel\\Options' /v 'EnableCopilot' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    #disable copilot in onenote\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Office\\16.0\\OneNote\\Options\\Copilot' /v 'CopilotEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Office\\16.0\\OneNote\\Options\\Copilot' /v 'CopilotNotebooksEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Office\\16.0\\OneNote\\Options\\Copilot' /v 'CopilotSkittleEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    #disable office ai content safety\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\contentsafety\\general' /v 'disablecontentsafety' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\contentsafety\\specific\\alternativetext' /v 'disablecontentsafety' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\contentsafety\\specific\\imagequestionandanswering' /v 'disablecontentsafety' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\contentsafety\\specific\\promptassistance' /v 'disablecontentsafety' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\contentsafety\\specific\\rewrite' /v 'disablecontentsafety' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\contentsafety\\specific\\summarization' /v 'disablecontentsafety' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\contentsafety\\specific\\summarizationwithreferences' /v 'disablecontentsafety' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\office\\16.0\\common\\ai\\contentsafety\\specific\\texttotable' /v 'disablecontentsafety' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #disable additional keys\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Notifications\\Settings' /v 'AutoOpenCopilotLargeScreens' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\generativeAI' /v 'Value' /t REG_SZ /d @('Deny', 'Allow')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\systemAIModels' /v 'Value' /t REG_SZ /d @('Deny', 'Allow')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\AppPrivacy' /v 'LetAppsAccessGenerativeAI' /t REG_DWORD /d @('2', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\AppPrivacy' /v 'LetAppsAccessSystemAIModels' /t REG_DWORD /d @('2', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsCopilot' /v 'AllowCopilotRuntime' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Taskband\\AuxilliaryPins' /v 'CopilotPWAPin' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Taskband\\AuxilliaryPins' /v 'RecallPin' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    #disable copilot background app access \r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\BackgroundAccessApplications\\Microsoft.Copilot_8wekyb3d8bbwe' /v 'DisabledByUser' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\BackgroundAccessApplications\\Microsoft.Copilot_8wekyb3d8bbwe' /v 'Disabled' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\BackgroundAccessApplications\\Microsoft.Copilot_8wekyb3d8bbwe' /v 'SleepDisabled' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\BackgroundAccessApplications\\Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe' /v 'DisabledByUser' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\BackgroundAccessApplications\\Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe' /v 'Disabled' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\BackgroundAccessApplications\\Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe' /v 'SleepDisabled' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #disable for all users\r\n    $sids = (Get-ChildItem 'registry::HKEY_USERS').Name | Where-Object { $_ -like 'HKEY_USERS\\S-1-5-21*' -and $_ -notlike '*Classes*' } \r\n    foreach ($sid in $sids) {\r\n        Reg.exe add \"$sid\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Taskband\\AuxilliaryPins\" /v 'CopilotPWAPin' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add \"$sid\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Taskband\\AuxilliaryPins\" /v 'RecallPin' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    }\r\n    #disable ai actions\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\1853569164' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\4098520719' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\929719951' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #enable new feature to hide ai actions in context menu when none are avaliable \r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\1646260367' /v 'EnabledState' /t REG_DWORD /d @('2', '0')[$revert] /f *>$null\r\n    #disable additional ai velocity ids found from: https://github.com/phantomofearth/windows-velocity-feature-lists\r\n    #keep in mind these may or may not do anything depending on the windows build \r\n    #disable copilot nudges\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\1546588812' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\203105932' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\2381287564' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\3189581453' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\3552646797' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #disable copilot in taskbar and systray\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\3389499533' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\4027803789' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\450471565' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #enable removing ai componets (not sure what this does yet)\r\n    #Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\2931206798' /v 'EnabledState' /t REG_DWORD /d '2' /f\r\n    #Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\3098978958' /v 'EnabledState' /t REG_DWORD /d '2' /f\r\n    #Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\3233196686' /v 'EnabledState' /t REG_DWORD /d '2' /f\r\n    #disable core ai / click to do with feature management \r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\2283032206' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SYSTEM\\ControlSet001\\Control\\FeatureManagement\\Overrides\\8\\502943886' /v 'EnabledState' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #disable ask copilot (taskbar search)\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced' /v 'TaskbarCompanion' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    #this branded key is blocked by the user choice driver too bad ms was very lazy and hardcoded a list of exe's not allowed to edit this key\r\n    #workaround for any key blocked by user choice driver: rename reg.exe to something else\r\n    Copy-Item (Get-Command reg.exe).Source .\\reg1.exe -Force -ErrorAction SilentlyContinue\r\n    & .\\reg1.exe add 'HKCU\\Software\\Microsoft\\Windows\\Shell\\BrandedKey' /v 'BrandedKeyChoiceType' /t REG_SZ /d @('Search', 'App')[$revert] /f *>$null\r\n    & .\\reg1.exe add 'HKCU\\Software\\Microsoft\\Windows\\Shell\\BrandedKey' /v 'AppAumid' /t REG_SZ /d @(' ', 'Microsoft.Copilot_8wekyb3d8bbwe!App')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\SOFTWARE\\Policies\\Microsoft\\Windows\\CopilotKey' /v 'SetCopilotHardwareKey' /t REG_SZ /d @(' ', 'Microsoft.Copilot_8wekyb3d8bbwe!App')[$revert] /f *>$null\r\n    Remove-Item .\\reg1.exe -Force -ErrorAction SilentlyContinue\r\n    #disable recall customized homepage \r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\SettingSync\\WindowsSettingHandlers' /v 'A9HomeContentEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    #disable typing data harvesting for ai training \r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\InputPersonalization' /v 'RestrictImplicitInkCollection' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\InputPersonalization' /v 'RestrictImplicitTextCollection' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\InputPersonalization\\TrainedDataStore' /v 'HarvestContacts' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\CPSS\\Store\\InkingAndTypingPersonalization' /v 'Value' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n    #hide copilot ads in settings home page \r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\CloudContent' /v 'DisableConsumerAccountStateContent' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    #disable office hub startup\r\n    Reg.exe add 'HKCU\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData\\Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe\\WebViewHostStartupId' /v 'State' /t REG_DWORD /d @('1', '2')[$revert] /f *>$null\r\n    #disable ai image creator in paint\r\n    Write-Status -msg \"$(@('Disabling', 'Enabling')[$revert]) Image Creator In Paint...\"\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Paint' /v 'DisableImageCreator' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Paint' /v 'DisableCocreator' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Paint' /v 'DisableGenerativeFill' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Paint' /v 'DisableGenerativeErase' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Paint' /v 'DisableRemoveBackground' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n    # disable experimental agentic features\r\n    # Reg.exe add \"HKLM\\SYSTEM\\CurrentControlSet\\Services\\IsoEnvBroker\" /v \"Enabled\" /t REG_DWORD /d \"0\" /f\r\n    # Reg.exe add \"HKLM\\SYSTEM\\ControlSet001\\Services\\IsoEnvBroker\" /v \"Enabled\" /t REG_DWORD /d \"0\" /f\r\n    # leaving commented since its still only in preview builds\r\n\r\n    #apply reg keys for default user to disable for any new users created\r\n    #unload just incase\r\n    [GC]::Collect()\r\n    reg.exe unload 'HKU\\DefaultUser' *>$null\r\n    try {\r\n        reg.exe load 'HKU\\DefaultUser' \"$env:SystemDrive\\Users\\Default\\NTUSER.DAT\" >$null\r\n        $hiveloaded = $true\r\n    }\r\n    catch {\r\n        Write-Status -msg 'Unable to Load Default User Hive...' -errorOutput \r\n        $hiveloaded = $false\r\n    }\r\n\r\n    if ($hiveloaded) {\r\n        Write-Status -msg \"$(@('Disabling', 'Enabling')[$revert]) AI for new users...\" \r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsCopilot' /v 'TurnOffWindowsCopilot' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI' /v 'DisableAIDataAnalysis' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI' /v 'AllowRecallEnablement' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI' /v 'DisableClickToDo' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI' /v 'TurnOffSavingSnapshots' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI' /v 'DisableSettingsAgent' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI' /v 'DisableAgentConnectors' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI' /v 'DisableAgentWorkspaces' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\WindowsAI' /v 'DisableRemoteAgentConnectors' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Microsoft\\Windows\\Shell\\Copilot\\BingChat' /v 'IsUserEligible' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Microsoft\\Windows\\Shell\\Copilot' /v 'IsCopilotAvailable' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Microsoft\\Windows\\Shell\\Copilot' /v 'CopilotDisabledReason' /t REG_SZ /d @('FeatureIsDisabled', ' ')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\CurrentVersion\\CapabilityAccessManager\\ConsentStore\\microphone\\Microsoft.Copilot_8wekyb3d8bbwe' /v 'Value' /t REG_SZ /d @('Deny', 'Prompt')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Speech_OneCore\\Settings\\VoiceActivation\\UserPreferenceForAllApps' /v 'AgentActivationEnabled' /t REG_DWORD /d @('0', '1')[$revert]  /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced' /v 'ShowCopilotButton' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\input\\Settings' /v 'InsightsEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\Shell\\ClickToDo' /v 'DisableClickToDo' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer' /v 'DisableSearchBoxSuggestions' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsCopilot' /v 'AllowCopilotRuntime' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Taskband\\AuxilliaryPins' /v 'CopilotPWAPin' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Taskband\\AuxilliaryPins' /v 'RecallPin' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced' /v 'TaskbarCompanion' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\Shell\\BrandedKey' /v 'BrandedKeyChoiceType' /t REG_SZ /d @('Search', 'App')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\Shell\\BrandedKey' /v 'AppAumid' /t REG_SZ /d @(' ', 'Microsoft.Copilot_8wekyb3d8bbwe!App')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Policies\\Microsoft\\Windows\\CopilotKey' /v 'SetCopilotHardwareKey' /t REG_SZ /d @(' ', 'Microsoft.Copilot_8wekyb3d8bbwe!App')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\CurrentVersion\\SettingSync\\WindowsSettingHandlers' /v 'A9HomeContentEnabled' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\InputPersonalization' /v 'RestrictImplicitInkCollection' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\InputPersonalization' /v 'RestrictImplicitTextCollection' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\InputPersonalization\\TrainedDataStore' /v 'HarvestContacts' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        Reg.exe add 'HKU\\DefaultUser\\Software\\Microsoft\\Windows\\CurrentVersion\\CPSS\\Store\\InkingAndTypingPersonalization' /v 'Value' /t REG_DWORD /d @('0', '1')[$revert] /f *>$null\r\n        if ($revert) {\r\n            Reg.exe delete 'HKU\\DefaultUser\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell Extensions\\Blocked' /v '{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}' /f *>$null\r\n        }\r\n        else {\r\n            Reg.exe add 'HKU\\DefaultUser\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell Extensions\\Blocked' /v '{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}' /t REG_SZ /d 'Ask Copilot' /f *>$null\r\n        }\r\n\r\n        reg.exe unload 'HKU\\DefaultUser' *>$null\r\n    }\r\n\r\n    #disable ask copilot in context menu\r\n    if ($revert) {\r\n        Reg.exe delete 'HKCU\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell Extensions\\Blocked' /v '{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}' /f *>$null\r\n    }\r\n    else {\r\n        Reg.exe add 'HKCU\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell Extensions\\Blocked' /v '{CB3B0003-8088-4EDE-8769-8B354AB2FF8C}' /t REG_SZ /d 'Ask Copilot' /f *>$null\r\n    }\r\n    #Reg.exe add 'HKLM\\SYSTEM\\CurrentControlSet\\Services\\WSAIFabricSvc' /v 'Start' /t REG_DWORD /d @('4', '2')[$revert] /f *>$null\r\n    try {\r\n        Stop-Service -Name WSAIFabricSvc -Force -ErrorAction Stop\r\n    }\r\n    catch {\r\n        #ignore error when svc is already removed\r\n    }\r\n    \r\n    $backupPath = \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\"\r\n    $backupFileWSAI = 'WSAIFabricSvc.reg'\r\n    $backupFileAAR = 'AARSVC.reg'\r\n    if ($revert) {\r\n        if (Test-Path \"$backupPath\\$backupFileWSAI\") {\r\n            Reg.exe import \"$backupPath\\$backupFileWSAI\" *>$null\r\n            sc.exe create WSAIFabricSvc binPath= \"$env:windir\\System32\\svchost.exe -k WSAIFabricSvcGroup -p\" *>$null\r\n        }\r\n        else {\r\n            Write-Status -msg \"Path Not Found: $backupPath\\$backupFileWSAI\" -errorOutput \r\n        }\r\n        \r\n    }\r\n    else {\r\n        if ($backup) {\r\n            Write-Status -msg 'Backing up WSAIFabricSvc...'\r\n            #export the service to a reg file before removing it \r\n            if (!(Test-Path $backupPath)) {\r\n                New-Item $backupPath -Force -ItemType Directory | Out-Null\r\n            }\r\n            #this will hang if the service has already been exported\r\n            # if (!(Test-Path \"$backupPath\\$backupFileWSAI\")) {\r\n            Reg.exe export 'HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\WSAIFabricSvc' \"$backupPath\\$backupFileWSAI\" /y | Out-Null #add overwrite file /y switch\r\n            # }\r\n        }\r\n        Write-Status -msg 'Removing WSAIFabricSvc...'\r\n        #delete the service\r\n        sc.exe delete WSAIFabricSvc *>$null\r\n    }\r\n    if (!$revert) {\r\n        #remove conversational agent service (used to be used for cortana, prob going to be updated for new ai agents and copilot)\r\n        try {\r\n            $aarSVCName = (Get-Service -ErrorAction SilentlyContinue | Where-Object { $_.name -like '*aarsvc*' }).Name\r\n        }\r\n        catch {\r\n            #aarsvc already removed\r\n        }\r\n        \r\n\r\n        if ($aarSVCName) {\r\n            if ($backup) {\r\n                Write-Status -msg 'Backing up Agent Activation Runtime Service...'\r\n                #export the service to a reg file before removing it \r\n                if (!(Test-Path $backupPath)) {\r\n                    New-Item $backupPath -Force -ItemType Directory | Out-Null\r\n                }\r\n                #this will hang if the service has already been exported\r\n                # if (!(Test-Path \"$backupPath\\$backupFileAAR\")) {\r\n                Reg.exe export 'HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\AarSvc' \"$backupPath\\$backupFileAAR\" /y | Out-Null\r\n                # }\r\n            }\r\n            Write-Status -msg 'Removing Agent Activation Runtime Service...'\r\n            #delete the service\r\n            try {\r\n                Stop-Service -Name $aarSVCName -Force -ErrorAction Stop\r\n            }\r\n            catch {\r\n                try {\r\n                    Stop-Service -Name AarSvc -Force -ErrorAction Stop\r\n                }\r\n                catch {\r\n                    #neither are running\r\n                }\r\n                \r\n            }\r\n            \r\n            sc.exe delete AarSvc *>$null\r\n        }\r\n    }\r\n    else {\r\n        Write-Status 'Restoring Agent Activation Runtime Service...'\r\n\r\n        if (Test-Path \"$backupPath\\$backupFileAAR\") {\r\n            Reg.exe import \"$backupPath\\$backupFileAAR\" *>$null\r\n            sc.exe create AarSvc binPath= \"$env:windir\\system32\\svchost.exe -k AarSvcGroup -p\" *>$null\r\n        }\r\n        else {\r\n            Write-Status -msg \"Path Not Found: $backupPath\\$backupFileAAR\" -errorOutput \r\n        }\r\n    }\r\n  \r\n\r\n\r\n    #block copilot from communicating with server\r\n    if ($revert) {\r\n        if ((Test-Path \"$backupPath\\HKCR_Copilot.reg\") -or (Test-Path \"$backupPath\\HKCU_Copilot.reg\")) {\r\n            Reg.exe import \"$backupPath\\HKCR_Copilot.reg\" *>$null\r\n            Reg.exe import \"$backupPath\\HKCU_Copilot.reg\" *>$null\r\n        }\r\n        else {\r\n            Write-Status -msg \"Unable to Find HKCR_Copilot.reg or HKCU_Copilot.reg in [$backupPath]\" -errorOutput \r\n        }\r\n    }\r\n    else {\r\n        if ($backup) {\r\n            #backup .copilot file extension\r\n            Reg.exe export 'HKEY_CLASSES_ROOT\\.copilot' \"$backupPath\\HKCR_Copilot.reg\" /y *>$null\r\n            Reg.exe export 'HKEY_CURRENT_USER\\Software\\Classes\\.copilot' \"$backupPath\\HKCU_Copilot.reg\" /y *>$null\r\n        }\r\n        Write-Status -msg 'Removing .copilot File Extension...' \r\n        Reg.exe delete 'HKCU\\Software\\Classes\\.copilot' /f *>$null\r\n        Reg.exe delete 'HKCR\\.copilot' /f *>$null\r\n    }\r\n\r\n    #disabling and removing voice access, recently added ai powered\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\VoiceAccess' /v 'RunningState' /t REG_DWORD /d @('0', '1')[$revert] /f >$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\VoiceAccess' /v 'TextCorrection' /t REG_DWORD /d @('1', '2')[$revert] /f >$null\r\n    Reg.exe add 'HKCU\\Software\\Microsoft\\Windows NT\\CurrentVersion\\AccessibilityTemp' /v @('0', '1')[$revert] /t REG_DWORD /d '0' /f >$null\r\n    $startMenu = \"$env:appdata\\Microsoft\\Windows\\Start Menu\\Programs\\Accessibility\"\r\n    $voiceExe = \"$env:windir\\System32\\voiceaccess.exe\"\r\n    if ($backup) {\r\n        Write-Status -msg 'Backing up Voice Access...'\r\n        if (!(Test-Path $backupPath)) {\r\n            New-Item $backupPath -Force -ItemType Directory | Out-Null\r\n        }\r\n        Copy-Item $voiceExe -Destination $backupPath -Force -ErrorAction SilentlyContinue | Out-Null\r\n        Copy-Item \"$startMenu\\VoiceAccess.lnk\" -Destination $backupPath -Force -ErrorAction SilentlyContinue | Out-Null\r\n    }\r\n    \r\n    if ($revert) {\r\n        if ((Test-Path \"$backupPath\\VoiceAccess.exe\") -and (Test-Path \"$backupPath\\VoiceAccess.lnk\")) {\r\n            Write-Status -msg 'Restoring Voice Access...'\r\n            Move-Item \"$backupPath\\VoiceAccess.exe\" -Destination \"$env:windir\\System32\" -Force | Out-Null\r\n            Move-Item \"$backupPath\\VoiceAccess.lnk\" -Destination $startMenu -Force | Out-Null\r\n        }\r\n        else {\r\n            Write-Status -msg 'Voice Access Backup NOT Found!' -errorOutput \r\n        }\r\n    }\r\n    else {\r\n        Write-Status -msg 'Removing Voice Access...'\r\n        $command = \"Remove-item -path $env:windir\\System32\\voiceaccess.exe -force\"\r\n        Run-Trusted -command $command -psversion $psversion\r\n        Start-Sleep 1\r\n        Remove-Item \"$startMenu\\VoiceAccess.lnk\" -Force -ErrorAction SilentlyContinue\r\n    }\r\n\r\n    \r\n    $root = 'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\MMDevices\\Audio\\Capture'\r\n    $allFX = (Get-ChildItem $root -Recurse).Name | Where-Object { $_ -like '*FxProperties' }\r\n    #search the fx props for VocalEffectPack and add {1da5d803-d492-4edd-8c23-e0c0ffee7f0e},5 = 1\r\n    foreach ($fxPath in $allFX) {\r\n        $keys = Get-ItemProperty \"registry::$fxPath\"\r\n        foreach ($key in $keys) {\r\n            if ($key | Get-Member -MemberType NoteProperty | Where-Object { $_.Name -like '{*},*' } | Where-Object { $_.Definition -like '*#VocaEffectPack*' }) {\r\n                Write-Status -msg \"$(@('Disabling','Enabling')[$revert]) AI Voice Effects...\"\r\n                $regPath = Convert-Path $key.PSPath\r\n                if ($revert) {\r\n                    #enable\r\n                    $command = \"Reg.exe delete '$regPath' /v '{1da5d803-d492-4edd-8c23-e0c0ffee7f0e},5' /f\"\r\n                    Run-Trusted -command $command -psversion $psversion\r\n                }\r\n                else {\r\n                    #disable\r\n                    $command = \"Reg.exe add '$regPath' /v '{1da5d803-d492-4edd-8c23-e0c0ffee7f0e},5' /t REG_DWORD /d '1' /f\"\r\n                    Run-Trusted -command $command -psversion $psversion\r\n                }\r\n                \r\n            }\r\n        }\r\n    }\r\n\r\n    #disable gaming copilot \r\n    #found from: https://github.com/meetrevision/playbook/issues/197\r\n    #not sure this really does anything in my testing gaming copilot still appears \r\n    <#\r\n    if ($revert) {\r\n        $command = \"reg delete 'HKLM\\SOFTWARE\\Microsoft\\WindowsRuntime\\ActivatableClassId\\Microsoft.Xbox.GamingAI.Companion.Host.GamingCompanionHostOptions' /f\"\r\n        Run-Trusted -command $command -psversion $psversion\r\n    }\r\n    else {\r\n        $command = \"reg add 'HKLM\\SOFTWARE\\Microsoft\\WindowsRuntime\\ActivatableClassId\\Microsoft.Xbox.GamingAI.Companion.Host.GamingCompanionHostOptions' /v 'ActivationType' /t REG_DWORD /d 0 /f;\r\n    reg add 'HKLM\\SOFTWARE\\Microsoft\\WindowsRuntime\\ActivatableClassId\\Microsoft.Xbox.GamingAI.Companion.Host.GamingCompanionHostOptions' /v 'Server' /t REG_SZ /d `\" `\" /f\r\n    \"\r\n        Run-Trusted -command $command -psversion $psversion\r\n    }\r\n    #>\r\n    \r\n    if (!$revert) {\r\n        #better method by setting the gaming copilot widget to false in the xbox overlay settings json file\r\n        #to make this actually work gamebar service needs to be restarted \r\n        $overlaySettingsPath = \"$env:LOCALAPPDATA\\Packages\\Microsoft.XboxGamingOverlay_8wekyb3d8bbwe\\LocalState\\profileDataSettings.txt\"\r\n        if (Test-Path $overlaySettingsPath) {\r\n            Write-Status -msg 'Disabling Gaming Copilot...'\r\n            Get-Process '*gamebar*' -ErrorAction SilentlyContinue | Stop-Process -Force -ErrorAction SilentlyContinue \r\n            try {\r\n                $content = Get-Content $overlaySettingsPath -Raw -ErrorAction Stop\r\n                $jsonObj = ConvertFrom-Json $content -ErrorAction Stop\r\n\r\n                $hasGamingCopilot = $jsonObj.profile.settingsStorage | Get-Member -MemberType NoteProperty | Where-Object { $_.Name -like '*GamingCompanionWidget*' }\r\n                if ($hasGamingCopilot) {\r\n                    #get all the properties for gaming copilot (there can be different ones for some users so we cant just hardcode this)\r\n                    #set all found properties to false besides suppressFirstFavorite\r\n                    $props = $jsonObj.profile.settingsStorage.$($hasGamingCopilot.Name) | Get-Member -MemberType NoteProperty\r\n                    foreach ($prop in $props) {\r\n                        if ($prop.Name -eq 'suppressFirstFavorite') {\r\n                            #this prop needs to be true to hide from favorites\r\n                            $jsonObj.profile.settingsStorage.$($hasGamingCopilot.Name).$($prop.Name) = $true\r\n                        }\r\n                        elseif ($prop.Name -eq 'suppressFirstLaunch') {\r\n                            $jsonObj.profile.settingsStorage.$($hasGamingCopilot.Name).$($prop.Name) = $true\r\n                        }\r\n                        else {\r\n                            $jsonObj.profile.settingsStorage.$($hasGamingCopilot.Name).$($prop.Name) = $false\r\n                        }\r\n                    }\r\n                    #this prop isnt added to the json till the user views settings in gamebar so add the prop and set to false\r\n                    #hide gaming copilot from widgets menu\r\n                    $jsonObj.profile.settingsStorage.$($hasGamingCopilot.Name) | Add-Member -NotePropertyName 'homeMenuVisibleUser' -NotePropertyValue $false -Force\r\n                    \r\n                    $newContent = ConvertTo-Json $jsonObj -Depth 10 -Compress #compress here to match og formatting for this file\r\n                    Set-Content $overlaySettingsPath -Value $newContent -Force\r\n                }\r\n                else {\r\n                    Write-Status -msg 'GamingCompanionWidget NOT Found in profileDataSettings.txt! Skipping...' -errorOutput\r\n                }\r\n            }\r\n            catch {\r\n                Write-Error $_\r\n                Write-Status -msg 'Unable to Disable Gaming Copilot!' -errorOutput\r\n            }\r\n        }\r\n    }\r\n    \r\n\r\n    #remove windows ai dll contracts \r\n    $command = \"\r\n    Reg delete 'HKLM\\SOFTWARE\\Microsoft\\WindowsRuntime\\WellKnownContracts' /v 'Windows.AI.Actions.ActionsContract' /f\r\n    Reg delete 'HKLM\\SOFTWARE\\Microsoft\\WindowsRuntime\\WellKnownContracts' /v 'Windows.AI.Agents.AgentsContract' /f\r\n    Reg delete 'HKLM\\SOFTWARE\\Microsoft\\WindowsRuntime\\WellKnownContracts' /v 'Windows.AI.MachineLearning.MachineLearningContract' /f \r\n    Reg delete 'HKLM\\SOFTWARE\\Microsoft\\WindowsRuntime\\WellKnownContracts' /v 'Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract' /f\r\n    \"\r\n    Run-Trusted -command $command -psversion $psversion\r\n\r\n    #disable ai setting in uwp photos app\r\n    $uwpPhotosSettings = \"$env:LOCALAPPDATA\\Packages\\Microsoft.Windows.Photos_8wekyb3d8bbwe\\Settings\\settings.dat\"\r\n    if (Test-Path $uwpPhotosSettings) {\r\n        [GC]::Collect()\r\n        reg.exe unload 'HKU\\TEMP' *>$null\r\n        taskkill /im photos.exe /f *>$null\r\n        reg.exe load HKU\\TEMP $uwpPhotosSettings >$null\r\n        if (!$revert) {\r\n            $regContent = @'\r\nWindows Registry Editor Version 5.00\r\n\r\n[HKEY_USERS\\TEMP\\LocalState] \r\n\"ImageCategorizationConsentDismissed\"=hex(5f5e10c):74,00,72,00,75,00,65,00,00,\\\r\n  00,4c,a0,89,0c,f7,2e,dc,01\r\n\"ImageCategorizationConsent\"=hex(5f5e10c):66,00,61,00,6c,00,73,00,65,00,00,00,\\\r\n  6c,c4,53,ae,c5,51,dc,01\r\n'@\r\n        }\r\n        else {\r\n            $regContent = @'\r\nWindows Registry Editor Version 5.00\r\n\r\n[HKEY_USERS\\TEMP\\LocalState]\r\n\"ImageCategorizationConsentDismissed\"=hex(5f5e10c):74,00,72,00,75,00,65,00,00,\\\r\n  00,4c,a0,89,0c,f7,2e,dc,01\r\n\"ImageCategorizationConsent\"=hex(5f5e10c):74,00,72,00,75,00,65,00,00,00,79,e7,\\\r\n  fe,c5,c4,51,dc,01\r\n'@\r\n        }\r\n       \r\n        \r\n        New-Item \"$($tempDir)DisableAIPhotos.reg\" -Value $regContent -Force | Out-Null\r\n        regedit.exe /s \"$($tempDir)DisableAIPhotos.reg\"\r\n        Start-Sleep 1\r\n        reg unload HKU\\TEMP >$null\r\n        Remove-Item \"$($tempDir)DisableAIPhotos.reg\" -Force -ErrorAction SilentlyContinue\r\n    }\r\n\r\n    #disable app actions\r\n    #method credit : https://github.com/agadiffe/WindowsMize\r\n    $settingsDat = \"$env:LOCALAPPDATA\\Packages\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\Settings\\settings.dat\"\r\n\r\n    if (Test-Path $settingsDat) {\r\n        Write-Status -msg \"$(@('Disabling','Enabling')[$revert]) App Actions...\"\r\n\r\n        $apps = @(\r\n            'Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe' \r\n            'Microsoft.Office.ActionsServer_8wekyb3d8bbwe' \r\n            'MSTeams_8wekyb3d8bbwe' \r\n            'Microsoft.Paint_8wekyb3d8bbwe' \r\n            'Microsoft.Windows.Photos_8wekyb3d8bbwe'\r\n            'MicrosoftWindows.Client.CBS_cw5n1h2txyewy' #describe image (system)\r\n        )\r\n     \r\n        foreach ($app in $apps) {\r\n            $setting = [PSCustomObject]@{\r\n                Name  = $app\r\n                Path  = 'LocalState\\DisabledApps'\r\n                Value = @('1', '0')[$revert] # 1 = disable    0 = enable\r\n                Type  = '5f5e10b'\r\n            }\r\n            \r\n            $setting | Set-UwpAppRegistryEntry -FilePath $settingsDat\r\n        }\r\n     \r\n    }\r\n    \r\n\r\n    #force policy changes\r\n    Write-Status -msg 'Applying Registry Changes...'\r\n    gpupdate /force /wait:0 >$null\r\n\r\n}\r\n\r\n\r\n\r\nfunction Install-NOAIPackage {\r\n    \r\n    if (!$revert) {\r\n        $package = Get-WindowsPackage -Online | Where-Object { $_.PackageName -like '*zoicware*' }\r\n        if (!$package) {\r\n            #check cpu arch\r\n            $arm = ((Get-CimInstance -Class Win32_ComputerSystem).SystemType -match 'ARM64') -or ($env:PROCESSOR_ARCHITECTURE -eq 'ARM64')\r\n            $arch = if ($arm) { 'arm64' } else { 'amd64' }\r\n            #add cert to registry\r\n            $certRegPath = 'HKLM:\\Software\\Microsoft\\SystemCertificates\\ROOT\\Certificates\\8A334AA8052DD244A647306A76B8178FA215F344'\r\n            if (!(Test-Path \"$certRegPath\")) {\r\n                New-Item -Path $certRegPath -Force | Out-Null\r\n            }\r\n\r\n            #check if script is being ran locally \r\n            if ((Test-Path \"$PSScriptRoot\\RemoveWindowsAIPackage\\amd64\") -and (Test-Path \"$PSScriptRoot\\RemoveWindowsAIPackage\\arm64\")) {\r\n                Write-Status -msg 'RemoveWindowsAI Packages Found Locally...'\r\n\r\n                Write-Status -msg 'Installing RemoveWindowsAI Package...'\r\n                try {\r\n                    Add-WindowsPackage -Online -PackagePath \"$PSScriptRoot\\RemoveWindowsAIPackage\\$arch\\ZoicwareRemoveWindowsAI-$($arch)1.0.0.0.cab\" -NoRestart -IgnoreCheck -ErrorAction Stop >$null\r\n                }\r\n                catch {\r\n                    #user is using powershell 7 use dism command as fallback\r\n                    dism.exe /Online /Add-Package /PackagePath:\"$PSScriptRoot\\RemoveWindowsAIPackage\\$arch\\ZoicwareRemoveWindowsAI-$($arch)1.0.0.0.cab\" /NoRestart /IgnoreCheck >$null\r\n                }\r\n           \r\n            }\r\n            else {\r\n                Write-Status -msg 'Downloading RemoveWindowsAI Package From Github...'\r\n                $ProgressPreference = 'SilentlyContinue'\r\n                try {\r\n                    Invoke-WebRequest -Uri \"https://github.com/zoicware/RemoveWindowsAI/raw/refs/heads/main/RemoveWindowsAIPackage/$arch/ZoicwareRemoveWindowsAI-$($arch)1.0.0.0.cab\" -OutFile \"$($tempDir)ZoicwareRemoveWindowsAI-$($arch)1.0.0.0.cab\" -UseBasicParsing -ErrorAction Stop\r\n                }\r\n                catch {\r\n                    Write-Status -msg \"Unable to Download Package at: https://github.com/zoicware/RemoveWindowsAI/raw/refs/heads/main/RemoveWindowsAIPackage/$arch/ZoicwareRemoveWindowsAI-$($arch)1.0.0.0.cab\" -errorOutput\r\n                    return\r\n                }\r\n\r\n                Write-Status -msg 'Installing RemoveWindowsAI Package...'\r\n                try {\r\n                    Add-WindowsPackage -Online -PackagePath \"$($tempDir)ZoicwareRemoveWindowsAI-$($arch)1.0.0.0.cab\" -NoRestart -IgnoreCheck -ErrorAction Stop >$null\r\n                }\r\n                catch {\r\n                    dism.exe /Online /Add-Package /PackagePath:\"$($tempDir)ZoicwareRemoveWindowsAI-$($arch)1.0.0.0.cab\" /NoRestart /IgnoreCheck >$null\r\n                }\r\n            }\r\n        }\r\n        else {\r\n            Write-Status -msg 'Update package already installed...'\r\n        }\r\n        \r\n        Write-Status -msg 'Checking update package install status...'\r\n        $package = Get-WindowsPackage -Online | Where-Object { $_.PackageName -like '*zoicware*' }\r\n        if ($package.PackageState -eq 'InstallPending') {\r\n            Write-Status -msg 'Package installed incorrectly... Uninstalling!' -errorOutput\r\n            try {\r\n                Remove-WindowsPackage -Online -PackageName $package.PackageName -NoRestart -ErrorAction Stop\r\n            }\r\n            catch {\r\n                dism.exe /Online /remove-package /PackageName:$($package.PackageName) /NoRestart\r\n            }\r\n            #remove reg install location \r\n            $regPath = 'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Component Based Servicing\\Packages'\r\n            Get-ChildItem $regPath | ForEach-Object {\r\n                $value = try { Get-ItemProperty \"registry::$($_.Name)\" -ErrorAction Stop } catch { $null }\r\n                if ($value -and $value.PSPath -like '*zoicware*') {\r\n                    Remove-Item -Path $value.PSPath -Recurse -Force\r\n                }\r\n            }\r\n        }\r\n    }\r\n    else {\r\n        \r\n        $package = Get-WindowsPackage -Online | Where-Object { $_.PackageName -like '*zoicware*' }\r\n        if ($package) {\r\n            Write-Status 'Removing Custom Windows Update Package...' \r\n            try {\r\n                Remove-WindowsPackage -Online -PackageName $package.PackageName -NoRestart -ErrorAction Stop\r\n            }\r\n            catch {\r\n                dism.exe /Online /remove-package /PackageName:$($package.PackageName) /NoRestart\r\n            }\r\n            #remove reg install location \r\n            $regPath = 'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Component Based Servicing\\Packages'\r\n            Get-ChildItem $regPath | ForEach-Object {\r\n                $value = try { Get-ItemProperty \"registry::$($_.Name)\" -ErrorAction Stop } catch { $null }\r\n                if ($value -and $value.PSPath -like '*zoicware*') {\r\n                    Remove-Item -Path $value.PSPath -Recurse -Force\r\n                }\r\n            }\r\n            \r\n        }\r\n        else {\r\n            Write-Status 'Unable to Find Update Package...' -errorOutput \r\n        }\r\n        \r\n    }\r\n\r\n}\r\n\r\n    \r\n    \r\nfunction Disable-Copilot-Policies {\r\n    #disable copilot policies in region policy json\r\n    $JSONPath = \"$env:windir\\System32\\IntegratedServicesRegionPolicySet.json\"\r\n    if (Test-Path $JSONPath) {\r\n        Write-Host \"$(@('Disabling','Enabling')[$revert]) CoPilot Policies in \" -NoNewline -ForegroundColor Cyan\r\n        Write-Host \"[$JSONPath]\" -ForegroundColor Yellow\r\n\r\n        #takeownership\r\n        takeown /f $JSONPath *>$null\r\n        icacls $JSONPath /grant *S-1-5-32-544:F /t *>$null\r\n\r\n        #edit the content\r\n        $jsonContent = Get-Content $JSONPath | ConvertFrom-Json\r\n        try {\r\n            $copilotPolicies = $jsonContent.policies | Where-Object { $_.'$comment' -like '*CoPilot*' }\r\n            foreach ($policies in $copilotPolicies) {\r\n                $policies.defaultState = @('disabled', 'enabled')[$revert]\r\n            }\r\n            $recallPolicies = $jsonContent.policies | Where-Object { $_.'$comment' -like '*A9*' -or $_.'$comment' -like '*Manage Recall*' -or $_.'$comment' -like '*Settings Agent*' }\r\n            foreach ($recallPolicy in $recallPolicies) {\r\n                if ($recallPolicy.'$comment' -like '*A9*') {\r\n                    $recallPolicy.defaultState = @('enabled', 'disabled')[$revert]\r\n                }\r\n                elseif ($recallPolicy.'$comment' -like '*Manage Recall*') {\r\n                    $recallPolicy.defaultState = @('disabled', 'enabled')[$revert]\r\n                }\r\n                elseif ($recallPolicy.'$comment' -like '*Settings Agent*') {\r\n                    $recallPolicy.defaultState = @('enabled', 'disabled')[$revert]\r\n                }\r\n            }\r\n            $newJSONContent = $jsonContent | ConvertTo-Json -Depth 100\r\n            Set-Content $JSONPath -Value $newJSONContent -Force\r\n            $total = ($copilotPolicies.count) + ($recallPolicies.count)\r\n            Write-Status -msg \"$total CoPilot Policies $(@('Disabled','Enabled')[$revert])\"\r\n        }\r\n        catch {\r\n            Write-Status -msg 'CoPilot Not Found in IntegratedServicesRegionPolicySet' -errorOutput \r\n        }\r\n\r\n    \r\n    }\r\n\r\n    #additional json path for visual assist \r\n    $visualAssistPath = \"$env:windir\\SystemApps\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\VisualAssist\\VisualAssistActions.json\"\r\n    if (Test-Path $visualAssistPath) {\r\n        Write-Status -msg \"$(@('Disabling','Enabling')[$revert]) Generative AI in Visual Assist...\"\r\n\r\n        takeown /f $visualAssistPath *>$null\r\n        icacls $visualAssistPath /grant *S-1-5-32-544:F /t *>$null\r\n\r\n        $jsoncontent = Get-Content $visualAssistPath | ConvertFrom-Json\r\n        $jsonContent.actions | Add-Member -MemberType NoteProperty -Name usesGenerativeAI -Value @($false, $true)[$revert] -force\r\n        $newJSONContent = $jsonContent | ConvertTo-Json -Depth 100\r\n        Set-Content $visualAssistPath -Value $newJSONContent -Force\r\n    }\r\n    \r\n}\r\n\r\n#function from: https://github.com/Andrew-J-Larson/OS-Scripts/blob/main/Windows/Wrapper-Functions/Download-AppxPackage-Function.ps1\r\nfunction Download-AppxPackage {\r\n    param(\r\n        # there has to be an alternative, as sometimes the API fails on PackageFamilyName\r\n        [string]$PackageFamilyName,\r\n        [string]$ProductId,\r\n        [string]$outputDir\r\n    )\r\n    if (-Not ($PackageFamilyName -Or $ProductId)) {\r\n        # can't do anything without at least one\r\n        Write-Error 'Missing either PackageFamilyName or ProductId.'\r\n        return $null\r\n    }\r\n      \r\n    try {\r\n        $UserAgent = [Microsoft.PowerShell.Commands.PSUserAgent]::Chrome # needed as sometimes the API will block things when it knows requests are coming from PowerShell\r\n    }\r\n    catch {\r\n        $UserAgent = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'\r\n    }\r\n      \r\n    $DownloadedFiles = @()\r\n    $errored = $false\r\n    $allFilesDownloaded = $true\r\n      \r\n    $apiUrl = 'https://store.rg-adguard.net/api/GetFiles'\r\n    $versionRing = 'Retail'\r\n      \r\n    $architecture = switch ($env:PROCESSOR_ARCHITECTURE) {\r\n        'x86' { 'x86' }\r\n        { @('x64', 'amd64') -contains $_ } { 'x64' }\r\n        'arm' { 'arm' }\r\n        'arm64' { 'arm64' }\r\n        default { 'neutral' } # should never get here\r\n    }\r\n      \r\n    if (Test-Path $outputDir -PathType Container) {\r\n        New-Item -Path \"$outputDir\\$PackageFamilyName\" -ItemType Directory -Force | Out-Null\r\n        $downloadFolder = \"$outputDir\\$PackageFamilyName\"\r\n    }\r\n    else {\r\n        \r\n        $downloadFolder = Join-Path $tempDir $PackageFamilyName\r\n        if (!(Test-Path $downloadFolder -PathType Container)) {\r\n            New-Item $downloadFolder -ItemType Directory -Force | Out-Null\r\n        }\r\n    }\r\n        \r\n    $body = @{\r\n        type = if ($ProductId) { 'ProductId' } else { 'PackageFamilyName' }\r\n        url  = if ($ProductId) { $ProductId } else { $PackageFamilyName }\r\n        ring = $versionRing\r\n        lang = 'en-US'\r\n    }\r\n\r\n    $headers = @{\r\n        'User-Agent'       = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36'\r\n        'Accept'           = 'application/json, text/javascript, */*; q=0.01'\r\n        'Content-Type'     = 'application/x-www-form-urlencoded; charset=UTF-8'\r\n        'X-Requested-With' = 'XMLHttpRequest'\r\n        'Origin'           = 'https://store.rg-adguard.net'\r\n        'Referer'          = 'https://store.rg-adguard.net/'\r\n    }\r\n      \r\n    # required due to the api being protected behind Cloudflare now\r\n    if (-Not $apiWebSession) {\r\n        $global:apiWebSession = $null\r\n        $apiHostname = (($apiUrl.split('/'))[0..2]) -Join '/'\r\n        Invoke-WebRequest -Uri $apiHostname -UserAgent $UserAgent -SessionVariable $apiWebSession -UseBasicParsing \r\n    }\r\n      \r\n    $raw = $null\r\n    try {\r\n        $raw = Invoke-RestMethod -Method Post -Uri $apiUrl -Headers $headers -Body $body -WebSession $apiWebSession\r\n    }\r\n    catch {\r\n        $errorMsg = 'An error occurred: ' + $_\r\n        Write-Host $errorMsg\r\n        $errored = $true\r\n        return $false\r\n    }\r\n      \r\n    # hashtable of packages by $name\r\n    #  > values = hashtables of packages by $version\r\n    #    > values = arrays of packages as objects (containing: url, filename, name, version, arch, publisherId, type)\r\n    [Collections.Generic.Dictionary[string, Collections.Generic.Dictionary[string, array]]] $packageList = @{}\r\n    # populate $packageList\r\n    $patternUrlAndText = '<tr style.*<a href=\\\"(?<url>.*)\"\\s.*>(?<text>.*\\.(app|msi)x.*)<\\/a>'\r\n    $raw | Select-String $patternUrlAndText -AllMatches | ForEach-Object { $_.Matches } | ForEach-Object {\r\n        $url = ($_.Groups['url']).Value\r\n        $text = ($_.Groups['text']).Value\r\n        $textSplitUnderscore = $text.split('_')\r\n        $name = $textSplitUnderscore.split('_')[0]\r\n        $version = $textSplitUnderscore.split('_')[1]\r\n        $arch = ($textSplitUnderscore.split('_')[2]).ToLower()\r\n        $publisherId = ($textSplitUnderscore.split('_')[4]).split('.')[0]\r\n        $textSplitPeriod = $text.split('.')\r\n        $type = ($textSplitPeriod[$textSplitPeriod.length - 1]).ToLower()\r\n      \r\n        # create $name hash key hashtable, if it doesn't already exist\r\n        if (!($packageList.keys -match ('^' + [Regex]::escape($name) + '$'))) {\r\n            $packageList[\"$name\"] = @{}\r\n        }\r\n        # create $version hash key array, if it doesn't already exist\r\n        if (!(($packageList[\"$name\"]).keys -match ('^' + [Regex]::escape($version) + '$'))) {\r\n            ($packageList[\"$name\"])[\"$version\"] = @()\r\n        }\r\n       \r\n        # add package to the array in the hashtable\r\n        ($packageList[\"$name\"])[\"$version\"] += @{\r\n            url         = $url\r\n            filename    = $text\r\n            name        = $name\r\n            version     = $version\r\n            arch        = $arch\r\n            publisherId = $publisherId\r\n            type        = $type\r\n        }\r\n    }\r\n      \r\n    # an array of packages as objects, meant to only contain one of each $name\r\n    $latestPackages = @()\r\n    # grabs the most updated package for $name and puts it into $latestPackages\r\n    $packageList.GetEnumerator() | ForEach-Object { ($_.value).GetEnumerator() | Select-Object -Last 1 } | ForEach-Object {\r\n        $packagesByType = $_.value\r\n        $msixbundle = ($packagesByType | Where-Object { $_.type -match '^msixbundle$' })\r\n        $appxbundle = ($packagesByType | Where-Object { $_.type -match '^appxbundle$' })\r\n        $msix = ($packagesByType | Where-Object { ($_.type -match '^msix$') -And ($_.arch -match ('^' + [Regex]::Escape($architecture) + '$')) })\r\n        $appx = ($packagesByType | Where-Object { ($_.type -match '^appx$') -And ($_.arch -match ('^' + [Regex]::Escape($architecture) + '$')) })\r\n        if ($msixbundle) { $latestPackages += $msixbundle }\r\n        elseif ($appxbundle) { $latestPackages += $appxbundle }\r\n        elseif ($msix) { $latestPackages += $msix }\r\n        elseif ($appx) { $latestPackages += $appx }\r\n    }\r\n      \r\n    # download packages\r\n    $latestPackages | ForEach-Object {\r\n        $url = $_.url\r\n        $filename = $_.filename\r\n        # TODO: may need to include detection in the future of expired package download URLs..... in the case that downloads take over 10 minutes to complete\r\n      \r\n        $downloadFile = Join-Path $downloadFolder $filename\r\n      \r\n        # If file already exists, ask to replace it\r\n        if (Test-Path $downloadFile) {\r\n            Write-Host \"`\"${filename}`\" already exists at `\"${downloadFile}`\".\"\r\n            $confirmation = ''\r\n            while (!(($confirmation -eq 'Y') -Or ($confirmation -eq 'N'))) {\r\n                $confirmation = Read-Host \"`nWould you like to re-download and overwrite the file at `\"${downloadFile}`\" (Y/N)?\"\r\n                $confirmation = $confirmation.ToUpper()\r\n            }\r\n            if ($confirmation -eq 'Y') {\r\n                Remove-Item -Path $downloadFile -Force\r\n            }\r\n            else {\r\n                $DownloadedFiles += $downloadFile\r\n            }\r\n        }\r\n      \r\n        if (!(Test-Path $downloadFile)) {\r\n            # Write-Host \"Attempting download of `\"${filename}`\" to `\"${downloadFile}`\" . . .\"\r\n            $fileDownloaded = $null\r\n            $PreviousProgressPreference = $ProgressPreference\r\n            $ProgressPreference = 'SilentlyContinue' # avoids slow download when using Invoke-WebRequest\r\n            try {\r\n                Invoke-WebRequest -Uri $url -OutFile $downloadFile\r\n                $fileDownloaded = $?\r\n            }\r\n            catch {\r\n                $ProgressPreference = $PreviousProgressPreference # return ProgressPreference back to normal\r\n                $errorMsg = 'An error occurred: ' + $_\r\n                Write-Host $errorMsg\r\n                $errored = $true\r\n                break $false\r\n            }\r\n            $ProgressPreference = $PreviousProgressPreference # return ProgressPreference back to normal\r\n            if ($fileDownloaded) { $DownloadedFiles += $downloadFile }\r\n            else { $allFilesDownloaded = $false }\r\n        }\r\n    }\r\n      \r\n    if ($errored) { Write-Host 'Completed with some errors.' }\r\n    if (-Not $allFilesDownloaded) { Write-Host 'Warning: Not all packages could be downloaded.' }\r\n    return $DownloadedFiles\r\n}\r\n\r\n\r\nfunction Remove-AI-Appx-Packages {\r\n\r\n    if ($revert) {\r\n\r\n        #download appx packages from store\r\n        $appxBackup = \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AppxBackup\"\r\n        if (Test-Path $appxBackup) {\r\n            $familyNames = Get-Content \"$appxBackup\\PackageFamilyNames.txt\"\r\n            foreach ($package in $familyNames) {\r\n                Write-Status -msg \"Attempting to Download $package...\"\r\n                $downloadedFiles = Download-AppxPackage -PackageFamilyName $package -outputDir $appxBackup\r\n                $bundle = $downloadedFiles | Where-Object { $_ -match '\\.appxbundle$' -or $_ -match '\\.msixbundle$' } | Select-Object -First 1\r\n                if ($bundle) {\r\n                    Write-Status -msg \"Installing $package...\"\r\n                    Add-AppPackage $bundle\r\n                }\r\n            }\r\n\r\n            #cleanup\r\n            Remove-Item \"$appxBackup\\*\" -Recurse -Force -ErrorAction SilentlyContinue\r\n        }\r\n        else {\r\n            Write-Status -msg 'Unable to Find AppxBackup in User Directory!' -errorOutput \r\n        }\r\n\r\n    }\r\n    else {\r\n\r\n        #to make this part faster make a txt file in temp with chunck of removal \r\n        #code and then just run that from run \r\n        #trusted function due to the design of having it hidden from the user\r\n        \r\n        $packageRemovalPath = \"$($tempDir)aiPackageRemoval.ps1\"\r\n        if (!(test-path $packageRemovalPath)) {\r\n            New-Item $packageRemovalPath -Force | Out-Null\r\n        }\r\n\r\n        #needed for separate powershell sessions\r\n        $aipackages = @(\r\n            # 'MicrosoftWindows.Client.Photon'\r\n            'MicrosoftWindows.Client.AIX'\r\n            'MicrosoftWindows.Client.CoPilot'\r\n            'Microsoft.Windows.Ai.Copilot.Provider'\r\n            'Microsoft.Copilot'\r\n            'Microsoft.MicrosoftOfficeHub'\r\n            'MicrosoftWindows.Client.CoreAI'\r\n            'Microsoft.Edge.GameAssist'\r\n            'Microsoft.Office.ActionsServer'\r\n            'aimgr'\r\n            'Microsoft.WritingAssistant'\r\n            #ai component packages installed on copilot+ pcs\r\n            'MicrosoftWindows.*.Voiess'\r\n            'MicrosoftWindows.*.Speion'\r\n            'MicrosoftWindows.*.Livtop'\r\n            'MicrosoftWindows.*.InpApp'\r\n            'MicrosoftWindows.*.Filons'\r\n            'WindowsWorkload.Data.Analysis.Stx.*'\r\n            'WindowsWorkload.Manager.*'\r\n            'WindowsWorkload.PSOnnxRuntime.Stx.*'\r\n            'WindowsWorkload.PSTokenizer.Stx.*'\r\n            'WindowsWorkload.QueryBlockList.*'\r\n            'WindowsWorkload.QueryProcessor.Data.*'\r\n            'WindowsWorkload.QueryProcessor.Stx.*'\r\n            'WindowsWorkload.SemanticText.Data.*'\r\n            'WindowsWorkload.SemanticText.Stx.*'\r\n            'WindowsWorkload.Data.ContentExtraction.Stx.*'\r\n            'WindowsWorkload.ScrRegDetection.Data.*'\r\n            'WindowsWorkload.ScrRegDetection.Stx.*'\r\n            'WindowsWorkload.TextRecognition.Stx.*'\r\n            'WindowsWorkload.Data.ImageSearch.Stx.*'\r\n            'WindowsWorkload.ImageContentModeration.*'\r\n            'WindowsWorkload.ImageContentModeration.Data.*'\r\n            'WindowsWorkload.ImageSearch.Data.*'\r\n            'WindowsWorkload.ImageSearch.Stx.*'\r\n            'WindowsWorkload.ImageTextSearch.Data.*'\r\n            'WindowsWorkload.PSOnnxRuntime.Stx.*'\r\n            'WindowsWorkload.PSTokenizerShared.Data.*'\r\n            'WindowsWorkload.PSTokenizerShared.Stx.*'\r\n            'WindowsWorkload.ImageTextSearch.Stx.*'\r\n        )\r\n\r\n        if ($backup) {\r\n\r\n            #create file with package family names for reverting\r\n            $appxBackup = \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AppxBackup\"\r\n            if (!(Test-Path $appxBackup)) {\r\n                New-Item $appxBackup -ItemType Directory -Force | Out-Null\r\n            }\r\n\r\n            $backuppath = New-Item $appxBackup -Name 'PackageFamilyNames.txt' -ItemType File -Force\r\n\r\n            $familyNames = get-appxpackage -allusers | Where-Object { $aipackages -contains $_.Name } \r\n            foreach ($familyName in $familyNames) {\r\n                Add-Content -Path $backuppath.FullName -Value $familyName.PackageFamilyName \r\n            }\r\n\r\n        }\r\n\r\n        $code = @'\r\n$aipackages = @(\r\n    'MicrosoftWindows.Client.AIX'\r\n    'MicrosoftWindows.Client.CoPilot'\r\n    'Microsoft.Windows.Ai.Copilot.Provider'\r\n    'Microsoft.Copilot'\r\n    'Microsoft.MicrosoftOfficeHub'\r\n    'MicrosoftWindows.Client.CoreAI'\r\n    'Microsoft.Edge.GameAssist'\r\n    'Microsoft.Office.ActionsServer'\r\n    'aimgr'\r\n    'Microsoft.WritingAssistant'\r\n    'MicrosoftWindows.*.Voiess'\r\n    'MicrosoftWindows.*.Speion'\r\n    'MicrosoftWindows.*.Livtop'\r\n    'MicrosoftWindows.*.InpApp'\r\n    'MicrosoftWindows.*.Filons'\r\n    'WindowsWorkload.Data.Analysis.Stx.*'\r\n    'WindowsWorkload.Manager.*'\r\n    'WindowsWorkload.PSOnnxRuntime.Stx.*'\r\n    'WindowsWorkload.PSTokenizer.Stx.*'\r\n    'WindowsWorkload.QueryBlockList.*'\r\n    'WindowsWorkload.QueryProcessor.Data.*'\r\n    'WindowsWorkload.QueryProcessor.Stx.*'\r\n    'WindowsWorkload.SemanticText.Data.*'\r\n    'WindowsWorkload.SemanticText.Stx.*'\r\n    'WindowsWorkload.Data.ContentExtraction.Stx.*'\r\n    'WindowsWorkload.ScrRegDetection.Data.*'\r\n    'WindowsWorkload.ScrRegDetection.Stx.*'\r\n    'WindowsWorkload.TextRecognition.Stx.*'\r\n    'WindowsWorkload.Data.ImageSearch.Stx.*'\r\n    'WindowsWorkload.ImageContentModeration.*'\r\n    'WindowsWorkload.ImageContentModeration.Data.*'\r\n    'WindowsWorkload.ImageSearch.Data.*'\r\n    'WindowsWorkload.ImageSearch.Stx.*'\r\n    'WindowsWorkload.ImageSearch.Stx.*'\r\n    'WindowsWorkload.ImageTextSearch.Data.*'\r\n    'WindowsWorkload.PSOnnxRuntime.Stx.*'\r\n    'WindowsWorkload.PSTokenizerShared.Data.*'\r\n    'WindowsWorkload.PSTokenizerShared.Stx.*'\r\n    'WindowsWorkload.ImageTextSearch.Stx.*'\r\n    'WindowsWorkload.ImageTextSearch.Stx.*'\r\n)\r\n\r\n$provisioned = get-appxprovisionedpackage -online \r\n$appxpackage = get-appxpackage -allusers\r\n$store = 'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore'\r\n$users = @('S-1-5-18'); if (test-path $store) { $users += $((Get-ChildItem $store -ea 0 | Where-Object { $_ -like '*S-1-5-21*' }).PSChildName) }\r\n\r\n#use eol trick to uninstall some locked packages\r\nforeach ($choice in $aipackages) {\r\n    foreach ($appx in $($provisioned | Where-Object { $_.PackageName -like \"*$choice*\" })) {\r\n\r\n        $PackageName = $appx.PackageName \r\n        $PackageFamilyName = ($appxpackage | Where-Object { $_.Name -eq $appx.DisplayName }).PackageFamilyName\r\n        New-Item \"$store\\Deprovisioned\\$PackageFamilyName\" -force\r\n     \r\n        Set-NonRemovableAppsPolicy -Online -PackageFamilyName $PackageFamilyName -NonRemovable 0\r\n        remove-appxprovisionedpackage -packagename $PackageName -online -allusers\r\n    }\r\n    foreach ($appx in $($appxpackage | Where-Object { $_.PackageFullName -like \"*$choice*\" })) {\r\n\r\n        $PackageFullName = $appx.PackageFullName\r\n        $PackageFamilyName = $appx.PackageFamilyName\r\n        New-Item \"$store\\Deprovisioned\\$PackageFamilyName\" -force\r\n        Set-NonRemovableAppsPolicy -Online -PackageFamilyName $PackageFamilyName -NonRemovable 0\r\n       \r\n        #remove inbox apps\r\n        $inboxApp = \"$store\\InboxApplications\\$PackageFullName\"\r\n        Remove-Item -Path $inboxApp -Force\r\n\r\n        #get all installed user sids for package due to not all showing up in reg\r\n        foreach ($user in $appx.PackageUserInformation) { \r\n            $sid = $user.UserSecurityID.SID\r\n            New-Item \"$store\\EndOfLife\\$sid\\$PackageFullName\" -force -verbose\r\n            remove-appxpackage -package $PackageFullName -User $sid \r\n        } \r\n        remove-appxpackage -package $PackageFullName -allusers\r\n\r\n        foreach ($sid in $users) { \r\n            New-Item \"$store\\EndOfLife\\$sid\\$PackageFullName\" -force\r\n        }  \r\n    }\r\n}\r\n'@\r\n        Set-Content -Path $packageRemovalPath -Value $code -Force \r\n        #allow removal script to run\r\n        try {\r\n            Set-ExecutionPolicy Unrestricted -Force -ErrorAction Stop\r\n        }\r\n        catch {\r\n            #user has set powershell execution policy via group policy or via settings, to change it we need to update the registry \r\n            try {\r\n                $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' -Name 'ExecutionPolicy' -ErrorAction Stop\r\n                Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'EnableScripts' /t REG_DWORD /d '1' /f >$null\r\n                Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n                $Global:executionPolicyUser = $false\r\n                $Global:executionPolicyMachine = $false\r\n                $Global:executionPolicyWow64 = $false\r\n                $Global:executionPolicyUserPol = $false\r\n            }\r\n            catch {\r\n                try {\r\n                    $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKCU:\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' -Name 'ExecutionPolicy' -ErrorAction Stop\r\n                    Reg.exe add 'HKCU\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n                    $Global:executionPolicyUser = $true\r\n                    $Global:executionPolicyMachine = $false\r\n                    $Global:executionPolicyWow64 = $false\r\n                    $Global:executionPolicyUserPol = $false\r\n                }\r\n                catch {\r\n                    try {\r\n                        $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKLM:\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' -Name 'ExecutionPolicy' -ErrorAction Stop\r\n                        Reg.exe add 'HKLM\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n                        $Global:executionPolicyUser = $false\r\n                        $Global:executionPolicyMachine = $true\r\n                        $Global:executionPolicyWow64 = $false\r\n                        $Global:executionPolicyUserPol = $false\r\n                    }\r\n                    catch {\r\n                        try {\r\n                            $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKLM:\\SOFTWARE\\Wow6432Node\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' -Name 'ExecutionPolicy' -ErrorAction Stop\r\n                            Reg.exe add 'HKLM\\SOFTWARE\\Wow6432Node\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n                            $Global:executionPolicyUser = $false\r\n                            $Global:executionPolicyMachine = $false\r\n                            $Global:executionPolicyWow64 = $true\r\n                            $Global:executionPolicyUserPol = $false\r\n\r\n                        }\r\n                        catch {\r\n                            $Global:ogExecutionPolicy = Get-ItemPropertyValue -Path 'HKCU:\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' -Name 'ExecutionPolicy' \r\n                            Reg.exe add 'HKCU\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'EnableScripts' /t REG_DWORD /d '1' /f >$null\r\n                            Reg.exe add 'HKCU\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d 'Unrestricted' /f >$null\r\n                            $Global:executionPolicyUser = $false\r\n                            $Global:executionPolicyMachine = $false\r\n                            $Global:executionPolicyWow64 = $false\r\n                            $Global:executionPolicyUserPol = $true\r\n                        }\r\n                        \r\n\r\n                    }\r\n                    \r\n                }\r\n               \r\n            }\r\n            \r\n           \r\n        }\r\n\r\n\r\n        Write-Status -msg 'Removing AI Appx Packages...'\r\n        $command = \"&`\"$($tempDir)aiPackageRemoval.ps1`\"\"\r\n        Run-Trusted -command $command -psversion $psversion\r\n\r\n        #check packages removal\r\n        #exit loop after 10 tries\r\n        $attempts = 0\r\n        do {\r\n            Start-Sleep 1\r\n            $packages = get-appxpackage -AllUsers | Where-Object { $aipackages -contains $_.Name }\r\n            if ($packages) {\r\n                $attempts++\r\n                if ($EnableLogging) {\r\n                    $Global:logInfo.Line = \"Attempting to Remove Appx Packages, Attempt: $attempts\"\r\n                    $Global:logInfo.Result = \"Found Packages: $packages\"\r\n                    Add-LogInfo -logPath $logPath -info $Global:logInfo\r\n                }\r\n                $command = \"&`\"$($tempDir)aiPackageRemoval.ps1`\"\"\r\n                Run-Trusted -command $command -psversion $psversion\r\n            }\r\n    \r\n        }while ($packages -and $attempts -lt 10)\r\n\r\n        if ($EnableLogging) {\r\n            if ($attempts -ge 10) {\r\n                Write-Status -msg 'Packages Removal Failed...' -errorOutput \r\n                $Global:logInfo.Line = 'Removing Appx Packages'\r\n                $Global:logInfo.Result = \"Removal Failed, Reached Max Attempts (10)... Leftover Packages: $packages\"\r\n                Add-LogInfo -logPath $logPath -info $Global:logInfo\r\n            }\r\n            else {\r\n                Write-Status -msg 'Packages Removed Sucessfully...'\r\n                $Global:logInfo.Line = 'Removing Appx Packages'\r\n                $Global:logInfo.Result = 'Removal Success'\r\n                Add-LogInfo -logPath $logPath -info $Global:logInfo\r\n            }\r\n        }\r\n        else {\r\n            if ($attempts -ge 10) {\r\n                Write-Status -msg 'Packages Removal Failed...' -errorOutput \r\n                Write-Status -msg 'Use the Enable Logging Switch to Get More Info...'\r\n            }\r\n            else {\r\n                Write-Status -msg 'Packages Removed Sucessfully...'\r\n            }\r\n        \r\n        }\r\n\r\n        #tell windows copilot pwa is already installed\r\n        Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\AutoInstalledPWAs' /v 'CopilotPWAPreinstallCompleted' /t REG_DWORD /d '1' /f *>$null\r\n        Reg.exe add 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\AutoInstalledPWAs' /v 'Microsoft.Copilot_8wekyb3d8bbwe' /t REG_DWORD /d '1' /f *>$null\r\n        #incase the user is on 25h2 and is using education or enterprise (required for this policy to work)\r\n        #uninstalls copilot with group policy (will ensure it doesnt get reinstalled)\r\n        Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\Appx\\RemoveDefaultMicrosoftStorePackages' /v 'Enabled' /t REG_DWORD /d '1' /f *>$null\r\n        Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\Appx\\RemoveDefaultMicrosoftStorePackages\\Microsoft.Copilot_8wekyb3d8bbwe' /v 'RemovePackage' /t REG_DWORD /d '1' /f *>$null\r\n        Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\Appx\\RemoveDefaultMicrosoftStorePackages\\Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe' /v 'RemovePackage' /t REG_DWORD /d '1' /f *>$null\r\n\r\n        ## undo eol unblock trick to prevent latest cumulative update (LCU) failing \r\n        #  $eolPath = 'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Appx\\AppxAllUserStore\\EndOfLife'\r\n        #  $eolKeys = (Get-ChildItem $eolPath).Name\r\n        #  foreach ($path in $eolKeys) {\r\n        #      Remove-Item \"registry::$path\" -Recurse -Force -ErrorAction SilentlyContinue\r\n        #  }\r\n    }\r\n\r\n}\r\n\r\nfunction Remove-Recall-Optional-Feature {\r\n    if (!$revert) {\r\n        #doesnt seem to work just gets stuck (does anyone really want this shit lol)\r\n        #Enable-WindowsOptionalFeature -Online -FeatureName 'Recall' -All -NoRestart\r\n        #remove recall optional feature \r\n        Write-Status -msg 'Removing Recall Optional Feature...'\r\n        try {\r\n            $state = (Get-WindowsOptionalFeature -Online -FeatureName 'Recall' -ErrorAction Stop).State\r\n            if ($state -and $state -ne 'DisabledWithPayloadRemoved') {\r\n                $ProgressPreference = 'SilentlyContinue'\r\n                try {\r\n                    Disable-WindowsOptionalFeature -Online -FeatureName 'Recall' -Remove -NoRestart -ErrorAction Stop *>$null\r\n                }\r\n                catch {\r\n                    #incase get-windowsoptionalfeature works but disable doesnt \r\n                    dism.exe /Online /Disable-Feature /FeatureName:Recall /Remove /NoRestart /Quiet\r\n                }\r\n            }\r\n        }\r\n        catch {\r\n            #if get-windowsoptionalfeature errors fallback to dism\r\n            $dismOutput = dism.exe /Online /Get-FeatureInfo /FeatureName:Recall\r\n    \r\n            if ($LASTEXITCODE -eq 0) {\r\n                $isDisabledWithPayloadRemoved = $dismOutput | Select-String -Pattern 'State\\s*:\\s*Disabled with Payload Removed'\r\n        \r\n                if (!$isDisabledWithPayloadRemoved) {\r\n                    dism.exe /Online /Disable-Feature /FeatureName:Recall /Remove /NoRestart /Quiet\r\n                }\r\n            }\r\n        }\r\n    }\r\n}\r\n\r\n# not restoring for now shouldnt cause any issues (also may not even be possible to restore)\r\nfunction Remove-AI-CBS-Packages {\r\n    if (!$revert) {\r\n        #additional hidden packages\r\n        Write-Status -msg 'Removing Additional Hidden AI Packages...'\r\n        #unhide the packages from dism, remove owners subkey for removal \r\n        $regPath = 'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Component Based Servicing\\Packages'\r\n        $ProgressPreference = 'SilentlyContinue'\r\n        Get-ChildItem $regPath | ForEach-Object {\r\n            $value = try { Get-ItemPropertyValue \"registry::$($_.Name)\" -Name Visibility -ErrorAction Stop } catch { $null }\r\n    \r\n            if ($value -ne $null) {\r\n                if ($value -eq 2 -and $_.PSChildName -like '*AIX*' -or $_.PSChildName -like '*Recall*' -or $_.PSChildName -like '*Copilot*' -or $_.PSChildName -like '*CoreAI*') {\r\n                    Set-ItemProperty \"registry::$($_.Name)\" -Name Visibility -Value 1 -Force\r\n                    New-ItemProperty \"registry::$($_.Name)\" -Name DefVis -PropertyType DWord -Value 2 -Force | Out-Null\r\n                    Remove-Item \"registry::$($_.Name)\\Owners\" -Force -ErrorAction SilentlyContinue\r\n                    Remove-Item \"registry::$($_.Name)\\Updates\" -Force -ErrorAction SilentlyContinue\r\n                    try {\r\n                        Remove-WindowsPackage -Online -PackageName $_.PSChildName -NoRestart -ErrorAction Stop *>$null\r\n                        $paths = Get-ChildItem \"$env:windir\\servicing\\Packages\" -Filter \"*$($_.PSChildName)*\" -ErrorAction SilentlyContinue \r\n                        foreach ($path in $paths) {\r\n                            if ($path) {\r\n                                Remove-Item $path.FullName -Force -ErrorAction SilentlyContinue\r\n                            }\r\n                        }\r\n                        \r\n                    }\r\n                    catch {\r\n                        #fallback to dism when user is using powershell 7\r\n                        dism.exe /Online /Remove-Package /PackageName:$($_.PSChildName) /NoRestart /Quiet\r\n                        $paths = Get-ChildItem \"$env:windir\\servicing\\Packages\" -Filter \"*$($_.PSChildName)*\" -ErrorAction SilentlyContinue \r\n                        foreach ($path in $paths) {\r\n                            if ($path) {\r\n                                Remove-Item $path.FullName -Force -ErrorAction SilentlyContinue\r\n                            }\r\n                        }                    \r\n                    }\r\n        \r\n                }\r\n            }\r\n            \r\n        }\r\n    }\r\n}\r\n\r\n\r\nfunction Remove-AI-Files {\r\n    #prob add params here for each file removal \r\n\r\n\r\n    if ($revert) {\r\n        if (Test-Path \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\") {\r\n            Write-Status -msg 'Restoring Appx Package Files...'\r\n            $paths = Get-Content \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\backupPaths.txt\"\r\n            foreach ($path in $paths) {\r\n                $fileName = Split-Path $path -Leaf\r\n                $dest = Split-Path $path -Parent\r\n                try {\r\n                    Move-Item -Path \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\$fileName\" -Destination $dest -Force -ErrorAction Stop\r\n                }\r\n                catch {\r\n                    $command = \"Move-Item -Path `\"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\$fileName`\" -Destination `\"$dest`\" -Force\"\r\n                    Run-Trusted -command $command -psversion $psversion\r\n                    Start-Sleep 1\r\n                }\r\n            }\r\n\r\n            if (Test-Path \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\OfficeAI\") {\r\n                Write-Status -msg 'Restoring Office AI Files...'\r\n                Move-Item \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\OfficeAI\\x64\\AI\" -Destination \"$env:ProgramFiles\\Microsoft Office\\root\\vfs\\ProgramFilesCommonX64\\Microsoft Shared\\Office16\" -Force \r\n                Move-Item \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\OfficeAI\\x86\\AI\" -Destination \"$env:ProgramFiles\\Microsoft Office\\root\\vfs\\ProgramFilesCommonX64\\Microsoft Shared\\Office16\" -Force \r\n                Move-Item \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\OfficeAI\\RootAI\\AI\" -Destination \"$env:ProgramFiles\\Microsoft Office\\root\\Office16\" -Force \r\n                Move-Item \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\OfficeAI\\ActionsServer\\ActionsServer\" -Destination \"$env:ProgramFiles\\Microsoft Office\\root\\vfs\\ProgramFilesCommonX64\\Microsoft Shared\\Office16\" -Force \r\n                Get-ChildItem \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\OfficeAI\" -Filter '*.msix' | ForEach-Object {\r\n                    Move-Item $_.FullName -Destination \"$env:ProgramFiles\\Microsoft Office\\root\\Integration\\Addons\" -Force\r\n                }\r\n            }\r\n\r\n            Write-Status -msg 'Restoring AI URIs...'\r\n            $regs = Get-ChildItem \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\URIHandlers\"\r\n            foreach ($reg in $regs) {\r\n                Reg.exe import $reg.FullName *>$null\r\n            }\r\n           \r\n            Write-Status -msg 'Files Restored... You May Need to Repair the Apps Using the Microsoft Store'\r\n        }\r\n        else {\r\n            Write-Status -msg 'Unable to Find Backup Files!' -errorOutput \r\n        }\r\n       \r\n        <#\r\n        if (Test-Path \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\CompStorage\"){\r\n            Get-ChildItem \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\CompStorage\" -Filter \"*.reg\"\r\n        }else{\r\n            Write-Status -msg 'Unable to Find Component Storage Backup!' -errorOutput \r\n        }\r\n        #>\r\n    }\r\n    else {\r\n\r\n        $aipackages = @(\r\n            # 'MicrosoftWindows.Client.Photon'\r\n            'MicrosoftWindows.Client.AIX'\r\n            'MicrosoftWindows.Client.CoPilot'\r\n            'Microsoft.Windows.Ai.Copilot.Provider'\r\n            'Microsoft.Copilot'\r\n            'Microsoft.MicrosoftOfficeHub'\r\n            'MicrosoftWindows.Client.CoreAI'\r\n            'Microsoft.Edge.GameAssist'\r\n            'Microsoft.Office.ActionsServer'\r\n            'aimgr'\r\n            'Microsoft.WritingAssistant'\r\n            #ai component packages installed on copilot+ pcs\r\n            'WindowsWorkload'\r\n            'Voiess'\r\n            'Speion'\r\n            'Livtop'\r\n            'InpApp'\r\n            'Filons'\r\n        )\r\n\r\n        Write-Status -msg 'Removing Appx Package Files...'\r\n        Write-Status -msg 'This could take a while on some systems, please be patient!' -warningOutput\r\n        #-----------------------------------------------------------------------remove files\r\n        $appsPath = \"$env:SystemRoot\\SystemApps\"\r\n        if (!(Test-Path $appsPath)) {\r\n            $appsPath = \"$env:windir\\SystemApps\"\r\n        }\r\n        $appsPath2 = \"$env:ProgramFiles\\WindowsApps\"\r\n    \r\n        $appsPath3 = \"$env:ProgramData\\Microsoft\\Windows\\AppRepository\"\r\n    \r\n        $appsPath4 = \"$env:SystemRoot\\servicing\\Packages\"\r\n        if (!(Test-Path $appsPath4)) {\r\n            $appsPath4 = \"$env:windir\\servicing\\Packages\"\r\n        }\r\n    \r\n        $appsPath5 = \"$env:SystemRoot\\System32\\CatRoot\"\r\n        if (!(Test-Path $appsPath5)) {\r\n            $appsPath5 = \"$env:windir\\System32\\CatRoot\"\r\n        }\r\n\r\n        $appsPath6 = \"$env:SystemRoot\\SystemApps\\SxS\"\r\n        if (!(Test-Path $appsPath6)) {\r\n            $appsPath6 = \"$env:windir\\SystemApps\\SxS\"\r\n        }\r\n\r\n        $paths = @(\r\n            $appsPath,\r\n            $appsPath2,\r\n            $appsPath3,\r\n            $appsPath6\r\n        )\r\n\r\n        $jobs = foreach ($path in $paths) {\r\n            $rs = [powershell]::Create().AddScript({\r\n                    param($path)\r\n                    (Get-ChildItem -Path $path -Directory -Force -ErrorAction SilentlyContinue).FullName  \r\n                }).AddParameter('path', $path)\r\n    \r\n            [pscustomobject]@{\r\n                Runspace = $rs\r\n                Handle   = $rs.BeginInvoke()\r\n            }\r\n        }\r\n\r\n        $fullPaths = foreach ($job in $jobs) {\r\n            $job.Runspace.EndInvoke($job.Handle)\r\n            $job.Runspace.Dispose()\r\n        }\r\n\r\n\r\n        $packagesPath = @()\r\n        foreach ($package in $aipackages) {\r\n            foreach ($path in $fullPaths) {\r\n                if ($path -like \"*$package*\") {\r\n                    $packagesPath += $path\r\n                }\r\n            }\r\n        }\r\n\r\n        $paths = @($appsPath4, $appsPath5)\r\n        $jobs = foreach ($path in $paths) {\r\n            $rs = [powershell]::Create().AddScript({\r\n                    param($path)\r\n                    (Get-ChildItem -Path $path -Directory -Force -ErrorAction SilentlyContinue | \r\n                    Where-Object { $_.FullName -like '*UserExperience-AIX*' -or \r\n                        $_.FullName -like '*Copilot*' -or \r\n                        $_.FullName -like '*UserExperience-Recall*' -or \r\n                        $_.FullName -like '*CoreAI*' \r\n                    }).FullName\r\n                }).AddParameter('path', $path)\r\n    \r\n            [pscustomobject]@{\r\n                Runspace = $rs\r\n                Handle   = $rs.BeginInvoke()\r\n            }\r\n        }\r\n\r\n        $packagesPath += foreach ($job in $jobs) {\r\n            $job.Runspace.EndInvoke($job.Handle)\r\n            $job.Runspace.Dispose()\r\n        }\r\n\r\n\r\n        #add app actions mcp host\r\n        $paths = @(\r\n            \"$env:LOCALAPPDATA\\Microsoft\\WindowsApps\\ActionsMcpHost.exe\"\r\n            \"$env:SystemRoot\\System32\\config\\systemprofile\\AppData\\Local\\Microsoft\\WindowsApps\\ActionsMcpHost.exe\"\r\n            \"$env:SystemRoot\\System32\\config\\systemprofile\\AppData\\Local\\Microsoft\\WindowsApps\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\ActionsMcpHost.exe\"\r\n            \"$env:LOCALAPPDATA\\Microsoft\\WindowsApps\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\ActionsMcpHost.exe\"\r\n        )\r\n\r\n        foreach ($path in $paths) {\r\n            if (Test-Path $path) {\r\n                $packagesPath += $path\r\n            }\r\n        }\r\n\r\n        foreach ($packageName in $aipackages) {\r\n            $path = Get-ChildItem \"$env:LOCALAPPDATA\\Packages\" -Filter \"*$packageName*\" \r\n            if ($path) {\r\n                $packagesPath += $path.FullName\r\n            }\r\n            \r\n        }\r\n\r\n    \r\n        if ($backup) {\r\n            Write-Status -msg 'Backing Up AI Files...'\r\n            $backupDir = \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\"\r\n            if (!(Test-Path $backupDir)) {\r\n                New-Item $backupDir -Force -ItemType Directory | Out-Null\r\n            }\r\n        }\r\n\r\n        foreach ($Path in $packagesPath) {\r\n            #only remove dlls from photon to prevent startmenu from breaking\r\n            # if ($path -like '*Photon*') {\r\n            #     $command = \"`$dlls = (Get-ChildItem -Path $Path -Filter *.dll).FullName; foreach(`$dll in `$dlls){Remove-item \"\"`$dll\"\" -force}\"\r\n            #     Run-Trusted -command $command -psversion $psversion\r\n            #     Start-Sleep 1\r\n            # }\r\n            # else {\r\n\r\n            if ($backup) {\r\n                $backupFiles = \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\backupPaths.txt\"\r\n                if (!(Test-Path $backupFiles -PathType Leaf)) {\r\n                    New-Item $backupFiles -Force -ItemType File | Out-Null\r\n                }\r\n                try {\r\n                    Copy-Item -Path $Path -Destination $backupDir -Force -Recurse -ErrorAction Stop\r\n                    Add-Content -Path $backupFiles -Value $Path\r\n                }\r\n                catch {\r\n                    #ignore any errors\r\n                }\r\n            }\r\n            $command = \"Remove-item \"\"$Path\"\" -force -recurse\"\r\n            Run-Trusted -command $command -psversion $psversion\r\n           \r\n        }\r\n\r\n        #remove machine learning dlls\r\n        $paths = @(\r\n            \"$env:SystemRoot\\System32\\Windows.AI.MachineLearning.dll\"\r\n            \"$env:SystemRoot\\SysWOW64\\Windows.AI.MachineLearning.dll\"\r\n            \"$env:SystemRoot\\System32\\Windows.AI.MachineLearning.Preview.dll\"\r\n            \"$env:SystemRoot\\SysWOW64\\Windows.AI.MachineLearning.Preview.dll\"\r\n            \"$env:SystemRoot\\System32\\SettingsHandlers_Copilot.dll\"\r\n            \"$env:SystemRoot\\System32\\SettingsHandlers_A9.dll\"\r\n        )\r\n        foreach ($path in $paths) {\r\n            if (Test-Path $path) {\r\n                takeown /f $path *>$null\r\n                icacls $path /grant *S-1-5-32-544:F /t *>$null\r\n                try {\r\n                    Remove-Item -Path $path -Force -ErrorAction Stop\r\n                }\r\n                catch {\r\n                    #takeown didnt work remove file with system priv\r\n                    $command = \"Remove-Item -Path $path -Force\"\r\n                    Run-Trusted -command $command -psversion $psversion\r\n                }\r\n            }\r\n        }\r\n    \r\n        Write-Status -msg 'Removing Hidden Copilot Installers...'\r\n        #remove package installers in edge dir\r\n        #installs Microsoft.Windows.Ai.Copilot.Provider\r\n        $dir = \"${env:ProgramFiles(x86)}\\Microsoft\"\r\n        $folders = @(\r\n            'Edge',\r\n            'EdgeCore',\r\n            'EdgeWebView'\r\n        )\r\n        foreach ($folder in $folders) {\r\n            if ($folder -eq 'EdgeCore') {\r\n                #edge core doesnt have application folder\r\n                $fullPath = (Get-ChildItem -Path \"$dir\\$folder\\*.*.*.*\\copilot_provider_msix\" -ErrorAction SilentlyContinue).FullName\r\n            \r\n            }\r\n            else {\r\n                $fullPath = (Get-ChildItem -Path \"$dir\\$folder\\Application\\*.*.*.*\\copilot_provider_msix\" -ErrorAction SilentlyContinue).FullName\r\n            }\r\n            if ($fullPath -ne $null) { Remove-Item -Path $fullPath -Recurse -Force -ErrorAction SilentlyContinue }\r\n        }\r\n    \r\n\r\n        #remove copilot update in edge update dir\r\n        $dir = \"${env:ProgramFiles(x86)}\\Microsoft\\EdgeUpdate\"\r\n        if (Test-Path $dir) {\r\n            $paths = Get-ChildItem $dir -Recurse -Filter '*CopilotUpdate.exe*' \r\n            foreach ($path in $paths) {\r\n                if (Test-Path $path.FullName) {\r\n                    Remove-Item $path.FullName -Force\r\n                }\r\n            }\r\n        }\r\n\r\n        $dir = \"${env:ProgramFiles(x86)}\\Microsoft\"\r\n        if (Test-Path $dir) {\r\n            $paths = Get-ChildItem $dir -Recurse -Filter '*Copilot_setup*' \r\n            foreach ($path in $paths) {\r\n                if (Test-Path $path.FullName) {\r\n                    Remove-Item $path.FullName -Force\r\n                }\r\n            }\r\n        }\r\n\r\n        Reg.exe delete 'HKLM\\SOFTWARE\\Microsoft\\EdgeUpdate' /v 'CopilotUpdatePath' /f *>$null\r\n        Reg.exe delete 'HKLM\\SOFTWARE\\WOW6432Node\\Microsoft\\EdgeUpdate' /v 'CopilotUpdatePath' /f *>$null\r\n    \r\n        #remove additional installers\r\n        $inboxapps = 'C:\\Windows\\InboxApps'\r\n        $installers = Get-ChildItem -Path $inboxapps -Filter '*Copilot*'\r\n        foreach ($installer in $installers) {\r\n            takeown /f $installer.FullName *>$null\r\n            icacls $installer.FullName /grant *S-1-5-32-544:F /t *>$null\r\n            try {\r\n                Remove-Item -Path $installer.FullName -Force -ErrorAction Stop\r\n            }\r\n            catch {\r\n                #takeown didnt work remove file with system priv\r\n                $command = \"Remove-Item -Path $($installer.FullName) -Force\"\r\n                Run-Trusted -command $command -psversion $psversion\r\n            }\r\n        \r\n        }\r\n    \r\n    \r\n        #remove ai from outlook/office\r\n        $aiPaths = @(\r\n            \"$env:ProgramFiles\\Microsoft Office\\root\\vfs\\ProgramFilesCommonX64\\Microsoft Shared\\Office16\\AI\",\r\n            \"$env:ProgramFiles\\Microsoft Office\\root\\vfs\\ProgramFilesCommonX86\\Microsoft Shared\\Office16\\AI\",\r\n            \"$env:ProgramFiles\\Microsoft Office\\root\\Office16\\AI\",\r\n            \"$env:ProgramFiles\\Microsoft Office\\root\\vfs\\ProgramFilesCommonX64\\Microsoft Shared\\Office16\\ActionsServer\",\r\n            \"$env:ProgramFiles\\Microsoft Office\\root\\Integration\\Addons\\aimgr.msix\",\r\n            \"$env:ProgramFiles\\Microsoft Office\\root\\Integration\\Addons\\WritingAssistant.msix\",\r\n            \"$env:ProgramFiles\\Microsoft Office\\root\\Integration\\Addons\\ActionsServer.msix\"\r\n        )\r\n    \r\n        foreach ($path in $aiPaths) {\r\n            if (Test-Path $path -ErrorAction SilentlyContinue) {\r\n                if ($backup) {\r\n                    Write-Status -msg 'Backing Up Office AI Files...'\r\n                    $backupDir = \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\OfficeAI\"\r\n                    if (!(Test-Path $backupDir)) {\r\n                        New-Item $backupDir -Force -ItemType Directory | Out-Null\r\n                    }\r\n\r\n                    if ($path -eq \"$env:ProgramFiles\\Microsoft Office\\root\\vfs\\ProgramFilesCommonX64\\Microsoft Shared\\Office16\\AI\") {\r\n                        $backupDir = \"$backupDir\\x64\"\r\n                        New-Item $backupDir -Force -ItemType Directory | Out-Null\r\n                    }\r\n                    elseif ($path -eq \"$env:ProgramFiles\\Microsoft Office\\root\\vfs\\ProgramFilesCommonX86\\Microsoft Shared\\Office16\\AI\") {\r\n                        $backupDir = \"$backupDir\\x86\"\r\n                        New-Item $backupDir -Force -ItemType Directory | Out-Null\r\n                    }\r\n                    elseif ($path -eq \"$env:ProgramFiles\\Microsoft Office\\root\\Office16\\AI\") {\r\n                        $backupDir = \"$backupDir\\RootAI\"\r\n                        New-Item $backupDir -Force -ItemType Directory | Out-Null\r\n                    }\r\n                    elseif ($path -eq \"$env:ProgramFiles\\Microsoft Office\\root\\vfs\\ProgramFilesCommonX64\\Microsoft Shared\\Office16\\ActionsServer\") {\r\n                        $backupDir = \"$backupDir\\ActionsServer\"\r\n                        New-Item $backupDir -Force -ItemType Directory | Out-Null\r\n                    }\r\n                    else {\r\n                        $backupDir = \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\OfficeAI\"\r\n                    }\r\n                    Copy-Item -Path $path -Destination $backupDir -Force -Recurse -ErrorAction SilentlyContinue\r\n                }\r\n                try {\r\n                    Remove-Item $path -Recurse -Force -ErrorAction Stop\r\n                }\r\n                catch {\r\n                    $command = \"Remove-Item $path -Recurse -Force\"\r\n                    Run-Trusted -command $command -psversion $psversion\r\n                    Start-Sleep 1\r\n                }\r\n                \r\n            }\r\n        }\r\n\r\n        #remove any screenshots from recall\r\n        Write-Status -msg 'Removing Any Screenshots By Recall...'\r\n        Remove-Item -Path \"$env:LOCALAPPDATA\\CoreAIPlatform*\" -Force -Recurse -ErrorAction SilentlyContinue\r\n        if ($env:OneDrive) {\r\n            Remove-Item -Path \"$env:OneDrive\\Microsoft Copilot Chat Files\" -Force -Recurse -ErrorAction SilentlyContinue\r\n        }\r\n       \r\n        #remove ai uri handlers\r\n        Write-Status -msg 'Removing AI URI Handlers...'\r\n        $uris = @(\r\n            'registry::HKEY_CLASSES_ROOT\\ms-office-ai'\r\n            'registry::HKEY_CLASSES_ROOT\\ms-copilot'\r\n            'registry::HKEY_CLASSES_ROOT\\ms-clicktodo'\r\n        )\r\n\r\n        foreach ($uri in $uris) {\r\n            if ($backup) {\r\n                if (Test-Path $uri) {\r\n                    $backupDir = \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\AIFiles\\URIHandlers\"\r\n                    if (!(Test-Path $backupDir)) {\r\n                        New-Item $backupDir -Force -ItemType Directory | Out-Null\r\n                    }\r\n                    $regExportPath = \"$backupDir\\$($uri -replace 'registry::HKEY_CLASSES_ROOT\\\\', '').reg\"\r\n                    Reg.exe export ($uri -replace 'registry::', '') $regExportPath /y *>$null\r\n                }\r\n            }\r\n            Remove-Item $uri -Recurse -Force -ErrorAction SilentlyContinue\r\n        }\r\n\r\n        #prefire copilot nudges package by deleting the registry keys \r\n        Write-Status -msg 'Removing Copilot Nudges Registry Keys...'\r\n        $keys = @(\r\n            'registry::HKCR\\Extensions\\ContractId\\Windows.BackgroundTasks\\PackageId\\MicrosoftWindows.Client.Core_*.*.*.*_x64__cw5n1h2txyewy\\ActivatableClassId\\Global.CopilotNudges.AppX*.wwa',\r\n            'registry::HKCR\\Extensions\\ContractId\\Windows.Launch\\PackageId\\MicrosoftWindows.Client.Core_*.*.*.*_x64__cw5n1h2txyewy\\ActivatableClassId\\Global.CopilotNudges.wwa',\r\n            'registry::HKCR\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\MicrosoftWindows.Client.Core_*.*.*.*_x64__cw5n1h2txyewy\\Applications\\MicrosoftWindows.Client.Core_cw5n1h2txyewy!Global.CopilotNudges',\r\n            'HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages\\MicrosoftWindows.Client.Core_*.*.*.*_x64__cw5n1h2txyewy\\Applications\\MicrosoftWindows.Client.Core_cw5n1h2txyewy!Global.CopilotNudges',\r\n            'HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\PushNotifications\\Backup\\MicrosoftWindows.Client.Core_cw5n1h2txyewy!Global.CopilotNudges',\r\n            'HKLM:\\SOFTWARE\\Classes\\Extensions\\ContractId\\Windows.BackgroundTasks\\PackageId\\MicrosoftWindows.Client.Core_*.*.*.*_x64__cw5n1h2txyewy\\ActivatableClassId\\Global.CopilotNudges.AppX*.wwa',\r\n            'HKLM:\\SOFTWARE\\Classes\\Extensions\\ContractId\\Windows.BackgroundTasks\\PackageId\\MicrosoftWindows.Client.Core_*.*.*.*_x64__cw5n1h2txyewy\\ActivatableClassId\\Global.CopilotNudges.AppX*.mca',\r\n            'HKLM:\\SOFTWARE\\Classes\\Extensions\\ContractId\\Windows.Launch\\PackageId\\MicrosoftWindows.Client.Core_*.*.*.*_x64__cw5n1h2txyewy\\ActivatableClassId\\Global.CopilotNudges.wwa'\r\n        )\r\n        #get full paths and remove\r\n        $fullkey = @()\r\n        foreach ($key in $keys) {\r\n            try {\r\n                $fullKey = Get-Item -Path $key -ErrorAction Stop\r\n                if ($null -eq $fullkey) { continue }\r\n                if ($fullkey.Length -gt 1) {\r\n                    foreach ($multikey in $fullkey) {\r\n                        $command = \"Remove-Item -Path `\"registry::$multikey`\" -Force -Recurse\"\r\n                        Run-Trusted -command $command -psversion $psversion\r\n                        Start-Sleep 1\r\n                        #remove any regular admin that have trusted installer bug\r\n                        Remove-Item -Path \"registry::$multikey\" -Force -Recurse -ErrorAction SilentlyContinue\r\n                    }\r\n                }\r\n                else {\r\n                    $command = \"Remove-Item -Path `\"registry::$fullKey`\" -Force -Recurse\"\r\n                    Run-Trusted -command $command -psversion $psversion\r\n                    Start-Sleep 1\r\n                    #remove any regular admin that have trusted installer bug\r\n                    Remove-Item -Path \"registry::$fullKey\" -Force -Recurse -ErrorAction SilentlyContinue\r\n                }\r\n         \r\n            }\r\n            catch {\r\n                continue\r\n            }\r\n        }\r\n\r\n        #remove ai app checks in updates (not sure if this does anything)\r\n        $command = \"Reg.exe delete 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell\\Update\\Packages\\MicrosoftWindows.Client.CoreAI_cw5n1h2txyewy' /f\"\r\n        Run-Trusted -command $command -psversion $psversion\r\n        Reg.exe delete 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell\\Update\\Packages\\Components' /v 'AIX' /f *>$null\r\n        Reg.exe delete 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell\\Update\\Packages\\Components' /v 'CopilotNudges' /f *>$null\r\n        Reg.exe delete 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Shell\\Update\\Packages\\Components' /v 'AIContext' /f *>$null\r\n\r\n        reg.exe delete 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\ActionsMcpHost.exe' /f *>$null\r\n        reg.exe delete 'HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\ActionsMcpHost.exe' /f *>$null\r\n\r\n        #remove app actions files \r\n        #these will get remade when updating\r\n        taskkill.exe /im AppActions.exe /f *>$null\r\n        taskkill.exe /im VisualAssist.exe /f *>$null\r\n        $paths = @(\r\n            \"$env:windir\\SystemApps\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\ActionUI\"\r\n            \"$env:windir\\SystemApps\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\VisualAssist\"\r\n            \"$env:windir\\SystemApps\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\AppActions.exe\"\r\n            \"$env:windir\\SystemApps\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\AppActions.dll\"\r\n            \"$env:windir\\SystemApps\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\VisualAssistExe.exe\"\r\n            \"$env:windir\\SystemApps\\MicrosoftWindows.Client.CBS_cw5n1h2txyewy\\VisualAssistExe.dll\"\r\n        )\r\n\r\n        Write-Status -msg 'Removing App Actions Files...'\r\n        foreach ($path in $paths) {\r\n            if (Test-Path $path) {\r\n                if ((Get-Item $path).PSIsContainer) {\r\n                    takeown /f \"$path\" /r /d Y *>$null\r\n                    icacls \"$path\" /grant *S-1-5-32-544:F /t *>$null\r\n                    Remove-Item \"$path\" -Force -Recurse -ErrorAction SilentlyContinue\r\n                }\r\n                else {\r\n                    takeown /f \"$path\" *>$null\r\n                    icacls \"$path\" /grant *S-1-5-32-544:F /t *>$null\r\n                    Remove-Item \"$path\" -Force -ErrorAction SilentlyContinue\r\n                }\r\n            }\r\n        }\r\n        \r\n\r\n        Write-Status -msg 'Removing AI From Component Store (WinSxS)...'\r\n        Write-Status -msg 'This could take a while on some systems, please be patient!' -warningOutput\r\n        #additional dirs and reg keys\r\n        $aiKeyWords = @(\r\n            'AIX',\r\n            'Copilot',\r\n            'Recall',\r\n            'CoreAI',\r\n            'aimgr'\r\n        )\r\n        $regLocations = @(\r\n            'registry::HKCR\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppContainer\\Storage',\r\n            'HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppContainer\\Storage',\r\n            'registry::HKCR\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages',\r\n            'HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\Repository\\Packages',\r\n            'registry::HKCR\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData',\r\n            'HKCU:\\Software\\Classes\\Local Settings\\Software\\Microsoft\\Windows\\CurrentVersion\\AppModel\\SystemAppData',\r\n            'registry::HKCR\\PackagedCom\\Package',\r\n            'HKCU:\\Software\\Classes\\PackagedCom\\Package',\r\n            'HKCU:\\Software\\RegisteredApplications',\r\n            'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\SideBySide\\Winners'\r\n        )\r\n        $dirs = @(\r\n            'C:\\Windows\\WinSxS',\r\n            'C:\\Windows\\System32\\CatRoot'\r\n        )\r\n        \r\n        New-Item \"$($tempDir)PathsToDelete.txt\" -ItemType File -Force | Out-Null\r\n        foreach ($keyword in $aiKeyWords) {\r\n            foreach ($location in $regLocations) {\r\n                Get-ChildItem $location -Recurse -ErrorAction SilentlyContinue | Where-Object { $_.PSChildName -like \"*$keyword*\" } | ForEach-Object {\r\n                    try {\r\n                        Remove-Item $_.PSPath -Recurse -Force -ErrorAction Stop\r\n                    }\r\n                    catch {\r\n                        #ignore when path is null\r\n                    }\r\n                    \r\n                }\r\n            }\r\n\r\n        }\r\n\r\n        $jobs = foreach ($dir in $dirs) {\r\n            $rs = [powershell]::Create().AddScript({\r\n                    param($dir, $aiKeyWords)\r\n                    (Get-ChildItem $dir -Recurse -Directory -ErrorAction SilentlyContinue | Where-Object { \r\n                        $_.FullName -like \"*$($aiKeyWords[0])*\" -or \r\n                        $_.FullName -like \"*$($aiKeyWords[1])*\" -or \r\n                        $_.FullName -like \"*$($aiKeyWords[2])*\" -or\r\n                        $_.FullName -like \"*$($aiKeyWords[3])*\" -or\r\n                        $_.FullName -like \"*$($aiKeyWords[4])*\"\r\n                    }).FullName\r\n                }).AddParameter('dir', $dir).AddParameter('aiKeyWords', $aiKeyWords)\r\n    \r\n            [pscustomobject]@{\r\n                Runspace = $rs\r\n                Handle   = $rs.BeginInvoke()\r\n            }\r\n        }\r\n\r\n        $pathsToDelete = foreach ($job in $jobs) {\r\n            $job.Runspace.EndInvoke($job.Handle)\r\n            $job.Runspace.Dispose()\r\n        }\r\n\r\n        Set-Content \"$($tempDir)PathsToDelete.txt\" -Value $pathsToDelete -Force | Out-Null\r\n\r\n        $command = \"Get-Content `\"$($tempDir)PathsToDelete.txt`\"  | ForEach-Object { Remove-Item `$_ -Force -Recurse -EA 0 }\"\r\n        Run-Trusted -command $command -psversion $psversion\r\n        Start-Sleep 1\r\n    }\r\n\r\n    #TEST:\r\n    # remove ai components from component storage\r\n    # this will prevent sfc from trying to repair files removed \r\n    # but seems to prevent windows update from working\r\n    <#\r\n    $compPath = \"$env:systemroot\\System32\\config\\COMPONENTS\"\r\n\r\n    reg.exe query 'HKLM\\COMPONENTS' /ve *>$null\r\n    if ($LASTEXITCODE -ne 0) {\r\n        reg.exe load 'HKLM\\COMPONENTS' $compPath >$null\r\n    }\r\n\r\n    if ($LASTEXITCODE -ne 0) {\r\n        Write-Status -msg \"Unable to Load $compPath\" -errorOutput\r\n    }\r\n    else {\r\n        $paths = Get-ChildItem 'registry::HKLM\\COMPONENTS\\DerivedData\\Components' | Where-Object { $_.PSChildName -like '*copilot*' -or\r\n            $_.PSChildName -like '*userexperience-aix*' -or\r\n            $_.PSChildName -like '*userexperience-recall*' -or\r\n            $_.PSChildName -like '*userexperience-coreai*' } \r\n\r\n        if ($paths) {\r\n            Write-Status -msg 'Removing AI Components Found in Component Storage...'\r\n            #backup by default for now\r\n            $backupPath = \"$env:USERPROFILE\\RemoveWindowsAI\\Backup\\CompStorage\"\r\n            if (!(Test-Path $backupPath)) {\r\n                New-Item $backupPath -ItemType Directory | Out-Null\r\n            }\r\n\r\n            foreach ($path in $paths) {\r\n                reg.exe export $path.Name \"$backupPath\\$($path.PSChildName).reg\" /y >$null\r\n                reg.exe delete $path.Name /f\r\n            }\r\n            \r\n        }\r\n        else {\r\n            Write-Status -msg 'No Ai Components Found in Component Storage'\r\n        }\r\n\r\n    }\r\n    #>\r\n}\r\n\r\n\r\nfunction Hide-AI-Components {\r\n    #hide ai components in immersive settings\r\n    Write-Status -msg \"$(@('Hiding','Unhiding')[$revert]) Ai Components in Settings...\"\r\n\r\n    $existingSettings = try { Get-ItemPropertyValue 'HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer' -Name 'SettingsPageVisibility' -ErrorAction SilentlyContinue }catch {}\r\n    #early return if the user has already customized this with showonly rather than hide, in this event ill assume the user has knowledge of this key and aicomponents is likely not shown anyway\r\n    if ($existingSettings -like '*showonly*') {\r\n        Write-Status 'SettingsPageVisibility contains \"showonly\"...Skipping!' -errorOutput\r\n        return \r\n    }\r\n    \r\n    if ($revert) {\r\n        #if the key is not just hide ai components then just remove it and retain the rest\r\n        if ($existingSettings -ne 'hide:aicomponents;appactions;') {\r\n            #in the event that this is just aicomponents but multiple times newkey will just be hide: which is valid\r\n            $newKey = $existingSettings -replace 'aicomponents;appactions;', ''\r\n            Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer' /v 'SettingsPageVisibility' /t REG_SZ /d $newKey /f >$null\r\n        }\r\n        else {\r\n            Reg.exe delete 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer' /v 'SettingsPageVisibility' /f >$null\r\n        }\r\n    }\r\n    else {\r\n        if ($existingSettings -and $existingSettings -notlike '*aicomponents;*') {\r\n           \r\n            if (!($existingSettings.endswith(';'))) {\r\n                #doesnt have trailing ; so need to add it \r\n                $newval = $existingSettings + ';aicomponents;appactions;'\r\n            }\r\n            else {\r\n                $newval = $existingSettings + 'aicomponents;appactions;'\r\n            }\r\n            \r\n            Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer' /v 'SettingsPageVisibility' /t REG_SZ /d $newval /f >$null\r\n        }\r\n        elseif ($existingSettings -eq $null) {\r\n            Reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer' /v 'SettingsPageVisibility' /t REG_SZ /d 'hide:aicomponents;appactions;' /f >$null\r\n        }\r\n       \r\n    }\r\n}\r\n\r\nfunction Disable-Notepad-Rewrite {\r\n    #disable rewrite for notepad\r\n    Write-Status -msg \"$(@('Disabling','Enabling')[$revert]) Rewrite Ai Feature for Notepad...\"\r\n    <#\r\n    taskkill /im notepad.exe /f *>$null\r\n    #load notepad settings\r\n    reg load HKU\\TEMP \"$env:LOCALAPPDATA\\Packages\\Microsoft.WindowsNotepad_8wekyb3d8bbwe\\Settings\\settings.dat\" >$null\r\n    #add disable rewrite\r\n    $regContent = @'\r\nWindows Registry Editor Version 5.00\r\n\r\n[HKEY_USERS\\TEMP\\LocalState]\r\n\"RewriteEnabled\"=hex(5f5e10b):00,e0,d1,c5,7f,ee,83,db,01\r\n'@\r\n    New-Item \"$env:TEMP\\DisableRewrite.reg\" -Value $regContent -Force | Out-Null\r\n    regedit.exe /s \"$env:TEMP\\DisableRewrite.reg\"\r\n    Start-Sleep 1\r\n    reg unload HKU\\TEMP >$null\r\n    Remove-Item \"$env:TEMP\\DisableRewrite.reg\" -Force -ErrorAction SilentlyContinue\r\n    #>\r\n    #above is old method before this policy to disable ai in notepad, [DEPRECIATED]\r\n    Reg.exe add 'HKLM\\SOFTWARE\\Policies\\WindowsNotepad' /v 'DisableAIFeatures' /t REG_DWORD /d @('1', '0')[$revert] /f *>$null\r\n}\r\n\r\n\r\n\r\nfunction Remove-Recall-Tasks {\r\n    if (!$revert) {\r\n        #remove recall tasks\r\n        Write-Status -msg 'Removing Recall Scheduled Tasks...'\r\n        #believe it or not to disable and remove these you need system priv\r\n        #create another sub script for removal\r\n        $code = @\"\r\nGet-ScheduledTask -TaskPath '*WindowsAI*' -ErrorAction SilentlyContinue | Disable-ScheduledTask -ErrorAction SilentlyContinue\r\nRemove-Item \"`$env:Systemroot\\System32\\Tasks\\Microsoft\\Windows\\WindowsAI\" -Recurse -Force -ErrorAction SilentlyContinue\r\n`$initConfigID = Get-ItemPropertyValue -Path \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Schedule\\TaskCache\\Tree\\Microsoft\\Windows\\WindowsAI\\Recall\\InitialConfiguration\" -Name 'Id'\r\n`$policyConfigID = Get-ItemPropertyValue -Path \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Schedule\\TaskCache\\Tree\\Microsoft\\Windows\\WindowsAI\\Recall\\PolicyConfiguration\" -Name 'Id'\r\nif(`$initConfigID -and `$policyConfigID){\r\nRemove-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Schedule\\TaskCache\\Tasks\\`$initConfigID\" -Recurse -Force -ErrorAction SilentlyContinue\r\nRemove-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Schedule\\TaskCache\\Tasks\\`$policyConfigID\" -Recurse -Force -ErrorAction SilentlyContinue\r\n}\r\nRemove-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Schedule\\TaskCache\\Tree\\Microsoft\\Windows\\WindowsAI\" -Force -Recurse -ErrorAction SilentlyContinue\r\nGet-ScheduledTask -TaskName \"*Office Actions Server*\" -ErrorAction SilentlyContinue | Disable-ScheduledTask -ErrorAction SilentlyContinue\r\n    Remove-Item \"`$env:Systemroot\\System32\\Tasks\\Microsoft\\Office\\Office Actions Server\" -ErrorAction SilentlyContinue -Force\r\n    `$officeConfigID = Get-ItemPropertyValue -Path 'HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Schedule\\TaskCache\\Tree\\Microsoft\\Office\\Office Actions Server' -Name 'Id'\r\n    if (`$officeConfigID) {\r\n        Remove-Item \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Schedule\\TaskCache\\Tasks\\`$officeConfigID\" -Recurse -Force -ErrorAction SilentlyContinue\r\n    }\r\n    Remove-Item 'HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Schedule\\TaskCache\\Tree\\Microsoft\\Office\\Office Actions Server' -Recurse -Force -ErrorAction SilentlyContinue\r\n\"@\r\n        \r\n        $subScript = \"$($tempDir)RemoveRecallTasks.ps1\"\r\n        New-Item \"$subScript\" -Force | Out-Null\r\n        Set-Content \"$subScript\" -Value $code -Force\r\n\r\n        $command = \"&`\"$subScript`\"\"\r\n        Run-Trusted -command $command -psversion $psversion\r\n        Start-Sleep 1\r\n        \r\n        #when just running this option alone the tasks will be remade so we need to at least ensure they are disabled\r\n        $command = \"\r\n        Get-ScheduledTask -TaskName '*Office Actions Server*' -ErrorAction SilentlyContinue | Unregister-ScheduledTask -Confirm:`$false -ErrorAction SilentlyContinue\r\n        Get-ScheduledTask -TaskPath '*WindowsAI*' | Unregister-ScheduledTask -Confirm:`$false -ErrorAction SilentlyContinue\r\n        \"\r\n        \r\n        Run-Trusted -command $command -psversion $psversion\r\n        \r\n    }\r\n    \r\n}\r\n\r\n\r\n\r\nfunction Update-Cleanup-Check {\r\n    \r\n    if (!$revert) {\r\n        #fastest method to get majorbuild.updateBuildRevision ex. 26200.7922\r\n        $key = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey('SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion')\r\n        $OSBuild = \"$($key.GetValue('CurrentBuild')).$($key.GetValue('UBR'))\"\r\n        $key.Close()\r\n        #attempt to get cached build incase user has already cached one before but is no longer accurate somehow\r\n        try {\r\n            $key2 = [Microsoft.Win32.Registry]::LocalMachine.OpenSubKey('SOFTWARE\\RemoveWindowsAI')\r\n            $CurrentCachedBuild = \"$($key2.GetValue('CachedBuild'))\"\r\n            $key2.Close()\r\n        }\r\n        catch {\r\n            $CurrentCachedBuild = $null\r\n        }\r\n\r\n        #cache current build before making update script in regitry if the script detects and update as happened the cachedbuild value will be updated\r\n        $regValName = 'CachedBuild'\r\n        if ($CurrentCachedBuild -ne $OSBuild) {\r\n            Write-Status -msg 'Caching Current OS Build in Registry...' \r\n            Reg.exe add 'HKLM\\SOFTWARE\\RemoveWindowsAI' /v $regValName /d \"$OSBuild\" /t REG_SZ /f >$null\r\n        }\r\n\r\n        #grab update cleanup script from github instead of embedding it in here\r\n        try {\r\n            Write-Status -msg 'Attempting to get Update Cleanup script from Github...'\r\n            $scriptContent = Invoke-WebRequest -Uri 'https://raw.githubusercontent.com/zoicware/RemoveWindowsAI/refs/heads/main/RemoveAI-UpdateCleanup.ps1' -UseBasicParsing -ErrorAction Stop | Select-Object Content\r\n        }\r\n        catch {\r\n            Write-Status -msg 'Unable to get Update Cleanup script from Github!' -errorOutput\r\n            return\r\n        }\r\n\r\n        #create script\r\n        $scriptPath = \"$env:ProgramData\\RemoveAI-UpdateCleanup.ps1\"\r\n        Set-Content -Path $scriptPath -Value $scriptContent.Content -Force\r\n\r\n        #create silent script so that there is no powershell window flash for the user\r\n        $vbsScriptContent = @\"\r\nDim shell,command\r\ncommand = \"powershell.exe -ep bypass -c \"\"$env:ProgramData\\RemoveAI-UpdateCleanup.ps1\"\"\"\r\nSet shell = CreateObject(\"WScript.Shell\")\r\nshell.Run command,0\r\n\"@\r\n        $vbsPath = \"$env:ProgramData\\RemoveAI-UpdateCleanup-Silent.vbs\"\r\n        Set-Content -Path $vbsPath -Value $vbsScriptContent -Force\r\n\r\n        Write-Status -msg 'Creating Update Cleanup Scheduled Task...'\r\n        $action = New-ScheduledTaskAction -Execute 'wscript.exe' -Argument \"$env:ProgramData\\RemoveAI-UpdateCleanup-Silent.vbs\"\r\n        $trigger = New-ScheduledTaskTrigger -AtLogOn\r\n        $principal = New-ScheduledTaskPrincipal -UserId 'S-1-5-18'\r\n        $settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries \r\n        #create update cleanup checker task\r\n        Register-ScheduledTask -TaskPath '\\' -TaskName 'RemoveAI-UpdateCleanupChecker' -Action $action -Trigger $trigger -Principal $principal -Settings $settings -Force | Out-Null\r\n        \r\n    }\r\n    else {\r\n        Write-Status -msg 'Removing Update Cleanup Script and Task...'\r\n        Unregister-ScheduledTask -TaskName 'RemoveAI-UpdateCleanupChecker' -Confirm:$false -ErrorAction SilentlyContinue\r\n        Remove-Item \"$env:ProgramData\\RemoveAI-UpdateCleanup-Silent.vbs\" -ErrorAction SilentlyContinue -Force\r\n        Remove-Item \"$env:ProgramData\\RemoveAI-UpdateCleanup.ps1\" -ErrorAction SilentlyContinue -Force\r\n    }\r\n\r\n    \r\n}\r\n\r\n#===============================================================================================================================\r\n#\r\n#                                             CLASSIC APP INSTALL FUNCTIONS\r\n#\r\n#===============================================================================================================================\r\nfunction install-photoviewer {\r\n    \r\n    #restore classic photoviewer\r\n    $extensions = @('.Bmp', '.Cr2', '.Dib', '.Gif', '.JFIF', '.Jpe', '.Jpeg', '.Jpg', '.Jxr', '.Png', '.Tif', '.Tiff', '.Wdp')\r\n\r\n    foreach ($ext in $extensions) {\r\n        if ($ext -in @('.JFIF', '.Jpeg', '.Gif', '.Png', '.Wdp')) {\r\n            reg.exe add \"HKLM\\SOFTWARE\\Classes\\PhotoViewer.FileAssoc$ext\" /v 'EditFlags' /t REG_DWORD /d 65536 /f >$null\r\n            reg.exe add \"HKLM\\SOFTWARE\\Classes\\PhotoViewer.FileAssoc$ext\" /v 'ImageOptionFlags' /t REG_DWORD /d 1 /f >$null\r\n            reg.exe add \"HKLM\\SOFTWARE\\Classes\\PhotoViewer.FileAssoc$ext\" /v 'FriendlyTypeName' /t REG_EXPAND_SZ /d '@%ProgramFiles%\\Windows Photo Viewer\\PhotoViewer.dll,-3055' /f >$null\r\n            reg.exe add \"HKLM\\SOFTWARE\\Classes\\PhotoViewer.FileAssoc$ext\\DefaultIcon\" /ve /t REG_SZ /d '%SystemRoot%\\System32\\imageres.dll,-72' /f >$null\r\n            reg.exe add \"HKLM\\SOFTWARE\\Classes\\PhotoViewer.FileAssoc$ext\\shell\\open\" /v 'MuiVerb' /t REG_EXPAND_SZ /d '@%ProgramFiles%\\Windows Photo Viewer\\photoviewer.dll,-3043' /f >$null\r\n            reg.exe add \"HKLM\\SOFTWARE\\Classes\\PhotoViewer.FileAssoc$ext\\shell\\open\\command\" /ve /t REG_EXPAND_SZ /d \"%SystemRoot%\\System32\\rundll32.exe \\`\"%ProgramFiles%\\Windows Photo Viewer\\PhotoViewer.dll\\`\", ImageView_Fullscreen %1\" /f >$null\r\n            reg.exe add \"HKLM\\SOFTWARE\\Classes\\PhotoViewer.FileAssoc$ext\\shell\\open\\DropTarget\" /v 'Clsid' /t REG_SZ /d '{FFE2A43C-56B9-4bf5-9A79-CC6D4285608A}' /f >$null\r\n        }\r\n    \r\n        if ($ext -in @('.Cr2', '.Tif')) {\r\n            reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows Photo Viewer\\Capabilities\\FileAssociations' /v $ext.ToLower() /t REG_SZ /d 'PhotoViewer.FileAssoc.Tiff' /f >$null\r\n        }\r\n        elseif ($ext -in @('.Dib', '.Bmp')) {\r\n            reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows Photo Viewer\\Capabilities\\FileAssociations' /v $ext.ToLower() /t REG_SZ /d 'PhotoViewer.FileAssoc.Bitmap' /f >$null\r\n        }\r\n        elseif ($ext -in @('.Jpg', '.Jpe', '.Jpeg')) {\r\n            reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows Photo Viewer\\Capabilities\\FileAssociations' /v $ext.ToLower() /t REG_SZ /d 'PhotoViewer.FileAssoc.Jpeg' /f >$null\r\n        }\r\n        else {\r\n            reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows Photo Viewer\\Capabilities\\FileAssociations' /v $ext.ToLower() /t REG_SZ /d \"PhotoViewer.FileAssoc$ext\" /f >$null\r\n        }\r\n    }\r\n}\r\n\r\nfunction install-paint {\r\n    param(\r\n        [string]$path\r\n    )\r\n\r\n    get-appxpackage '*Microsoft.Paint*' | Remove-AppxPackage -AllUsers -ErrorAction SilentlyContinue\r\n    \r\n    $command = \"\r\n    copy-item `\"$path\\paint\\mspaint.exe`\" -Destination `\"$env:systemroot\\system32\\mspaint.exe`\" -Force\r\n    copy-item `\"$path\\paint\\mspaint.exe.mui`\" -Destination `\"$env:systemroot\\System32\\en-US\\mspaint.exe.mui`\" -Force\r\n    copy-item `\"$path\\paint\\mspaint.exe.mun`\" -Destination `\"$env:systemroot\\SystemResources`\" -Force\r\n\"\r\n    Run-Trusted -command $command\r\n    Start-Sleep 1\r\n\r\n    $command = \"regedit.exe /s `\"$path\\paint\\paint.reg`\"\"\r\n    Run-Trusted -command $command\r\n    \r\n    $langID = (Get-ItemProperty -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Nls\\Language' -Name 'InstallLanguage').InstallLanguage\r\n    $languageMap = @{\r\n        '0804' = @{PAD = 'zh-CN'; Name = 'Chinese (Simplified)' }\r\n        '0412' = @{PAD = 'ko-KR'; Name = 'Korean' }\r\n        '0404' = @{PAD = 'zh-TW'; Name = 'Chinese (Traditional)' }\r\n        '0422' = @{PAD = 'uk-UA'; Name = 'Ukrainian' }\r\n        '041f' = @{PAD = 'tr-TR'; Name = 'Turkish' }\r\n        '041e' = @{PAD = 'th-TH'; Name = 'Thai' }\r\n        '241a' = @{PAD = 'sr-Latn-RS'; Name = 'Serbian (Latin)' }\r\n        '0424' = @{PAD = 'sl-SI'; Name = 'Slovenian' }\r\n        '041b' = @{PAD = 'sk-SK'; Name = 'Slovak' }\r\n        '0419' = @{PAD = 'ru-RU'; Name = 'Russian' }\r\n        '0418' = @{PAD = 'ro-RO'; Name = 'Romanian' }\r\n        '0816' = @{PAD = 'pt-PT'; Name = 'Portuguese (Portugal)' }\r\n        '0416' = @{PAD = 'pt-BR'; Name = 'Portuguese (Brazil)' }\r\n        '0415' = @{PAD = 'pl-PL'; Name = 'Polish' }\r\n        '0413' = @{PAD = 'nl-NL'; Name = 'Dutch' }\r\n        '0414' = @{PAD = 'nb-NO'; Name = 'Norwegian' }\r\n        '0426' = @{PAD = 'lv-LV'; Name = 'Latvian' }\r\n        '0427' = @{PAD = 'lt-LT'; Name = 'Lithuanian' }\r\n        '0411' = @{PAD = 'ja-JP'; Name = 'Japanese' }\r\n        '0410' = @{PAD = 'it-IT'; Name = 'Italian' }\r\n        '040e' = @{PAD = 'hu-HU'; Name = 'Hungarian' }\r\n        '041a' = @{PAD = 'hr-HR'; Name = 'Croatian' }\r\n        '040d' = @{PAD = 'he-IL'; Name = 'Hebrew' }\r\n        '040c' = @{PAD = 'fr-FR'; Name = 'French (France)' }\r\n        '0c0c' = @{PAD = 'fr-CA'; Name = 'French (Canada)' }\r\n        '040b' = @{PAD = 'fi-FI'; Name = 'Finnish' }\r\n        '0425' = @{PAD = 'et-EE'; Name = 'Estonian' }\r\n        '080a' = @{PAD = 'es-MX'; Name = 'Spanish (Mexico)' }\r\n        '040a' = @{PAD = 'es-ES'; Name = 'Spanish (Spain)' }\r\n        '0809' = @{PAD = 'en-GB'; Name = 'English (UK)' }\r\n        '0408' = @{PAD = 'el-GR'; Name = 'Greek' }\r\n        '0407' = @{PAD = 'de-DE'; Name = 'German' }\r\n        '0406' = @{PAD = 'da-DK'; Name = 'Danish' }\r\n        '0405' = @{PAD = 'cs-CZ'; Name = 'Czech' }\r\n        '0402' = @{PAD = 'bg-BG'; Name = 'Bulgarian' }\r\n        '0401' = @{PAD = 'ar-SA'; Name = 'Arabic' }\r\n        '041d' = @{PAD = 'sv-SE'; Name = 'Swedish' }\r\n    }\r\n\r\n    if ($languageMap.ContainsKey($langID)) {\r\n        $lang = $languageMap[$langID]\r\n        $pad = $lang.PAD\r\n    \r\n        # Copy language specific MUI file\r\n        $command = \"Copy-Item -Path `\"$path\\paint\\paint_lang_files\\$pad\\mspaint.exe.mui`\" -Destination `\"$env:SYSTEMROOT\\System32\\$pad\\mspaint.exe.mui`\" -Force\"\r\n        Run-Trusted -command $command\r\n\r\n        Write-Status -msg \"Copied $pad language file\"\r\n    }\r\n   \r\n    \r\n    #create start shortcut\r\n    $WshShell = New-Object -comObject WScript.Shell\r\n    $Shortcut = $WshShell.CreateShortcut('C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\Paint.lnk')\r\n    $Shortcut.TargetPath = 'C:\\Windows\\System32\\mspaint.exe'\r\n    $Shortcut.Save()\r\n\r\n}\r\n\r\nfunction install-snipping {\r\n    param(\r\n        [string]$path\r\n    )\r\n    # uninstall uwp\r\n    Get-AppxPackage '*ScreenSketch*' -ErrorAction SilentlyContinue | Remove-AppxPackage -ErrorAction SilentlyContinue\r\n\r\n    $command = \"\r\n    copy-item `\"$path\\snipping\\SnippingTool.exe`\" -Destination `\"$env:systemroot\\system32\\SnippingTool.exe`\" -Force\r\n    copy-item `\"$path\\snipping\\SnippingTool.exe.mui`\" -Destination `\"$env:systemroot\\System32\\en-US\\SnippingTool.exe.mui`\" -Force\r\n\"\r\n    Run-Trusted -command $command\r\n    Start-Sleep 1\r\n\r\n    $langID = (Get-ItemProperty -Path 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Nls\\Language' -Name 'InstallLanguage').InstallLanguage\r\n    $languageMap = @{\r\n        '0804' = @{PAD = 'zh-CN'; Name = 'Chinese (Simplified)' }\r\n        '0412' = @{PAD = 'ko-KR'; Name = 'Korean' }\r\n        '0404' = @{PAD = 'zh-TW'; Name = 'Chinese (Traditional)' }\r\n        '0422' = @{PAD = 'uk-UA'; Name = 'Ukrainian' }\r\n        '041f' = @{PAD = 'tr-TR'; Name = 'Turkish' }\r\n        '041e' = @{PAD = 'th-TH'; Name = 'Thai' }\r\n        '241a' = @{PAD = 'sr-Latn-RS'; Name = 'Serbian (Latin)' }\r\n        '0424' = @{PAD = 'sl-SI'; Name = 'Slovenian' }\r\n        '041b' = @{PAD = 'sk-SK'; Name = 'Slovak' }\r\n        '0419' = @{PAD = 'ru-RU'; Name = 'Russian' }\r\n        '0418' = @{PAD = 'ro-RO'; Name = 'Romanian' }\r\n        '0816' = @{PAD = 'pt-PT'; Name = 'Portuguese (Portugal)' }\r\n        '0416' = @{PAD = 'pt-BR'; Name = 'Portuguese (Brazil)' }\r\n        '0415' = @{PAD = 'pl-PL'; Name = 'Polish' }\r\n        '0413' = @{PAD = 'nl-NL'; Name = 'Dutch' }\r\n        '0414' = @{PAD = 'nb-NO'; Name = 'Norwegian' }\r\n        '0426' = @{PAD = 'lv-LV'; Name = 'Latvian' }\r\n        '0427' = @{PAD = 'lt-LT'; Name = 'Lithuanian' }\r\n        '0411' = @{PAD = 'ja-JP'; Name = 'Japanese' }\r\n        '0410' = @{PAD = 'it-IT'; Name = 'Italian' }\r\n        '040e' = @{PAD = 'hu-HU'; Name = 'Hungarian' }\r\n        '041a' = @{PAD = 'hr-HR'; Name = 'Croatian' }\r\n        '040d' = @{PAD = 'he-IL'; Name = 'Hebrew' }\r\n        '040c' = @{PAD = 'fr-FR'; Name = 'French (France)' }\r\n        '0c0c' = @{PAD = 'fr-CA'; Name = 'French (Canada)' }\r\n        '040b' = @{PAD = 'fi-FI'; Name = 'Finnish' }\r\n        '0425' = @{PAD = 'et-EE'; Name = 'Estonian' }\r\n        '080a' = @{PAD = 'es-MX'; Name = 'Spanish (Mexico)' }\r\n        '040a' = @{PAD = 'es-ES'; Name = 'Spanish (Spain)' }\r\n        '0809' = @{PAD = 'en-GB'; Name = 'English (UK)' }\r\n        '0408' = @{PAD = 'el-GR'; Name = 'Greek' }\r\n        '0407' = @{PAD = 'de-DE'; Name = 'German' }\r\n        '0406' = @{PAD = 'da-DK'; Name = 'Danish' }\r\n        '0405' = @{PAD = 'cs-CZ'; Name = 'Czech' }\r\n        '0402' = @{PAD = 'bg-BG'; Name = 'Bulgarian' }\r\n        '0401' = @{PAD = 'ar-SA'; Name = 'Arabic' }\r\n        '041d' = @{PAD = 'sv-SE'; Name = 'Swedish' }\r\n    }\r\n\r\n    if ($languageMap.ContainsKey($langID)) {\r\n        $lang = $languageMap[$langID]\r\n        $pad = $lang.PAD\r\n    \r\n        # Copy language specific MUI file\r\n        $command = \"Copy-Item -Path `\"$path\\snipping\\snipping_lang_files\\$pad\\SnippingTool.exe.mui`\" -Destination `\"$env:SYSTEMROOT\\System32\\$pad\\SnippingTool.exe.mui`\" -Force\"\r\n        Run-Trusted -command $command\r\n\r\n        Write-Status -msg \"Copied $pad language file\"\r\n    \r\n    }\r\n   \r\n\r\n    $WshShell = New-Object -comObject WScript.Shell\r\n    $Shortcut = $WshShell.CreateShortcut('C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\Accessories\\SnippingTool.lnk')\r\n    $Shortcut.TargetPath = ('C:\\Windows\\System32\\SnippingTool.exe')\r\n    $Shortcut.Save()\r\n\r\n}\r\n\r\n\r\nfunction install-notepad {\r\n\r\n    #uninstall new notepad \r\n    taskkill.exe /im notepad.exe /f *>$null\r\n    taskkill.exe /im dllhost.exe /f *>$null\r\n    get-appxpackage '*notepad*' | Remove-AppxPackage -AllUsers -ErrorAction SilentlyContinue\r\n    #enable win10 notepad\r\n    Add-WindowsCapability -Online -Name Microsoft.Windows.Notepad.System~~~~0.0.1.0 -LimitAccess | Out-Null\r\n    # fix registry \r\n    Remove-Item -Path 'HKCU:\\Software\\Microsoft\\Windows\\CurrentVersion\\App Paths\\notepad.exe' -Force -ErrorAction SilentlyContinue\r\n    Remove-ItemProperty -Path 'HKLM:\\SOFTWARE\\Classes\\Applications\\notepad.exe' -Name NoOpenWith -Force -ErrorAction SilentlyContinue\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\*\\OpenWithList\\notepad.exe' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.htm\\OpenWithList' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.htm\\OpenWithList\\notepad.exe' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.inf' /ve /t REG_SZ /d 'inffile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.ini' /ve /t REG_SZ /d 'inifile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.log' /ve /t REG_SZ /d 'txtfile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.ps1' /ve /t REG_SZ /d 'Microsoft.PowerShellScript.1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.psd1' /ve /t REG_SZ /d 'Microsoft.PowerShellData.1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.psm1' /ve /t REG_SZ /d 'Microsoft.PowerShellModule.1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.scp' /ve /t REG_SZ /d 'txtfile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.txt' /ve /t REG_SZ /d 'txtfile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.txt\\ShellNew' /v 'ItemName' /t REG_EXPAND_SZ /d '@%SystemRoot%\\system32\\notepad.exe,-470' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.txt\\ShellNew' /v 'NullFile' /t REG_SZ /d ' ' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\.wtx' /ve /t REG_SZ /d 'txtfile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Applications\\notepad.exe' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Applications\\notepad.exe\\shell' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Applications\\notepad.exe\\shell\\edit' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Applications\\notepad.exe\\shell\\edit\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Applications\\notepad.exe\\shell\\open' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Applications\\notepad.exe\\shell\\open\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inffile' /ve /t REG_SZ /d 'Setup Information' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inffile' /v 'FriendlyTypeName' /t REG_EXPAND_SZ /d '@%SystemRoot%\\System32\\setupapi.dll,-2000' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inffile\\DefaultIcon' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\System32\\imageres.dll,-69' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inffile\\shell' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inffile\\shell\\open' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inffile\\shell\\open\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inffile\\shell\\print' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inffile\\shell\\print\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE /p %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inifile' /ve /t REG_SZ /d 'Configuration Settings' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inifile' /v 'EditFlags' /t REG_DWORD /d 0x00200000 /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inifile' /v 'FriendlyTypeName' /t REG_SZ /d '@shell32.dll,-10151' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inifile\\DefaultIcon' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\imageres.dll,-69' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inifile\\shell' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inifile\\shell\\open' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inifile\\shell\\open\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inifile\\shell\\print' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\inifile\\shell\\print\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE /p %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellData.1' /v 'EditFlags' /t REG_DWORD /d 0x00020000 /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellData.1' /v 'FriendlyTypeName' /t REG_EXPAND_SZ /d \"@\\`\"%systemroot%\\system32\\windowspowershell\\v1.0\\powershell.exe\\`\",-104\" /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellData.1\\Shell' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellData.1\\Shell\\Open' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellData.1\\Shell\\Open\\Command' /ve /t REG_SZ /d \"\\`\"C:\\Windows\\System32\\notepad.exe\\`\" \\`\"%1\\`\"\" /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellModule.1' /v 'EditFlags' /t REG_DWORD /d 0x00020000 /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellModule.1' /v 'FriendlyTypeName' /t REG_EXPAND_SZ /d \"@\\`\"%systemroot%\\system32\\windowspowershell\\v1.0\\powershell.exe\\`\",-106\" /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellModule.1\\Shell' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellModule.1\\Shell\\Open' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellModule.1\\Shell\\Open\\Command' /ve /t REG_SZ /d \"\\`\"C:\\Windows\\System32\\notepad.exe\\`\" \\`\"%1\\`\"\" /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellScript.1' /v 'EditFlags' /t REG_DWORD /d 0x00020000 /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellScript.1' /v 'FriendlyTypeName' /t REG_EXPAND_SZ /d \"@\\`\"%systemroot%\\system32\\windowspowershell\\v1.0\\powershell.exe\\`\",-103\" /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellScript.1\\DefaultIcon' /ve /t REG_SZ /d \"\\`\"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell_ise.exe\\`\",1\" /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellScript.1\\Shell' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellScript.1\\Shell\\Open' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\Microsoft.PowerShellScript.1\\Shell\\Open\\Command' /ve /t REG_SZ /d \"\\`\"C:\\Windows\\System32\\notepad.exe\\`\" \\`\"%1\\`\"\" /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\SystemFileAssociations\\text\\OpenWithList' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\SystemFileAssociations\\text\\OpenWithList\\Notepad.exe' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\SystemFileAssociations\\text\\shell' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\SystemFileAssociations\\text\\shell\\edit' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\SystemFileAssociations\\text\\shell\\edit\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\SystemFileAssociations\\text\\shell\\open' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\SystemFileAssociations\\text\\shell\\open\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile' /ve /t REG_SZ /d 'Text Document' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile' /v 'EditFlags' /t REG_DWORD /d 0x00210000 /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile' /v 'FriendlyTypeName' /t REG_EXPAND_SZ /d '@%SystemRoot%\\system32\\notepad.exe,-469' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile\\DefaultIcon' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\imageres.dll,-102' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile\\shell' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile\\shell\\open' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile\\shell\\open\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile\\shell\\print' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile\\shell\\print\\command' /ve /t REG_EXPAND_SZ /d '%SystemRoot%\\system32\\NOTEPAD.EXE /p %1' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile\\shell\\printto' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Classes\\txtfile\\shell\\printto\\command' /ve /t REG_EXPAND_SZ /d \"%SystemRoot%\\system32\\notepad.exe /pt \\`\"%1\\`\" \\`\"%2\\`\" \\`\"%3\\`\" \\`\"%4\\`\"\" /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\Notepad' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\Notepad\\Capabilities' /v 'ApplicationDescription' /t REG_EXPAND_SZ /d '@%SystemRoot%\\system32\\NOTEPAD.EXE,-9' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\Notepad\\Capabilities' /v 'ApplicationName' /t REG_EXPAND_SZ /d '@%SystemRoot%\\system32\\NOTEPAD.EXE,-9' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\Notepad\\Capabilities\\FileAssociations' /v '.ini' /t REG_SZ /d 'inifile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\Notepad\\Capabilities\\FileAssociations' /v '.log' /t REG_SZ /d 'logfile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\Notepad\\Capabilities\\FileAssociations' /v '.scp' /t REG_SZ /d 'scpfile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\Notepad\\Capabilities\\FileAssociations' /v '.txt' /t REG_SZ /d 'txtfile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\Microsoft\\Windows\\Notepad\\Capabilities\\FileAssociations' /v '.wtx' /t REG_SZ /d 'wtxfile' /f >$null\r\n    reg.exe add 'HKLM\\SOFTWARE\\RegisteredApplications' /v 'Notepad' /t REG_SZ /d 'Software\\Microsoft\\Windows\\Notepad\\Capabilities' /f >$null\r\n    reg.exe add 'HKCU\\Software\\Microsoft\\Notepad' /v 'ShowStoreBanner' /t REG_DWORD /d 0x00000000 /f >$null\r\n\r\n    #create start shortcut\r\n    $WshShell = New-Object -comObject WScript.Shell\r\n    $Shortcut = $WshShell.CreateShortcut('C:\\ProgramData\\Microsoft\\Windows\\Start Menu\\Programs\\Notepad.lnk')\r\n    $Shortcut.TargetPath = 'C:\\Windows\\System32\\Notepad.exe'\r\n    $Shortcut.Save()\r\n\r\n}\r\n\r\nfunction install-photoslegacy {\r\n\r\n    $appx = Get-AppxPackage -AllUsers | Where-Object { $_.PackageFullName -like '*PhotosLegacy*' }\r\n\r\n    if (!$appx) {\r\n\r\n        try {\r\n            Get-Command store -ErrorAction Stop\r\n            #install photos legacy using new store cmdlet\r\n            store install 9NV2L4XVMCXM\r\n        }\r\n        catch {\r\n            Remove-Item \"$($tempDir)Microsoft.PhotosLegacy_8wekyb3d8bbwe*\" -Force -Recurse -ErrorAction SilentlyContinue\r\n            $downloadedfiles = Download-AppxPackage -PackageFamilyName 'Microsoft.PhotosLegacy_8wekyb3d8bbwe' -outputDir \"$tempDir\"\r\n            $package = $downloadedfiles | Where-Object { $_ -match '\\.appxbundle$' } | Select-Object -First 1\r\n            $dependencies = $downloadedfiles | Where-Object { $_ -match '\\.appx$' } \r\n            if ($package) {\r\n                try {\r\n                    Add-AppPackage $package -DependencyPath $dependencies -ForceApplicationShutdown\r\n                }\r\n                catch {\r\n                    Write-status -msg \"Can't install PhotosLegacy via appxbundle... make sure you have the appx service enabled\" -errorOutput\r\n                }\r\n                \r\n            }\r\n            else {\r\n                Write-status -msg \"Can't find PhotosLegacy Installer\" -errorOutput\r\n            }\r\n        }\r\n        \r\n    }\r\n}\r\n\r\nfunction install-classicapps {\r\n    param(\r\n        [ValidateSet('photoviewer', 'mspaint', 'snippingtool', 'notepad', 'photoslegacy')]\r\n        [array]$app\r\n    )\r\n\r\n    #check if files are downloaded locally\r\n    if (Test-Path \"$PSScriptroot\\ClassicApps\") {\r\n        Write-Status -msg 'Classic Apps Files Found Locally'\r\n        $classicApps = \"$PSScriptroot\\ClassicApps\"\r\n    }\r\n    else {\r\n        #check if they are already downloaded if not download them\r\n        \r\n        if (!(Test-Path \"$($tempDir)ClassicApps\")) {\r\n            $ProgressPreference = 'SilentlyContinue'\r\n            Write-Status -msg 'Downloading Classic Apps Files from Github...'\r\n            $url = 'https://github.com/zoicware/RemoveWindowsAI/archive/refs/heads/main.zip'\r\n            try {\r\n                Invoke-WebRequest -Uri $url -OutFile \"$($tempDir)main.zip\" -ErrorAction Stop\r\n            }\r\n            catch {\r\n                Write-Status -msg 'Unable to Download Github Repo' -errorOutput \r\n                return\r\n            }\r\n            Expand-Archive -Path \"$($tempDir)main.zip\" -DestinationPath \"$tempDir\" -Force\r\n            $sourceDir = \"$($tempDir)RemoveWindowsAI-main\\ClassicApps\"\r\n            $destDir = \"$($tempDir)ClassicApps\"\r\n            Copy-Item -Path $sourceDir -Destination $destDir -Recurse -Force\r\n            Remove-Item \"$($tempDir)RemoveWindowsAI-main\" -Recurse -Force -ErrorAction SilentlyContinue\r\n            Remove-Item \"$($tempDir)main.zip\" -Recurse -Force -ErrorAction SilentlyContinue\r\n        }\r\n\r\n        $classicApps = \"$($tempDir)ClassicApps\"\r\n    }\r\n\r\n\r\n    switch ($app) {\r\n        'photoviewer' {  \r\n            Write-Status -msg 'Installing Classic Photo Viewer...'\r\n            install-photoviewer\r\n        }\r\n        'mspaint' {\r\n            Write-Status -msg 'Installing Classic Paint...'\r\n            install-paint -path $classicApps\r\n        }\r\n        'snippingtool' {\r\n            Write-Status -msg 'Installing Classic Snipping Tool...'\r\n            install-snipping -path $classicApps\r\n        }\r\n        'notepad' {\r\n            Write-Status -msg 'Installing Classic Notepad...'\r\n            install-notepad\r\n        }\r\n        'photoslegacy' {\r\n            Write-Status -msg 'Installing Photos Legacy...'\r\n            install-photoslegacy\r\n        }\r\n        Default {\r\n            Write-Status -msg 'Unknown Classic App Option' -errorOutput\r\n        }\r\n    }\r\n}\r\n\r\nfunction Update-Repair {\r\n    Write-Host 'Stopping Windows Update Services...' -ForegroundColor Green\r\n    Stop-Service BITS -Force -ErrorAction SilentlyContinue\r\n    Stop-Service wuauserv -Force -ErrorAction SilentlyContinue\r\n    Stop-Service DoSvc -Force -ErrorAction SilentlyContinue\r\n    Stop-Service UsoSvc -Force -ErrorAction SilentlyContinue\r\n    Stop-Service WaaSMedicSvc -Force -ErrorAction SilentlyContinue\r\n    taskkill.exe /im 'wuaucltcore.exe' /f *>$null\r\n    taskkill.exe /im 'TiWorker.exe' /f *>$null\r\n    Get-BitsTransfer -AllUsers | Remove-BitsTransfer \r\n\r\n    Write-Host 'Removing Windows Update Cache...' -ForegroundColor Green\r\n    Remove-Item -Path \"$env:windir\\SoftwareDistribution\" -Recurse -Force -ErrorAction SilentlyContinue\r\n    Remove-Item -Path \"$env:windir\\Logs\\WindowsUpdate\" -Recurse -Force -ErrorAction SilentlyContinue\r\n    reg.exe delete 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsUpdate\\Auto Update\\RebootRequired' /f *>$null\r\n    reg.exe delete 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\WindowsUpdate\\Auto Update\\PostRebootReporting' /f *>$null\r\n    Remove-Item \"$env:ProgramData\\Application Data\\Microsoft\\Network\\Downloader\\*.*\" -Force -ErrorAction SilentlyContinue\r\n    Remove-Item \"$env:windir\\System32\\catroot2\" -Force -Recurse -ErrorAction SilentlyContinue\r\n    Rename-Item \"$env:windir\\WinSxS\\pending.xml\" -NewName 'pending.xml.old' -Force -ErrorAction SilentlyContinue\r\n    $temp1 = \"$env:windir\\Temp\"\r\n    $temp2 = $tempDir\r\n    $tempFiles = (Get-ChildItem -Path \"$temp1\" , \"$temp2\" -Recurse -Force).FullName\r\n    foreach ($file in $tempFiles) {\r\n        Remove-Item -Path \"$file\" -Recurse -Force -ErrorAction SilentlyContinue\r\n    }\r\n    #run disk cleanup \r\n    $options = @(\r\n        'Active Setup Temp Folders'\r\n        'Delivery Optimization Files'\r\n        'Downloaded Program Files'\r\n        'Internet Cache Files'\r\n        'Setup Log Files'\r\n        'Temporary Files'\r\n        'Windows Error Reporting Files'\r\n        'Offline Pages Files'\r\n        'Recycle Bin'\r\n        'Temporary Setup Files'\r\n        'Update Cleanup'\r\n        'Upgrade Discarded Files'\r\n        'Windows Defender'\r\n        'Windows ESD installation files'\r\n        'Windows Reset Log Files'\r\n        'Windows Upgrade Log Files'\r\n        'Previous Installations'\r\n    )\r\n    $key = 'HKLM\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\VolumeCaches'\r\n    foreach ($option in $options) {\r\n        reg.exe add \"$key\\$option\" /v StateFlags0069 /t REG_DWORD /d 00000002 /f >$null\r\n    }\r\n\r\n    #credits to @instead1337 for monitoring logic\r\n    $timeout = 600\r\n    $cleanupProcess = Start-Process cleanmgr.exe -ArgumentList '/sagerun:69' -Wait:$false -PassThru\r\n    $stopwatch = [System.Diagnostics.Stopwatch]::StartNew()\r\n    $lastCpuUsage = 0\r\n    $lastMemoryUsage = 0\r\n\r\n    while ($cleanupProcess -and !$cleanupProcess.HasExited -and $stopwatch.Elapsed.TotalSeconds -lt $timeout) {\r\n        Start-Sleep -Seconds 10\r\n        $process = Get-Process -Id $cleanupProcess.Id -EA SilentlyContinue\r\n        if ($process) {\r\n            $cpuUsage = $process.CPU\r\n            $memoryUsage = $process.WS\r\n            if ($cpuUsage -eq $lastCpuUsage -and $memoryUsage -eq $lastMemoryUsage) {\r\n                if ($cleanupProcess.MainWindowHandle) {\r\n                    $cleanupProcess.CloseMainWindow() | Out-Null\r\n                    Start-Sleep -Seconds 5\r\n                    if (!$cleanupProcess.HasExited) { $cleanupProcess | Stop-Process -EA SilentlyContinue }\r\n                }\r\n                else {\r\n                    $cleanupProcess | Stop-Process -EA SilentlyContinue\r\n                }\r\n            }\r\n            $lastCpuUsage = $cpuUsage\r\n            $lastMemoryUsage = $memoryUsage\r\n        }\r\n        \r\n    }\r\n\r\n    Write-Host 'Setting Windows Update Services StartType...' -ForegroundColor Green\r\n    Set-Service BITS -StartupType Automatic -ErrorAction SilentlyContinue\r\n    Set-Service wuauserv -StartupType Manual -ErrorAction SilentlyContinue\r\n    Set-Service UsoSvc -StartupType Manual -ErrorAction SilentlyContinue\r\n    Set-Service DoSvc -StartupType Automatic -ErrorAction SilentlyContinue\r\n    Set-Service AppReadiness -StartupType Manual -ErrorAction SilentlyContinue\r\n    Set-Service CryptSvc -StartupType Automatic -ErrorAction SilentlyContinue\r\n    Set-Service WaaSMedicSvc -StartupType Manual -ErrorAction SilentlyContinue\r\n\r\n    Write-Host 'Running DISM Repair...' -ForegroundColor Green\r\n    Write-Host 'DISM can take a very long time please let this process finish...' -ForegroundColor DarkYellow\r\n    Write-Host '[TIP!] You can view the process in task manager by finding \"Windows Module Installer Worker\"' -ForegroundColor DarkYellow\r\n    Add-AppxPackage -RegisterByFamilyName -MainPackage 'MicrosoftWindows.Client.CBS_cw5n1h2txyewy' \r\n    Dism.exe /Online /Cleanup-Image /RestoreHealth\r\n    Dism.exe /Online /Cleanup-Image /StartComponentCleanup /Resetbase\r\n    sfc.exe /scannow\r\n\r\n    Write-Host 'Starting Windows Update Services...' -ForegroundColor Green\r\n    Start-Service BITS *>$null\r\n    Start-Service DoSvc *>$null\r\n    Start-Service CryptSvc *>$null\r\n\r\n    Add-Type -AssemblyName System.Windows.Forms\r\n    $result = [System.Windows.Forms.MessageBox]::Show(\r\n        \"A restart is required to finish.`n`nWould you like to restart now?\",\r\n        'Restart Required',\r\n        [System.Windows.Forms.MessageBoxButtons]::YesNo,\r\n        [System.Windows.Forms.MessageBoxIcon]::Question\r\n    )\r\n\r\n    if ($result -eq [System.Windows.Forms.DialogResult]::Yes) {\r\n        Restart-Computer -Force\r\n    }\r\n    else {\r\n        exit\r\n    }\r\n \r\n}\r\n\r\nif ($RunWinUpdateRepair) {\r\n    Update-Repair\r\n}\r\n\r\n\r\nif ($nonInteractive) {\r\n    if ($backup) {\r\n        Create-RestorePoint -nonInteractive\r\n    }\r\n    if ($AllOptions) {\r\n        Disable-Registry-Keys \r\n        Install-NOAIPackage\r\n        Disable-Copilot-Policies \r\n        Remove-AI-Appx-Packages \r\n        Remove-Recall-Optional-Feature \r\n        Remove-AI-CBS-Packages \r\n        Remove-AI-Files \r\n        Hide-AI-Components \r\n        Disable-Notepad-Rewrite \r\n        Remove-Recall-Tasks \r\n        Update-Cleanup-Check\r\n    }\r\n    else {\r\n        #loop through options array and run desired tweaks\r\n        switch ($Options) {\r\n            'DisableRegKeys' { Disable-Registry-Keys }\r\n            'Prevent-AI-Package-Reinstall' { Install-NOAIPackage }\r\n            'DisableCopilotPolicies' { Disable-Copilot-Policies }\r\n            'RemoveAppxPackages' { Remove-AI-Appx-Packages }\r\n            'RemoveRecallFeature' { Remove-Recall-Optional-Feature }\r\n            'RemoveCBSPackages' { Remove-AI-CBS-Packages }\r\n            'RemoveAIFiles' { Remove-AI-Files }\r\n            'HideAIComponents' { Hide-AI-Components }\r\n            'DisableRewrite' { Disable-Notepad-Rewrite }\r\n            'RemoveRecallTasks' { Remove-Recall-Tasks }\r\n            'UpdateCleanupCheck' { Update-Cleanup-Check }\r\n        }\r\n    }\r\n\r\n    if ($InstallClassicApps) {\r\n        foreach ($app in $InstallClassicApps) {\r\n            install-classicapps -app $app\r\n        }\r\n    }\r\n}\r\nelse {\r\n\r\n    #===============================================================================\r\n    #BEGIN UI\r\n    #===============================================================================\r\n\r\n    $functionDescriptions = @{\r\n        'Disable-Registry-Keys'          = 'Disables Copilot and Recall through registry modifications, including Windows Search integration and Edge Copilot features. Also disables AI image creator in Paint and various AI-related privacy settings.'\r\n        'Prevent-AI-Package-Reinstall'   = 'Installs a custom Windows Update Package to prevent Windows Update and DISM from reinstalling AI packages.'\r\n        'Disable-Copilot-Policies'       = 'Disables Copilot policies in the Windows integrated services region policy JSON file by setting their default state to disabled.'\r\n        'Remove-AI-Appx-Packages'        = 'Removes AI-related AppX packages including Copilot, AIX, CoreAI, and various WindowsWorkload AI components using advanced removal techniques.'\r\n        'Remove-Recall-Optional-Feature' = 'Removes the Recall optional Windows feature completely from the system, including payload removal.'\r\n        'Remove-AI-CBS-Packages'         = 'Removes additional hidden AI packages from Component Based Servicing (CBS) by unhiding them and forcing removal.'\r\n        'Remove-AI-Files'                = 'Removes AI-related files from SystemApps, WindowsApps, and other system directories. Also removes machine learning DLLs and Copilot installers.'\r\n        'Hide-AI-Components'             = 'Hides AI components in Windows Settings by modifying the SettingsPageVisibility policy to prevent user access to AI settings.'\r\n        'Disable-Notepad-Rewrite'        = 'Disables the AI Rewrite feature in Windows Notepad through registry modifications and group policy settings.'\r\n        'Remove-Recall-Tasks'            = 'Removes Recall-related scheduled tasks from the Windows Task Scheduler to prevent AI data collection processes from running.'\r\n        'Update-Cleanup-Check'           = 'Creates a silent scheduled task to run at log-on to check if Windows has been updated... if it has then the script will cleanup newly installed AI features'\r\n    }\r\n\r\n    $window = New-Object System.Windows.Window\r\n    $window.Title = 'Remove Windows AI - by @zoicware'\r\n    $window.Width = 600\r\n    $window.Height = 700\r\n    $window.WindowStartupLocation = 'CenterScreen'\r\n    $window.ResizeMode = 'NoResize'\r\n\r\n    $window.Background = [System.Windows.Media.Brushes]::Black\r\n    $window.Foreground = [System.Windows.Media.Brushes]::White\r\n\r\n    $mainGrid = New-Object System.Windows.Controls.Grid\r\n    $window.Content = $mainGrid\r\n\r\n    $titleRow = New-Object System.Windows.Controls.RowDefinition\r\n    $titleRow.Height = [System.Windows.GridLength]::new(80)\r\n    $mainGrid.RowDefinitions.Add($titleRow) | Out-Null\r\n\r\n    $contentRow = New-Object System.Windows.Controls.RowDefinition\r\n    $contentRow.Height = [System.Windows.GridLength]::new(1, [System.Windows.GridUnitType]::Star)\r\n    $mainGrid.RowDefinitions.Add($contentRow) | Out-Null\r\n\r\n    $toggleRow = New-Object System.Windows.Controls.RowDefinition\r\n    $toggleRow.Height = [System.Windows.GridLength]::new(130) \r\n    $mainGrid.RowDefinitions.Add($toggleRow) | Out-Null\r\n\r\n    $bottomRow = New-Object System.Windows.Controls.RowDefinition\r\n    $bottomRow.Height = [System.Windows.GridLength]::new(80)\r\n    $mainGrid.RowDefinitions.Add($bottomRow) | Out-Null\r\n\r\n   \r\n    $title = New-Object System.Windows.Controls.TextBlock\r\n    $title.Text = 'Remove Windows AI'\r\n    $title.FontSize = 18\r\n    $title.FontWeight = 'Bold'\r\n    $title.Foreground = [System.Windows.Media.Brushes]::Cyan\r\n    $title.HorizontalAlignment = 'Center'\r\n    $title.VerticalAlignment = 'Center'\r\n    $title.Margin = '0,20,0,0'\r\n    [System.Windows.Controls.Grid]::SetRow($title, 0)\r\n    $mainGrid.Children.Add($title) | Out-Null\r\n\r\n    $scrollViewer = New-Object System.Windows.Controls.ScrollViewer\r\n    $scrollViewer.VerticalScrollBarVisibility = 'Auto'\r\n    $scrollViewer.Margin = '20,10,20,10'\r\n    [System.Windows.Controls.Grid]::SetRow($scrollViewer, 1)\r\n    $mainGrid.Children.Add($scrollViewer) | Out-Null\r\n\r\n    $scrollViewerStyle = @'\r\n<Style xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" \r\n       xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\"\r\n       TargetType=\"{x:Type ScrollViewer}\">\r\n    <Setter Property=\"Template\">\r\n        <Setter.Value>\r\n            <ControlTemplate TargetType=\"{x:Type ScrollViewer}\">\r\n                <Grid>\r\n                    <Grid.ColumnDefinitions>\r\n                        <ColumnDefinition Width=\"*\"/>\r\n                        <ColumnDefinition Width=\"Auto\"/>\r\n                    </Grid.ColumnDefinitions>\r\n                    <ScrollContentPresenter Grid.Column=\"0\" Margin=\"0,0,15,0\"/>\r\n                    <ScrollBar Grid.Column=\"1\" \r\n                               Name=\"PART_VerticalScrollBar\"\r\n                               Value=\"{TemplateBinding VerticalOffset}\"\r\n                               Maximum=\"{TemplateBinding ScrollableHeight}\"\r\n                               ViewportSize=\"{TemplateBinding ViewportHeight}\"\r\n                               Visibility=\"{TemplateBinding ComputedVerticalScrollBarVisibility}\"\r\n                               Width=\"12\"\r\n                               Margin=\"3,0,8,0\">\r\n                        <ScrollBar.Style>\r\n                            <Style TargetType=\"ScrollBar\">\r\n                                <Setter Property=\"Background\" Value=\"#2B2B2B\"/>\r\n                                <Setter Property=\"Template\">\r\n                                    <Setter.Value>\r\n                                        <ControlTemplate TargetType=\"ScrollBar\">\r\n                                            <Grid>\r\n                                                <Border Background=\"{TemplateBinding Background}\" CornerRadius=\"6\"/>\r\n                                                <Track Name=\"PART_Track\" IsDirectionReversed=\"True\">\r\n                                                    <Track.Thumb>\r\n                                                        <Thumb>\r\n                                                            <Thumb.Style>\r\n                                                                <Style TargetType=\"Thumb\">\r\n                                                                    <Setter Property=\"Background\" Value=\"#5A5A5A\"/>\r\n                                                                    <Setter Property=\"Template\">\r\n                                                                        <Setter.Value>\r\n                                                                            <ControlTemplate TargetType=\"Thumb\">\r\n                                                                                <Border Background=\"{TemplateBinding Background}\" \r\n                                                                                        CornerRadius=\"6\"\r\n                                                                                        Margin=\"2\"/>\r\n                                                                            </ControlTemplate>\r\n                                                                        </Setter.Value>\r\n                                                                    </Setter>\r\n                                                                    <Style.Triggers>\r\n                                                                        <Trigger Property=\"IsMouseOver\" Value=\"True\">\r\n                                                                            <Setter Property=\"Background\" Value=\"#7A7A7A\"/>\r\n                                                                        </Trigger>\r\n                                                                    </Style.Triggers>\r\n                                                                </Style>\r\n                                                            </Thumb.Style>\r\n                                                        </Thumb>\r\n                                                    </Track.Thumb>\r\n                                                </Track>\r\n                                            </Grid>\r\n                                        </ControlTemplate>\r\n                                    </Setter.Value>\r\n                                </Setter>\r\n                            </Style>\r\n                        </ScrollBar.Style>\r\n                    </ScrollBar>\r\n                </Grid>\r\n            </ControlTemplate>\r\n        </Setter.Value>\r\n    </Setter>\r\n</Style>\r\n'@\r\n\r\n    $reader = New-Object System.Xml.XmlNodeReader([xml]$scrollViewerStyle)\r\n    $scrollViewer.Style = [Windows.Markup.XamlReader]::Load($reader)\r\n\r\n\r\n    $stackPanel = New-Object System.Windows.Controls.StackPanel\r\n    $stackPanel.Orientation = 'Vertical'\r\n    $scrollViewer.Content = $stackPanel\r\n\r\n    $checkboxes = @{}\r\n    $functions = @(\r\n        'Disable-Registry-Keys'          \r\n        'Prevent-AI-Package-Reinstall'\r\n        'Disable-Copilot-Policies'       \r\n        'Remove-AI-Appx-Packages'        \r\n        'Remove-Recall-Optional-Feature' \r\n        'Remove-AI-CBS-Packages'         \r\n        'Remove-AI-Files'               \r\n        'Hide-AI-Components'            \r\n        'Disable-Notepad-Rewrite'       \r\n        'Remove-Recall-Tasks'\r\n        'Update-Cleanup-Check'          \r\n    )\r\n\r\n    foreach ($func in $functions) {\r\n        $optionContainer = New-Object System.Windows.Controls.DockPanel\r\n        $optionContainer.Margin = '0,5,0,5'\r\n        $optionContainer.LastChildFill = $false\r\n    \r\n        $checkbox = New-Object System.Windows.Controls.CheckBox\r\n        $checkbox.Content = $func.Replace('-', ' ')\r\n        $checkbox.FontSize = 14\r\n        $checkbox.Foreground = [System.Windows.Media.Brushes]::White\r\n        $checkbox.Margin = '0,0,10,0'\r\n        $checkbox.VerticalAlignment = 'Center'\r\n        $checkbox.IsChecked = $true\r\n        [System.Windows.Controls.DockPanel]::SetDock($checkbox, 'Left')\r\n        $checkboxes[$func] = $checkbox\r\n    \r\n        $infoButton = New-Object System.Windows.Controls.Button\r\n        $infoButton.Content = '?'\r\n        $infoButton.Width = 25\r\n        $infoButton.Height = 25\r\n        $infoButton.FontSize = 12\r\n        $infoButton.FontWeight = 'Bold'\r\n        $infoButton.Background = [System.Windows.Media.Brushes]::DarkBlue\r\n        $infoButton.Foreground = [System.Windows.Media.Brushes]::White\r\n        $infoButton.BorderBrush = [System.Windows.Media.Brushes]::Transparent\r\n        $infoButton.BorderThickness = 0\r\n        $infoButton.VerticalAlignment = 'Center'\r\n        $infoButton.Cursor = 'Hand'\r\n        [System.Windows.Controls.DockPanel]::SetDock($infoButton, 'Right')\r\n    \r\n        $infoTemplate = @'\r\n<ControlTemplate xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" TargetType=\"Button\">\r\n    <Border Background=\"{TemplateBinding Background}\" \r\n            BorderBrush=\"{TemplateBinding BorderBrush}\" \r\n            BorderThickness=\"{TemplateBinding BorderThickness}\" \r\n            CornerRadius=\"12\">\r\n        <ContentPresenter HorizontalAlignment=\"Center\" VerticalAlignment=\"Center\"/>\r\n    </Border>\r\n</ControlTemplate>\r\n'@\r\n        $infoButton.Template = [System.Windows.Markup.XamlReader]::Parse($infoTemplate)\r\n    \r\n        $infoButton.Add_Click({\r\n                param($sender, $e)\r\n                $funcName = $functions | Where-Object { $checkboxes[$_] -eq $optionContainer.Children[0] }\r\n                if (!$funcName) {\r\n                    # Find the function name by looking at the parent container\r\n                    $parentContainer = $sender.Parent\r\n                    $checkboxInContainer = $parentContainer.Children | Where-Object { $_ -is [System.Windows.Controls.CheckBox] }\r\n                    $funcName = $functions | Where-Object { ($checkboxes[$_].Content -replace ' ', '-') -eq ($checkboxInContainer.Content -replace ' ', '-') }\r\n                }\r\n        \r\n                # Find the correct function name\r\n                foreach ($f in $functions) {\r\n                    if ($checkboxes[$f].Parent -eq $sender.Parent) {\r\n                        $funcName = $f\r\n                        break\r\n                    }\r\n                }\r\n        \r\n                $description = $functionDescriptions[$funcName]\r\n                [System.Windows.MessageBox]::Show($description, $funcName, [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Information)\r\n            })\r\n    \r\n        $optionContainer.Children.Add($checkbox) | Out-Null\r\n        $optionContainer.Children.Add($infoButton) | Out-Null\r\n        $stackPanel.Children.Add($optionContainer) | Out-Null\r\n    }\r\n\r\n    #add switches for backup and revert modes\r\n    function Add-iOSToggleToUI {\r\n        param(\r\n            [Parameter(Mandatory = $true)]\r\n            [System.Windows.Controls.Panel]$ParentControl,\r\n            [bool]$IsChecked = $false,\r\n            [string]$Name = 'iOSToggle'\r\n        )\r\n                \r\n        $styleXaml = @'\r\n            <ResourceDictionary \r\n                xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"\r\n                xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\">\r\n                \r\n                <Style x:Key=\"CleanToggleStyle\" TargetType=\"{x:Type ToggleButton}\">\r\n                    <Setter Property=\"Background\" Value=\"Transparent\"/>\r\n                    <Setter Property=\"BorderBrush\" Value=\"Transparent\"/>\r\n                    <Setter Property=\"BorderThickness\" Value=\"0\"/>\r\n                    <Setter Property=\"Width\" Value=\"40\"/>\r\n                    <Setter Property=\"Height\" Value=\"24\"/>\r\n                    <Setter Property=\"Cursor\" Value=\"Hand\"/>\r\n                    <Setter Property=\"Focusable\" Value=\"False\"/>\r\n                    <Setter Property=\"FocusVisualStyle\" Value=\"{x:Null}\"/>\r\n                    <Setter Property=\"Template\">\r\n                        <Setter.Value>\r\n                            <ControlTemplate TargetType=\"{x:Type ToggleButton}\">\r\n                                <Grid>\r\n                                    <!-- Switch Track -->\r\n                                    <Border x:Name=\"SwitchTrack\" \r\n                                            Width=\"40\" Height=\"24\" \r\n                                            Background=\"#E5E5E7\" \r\n                                            CornerRadius=\"12\"\r\n                                            BorderThickness=\"0\">\r\n                                        \r\n                                        <!-- Switch Thumb -->\r\n                                        <Border x:Name=\"SwitchThumb\" \r\n                                                Width=\"20\" Height=\"20\" \r\n                                                Background=\"White\" \r\n                                                CornerRadius=\"10\"\r\n                                                HorizontalAlignment=\"Left\"\r\n                                                VerticalAlignment=\"Center\"\r\n                                                Margin=\"2,0,0,0\">\r\n                                            <Border.Effect>\r\n                                                <DropShadowEffect Color=\"#00000040\" \r\n                                                                  Direction=\"270\" \r\n                                                                  ShadowDepth=\"1\" \r\n                                                                  BlurRadius=\"3\"\r\n                                                                  Opacity=\"0.4\"/>\r\n                                            </Border.Effect>\r\n                                            <Border.RenderTransform>\r\n                                                <TranslateTransform x:Name=\"ThumbTransform\" X=\"0\"/>\r\n                                            </Border.RenderTransform>\r\n                                        </Border>\r\n                                    </Border>\r\n                                </Grid>\r\n                                \r\n                                <ControlTemplate.Triggers>\r\n                                    <!-- Checked State (ON) -->\r\n                                    <Trigger Property=\"IsChecked\" Value=\"True\">\r\n                                        <Trigger.EnterActions>\r\n                                            <BeginStoryboard>\r\n                                                <Storyboard>\r\n                                                    <!-- Slide thumb to right -->\r\n                                                    <DoubleAnimation \r\n                                                        Storyboard.TargetName=\"ThumbTransform\"\r\n                                                        Storyboard.TargetProperty=\"X\"\r\n                                                        To=\"16\" \r\n                                                        Duration=\"0:0:0.2\"/>\r\n                                                    <!-- Change track color to green -->\r\n                                                    <ColorAnimation \r\n                                                        Storyboard.TargetName=\"SwitchTrack\"\r\n                                                        Storyboard.TargetProperty=\"Background.Color\"\r\n                                                        To=\"#34C759\" \r\n                                                        Duration=\"0:0:0.2\"/>\r\n                                                </Storyboard>\r\n                                            </BeginStoryboard>\r\n                                        </Trigger.EnterActions>\r\n                                        <Trigger.ExitActions>\r\n                                            <BeginStoryboard>\r\n                                                <Storyboard>\r\n                                                    <!-- Slide thumb to left -->\r\n                                                    <DoubleAnimation \r\n                                                        Storyboard.TargetName=\"ThumbTransform\"\r\n                                                        Storyboard.TargetProperty=\"X\"\r\n                                                        To=\"0\" \r\n                                                        Duration=\"0:0:0.2\"/>\r\n                                                    <!-- Change track color to gray -->\r\n                                                    <ColorAnimation \r\n                                                        Storyboard.TargetName=\"SwitchTrack\"\r\n                                                        Storyboard.TargetProperty=\"Background.Color\"\r\n                                                        To=\"#E5E5E7\" \r\n                                                        Duration=\"0:0:0.2\"/>\r\n                                                </Storyboard>\r\n                                            </BeginStoryboard>\r\n                                        </Trigger.ExitActions>\r\n                                    </Trigger>\r\n                                </ControlTemplate.Triggers>\r\n                            </ControlTemplate>\r\n                        </Setter.Value>\r\n                    </Setter>\r\n                </Style>\r\n            </ResourceDictionary>\r\n'@\r\n                \r\n        $reader = New-Object System.Xml.XmlNodeReader([xml]$styleXaml)\r\n        $resourceDict = [Windows.Markup.XamlReader]::Load($reader)\r\n                \r\n        $toggleButton = New-Object System.Windows.Controls.Primitives.ToggleButton\r\n        $toggleButton.Name = $Name\r\n        $toggleButton.IsChecked = $IsChecked\r\n        $toggleButton.Style = $resourceDict['CleanToggleStyle']\r\n        $ParentControl.Children.Add($toggleButton) | Out-Null\r\n                \r\n        return $toggleButton\r\n    }\r\n    \r\n    $divider = New-Object System.Windows.Controls.Separator\r\n    $divider.Margin = '0,10,0,10'\r\n    $divider.Background = [System.Windows.Media.Brushes]::DarkGray\r\n    $stackPanel.Children.Add($divider) | Out-Null\r\n\r\n    $classicAppsHeader = New-Object System.Windows.Controls.TextBlock\r\n    $classicAppsHeader.Text = 'Install Classic Windows Apps'\r\n    $classicAppsHeader.FontSize = 16\r\n    $classicAppsHeader.FontWeight = 'Bold'\r\n    $classicAppsHeader.Foreground = [System.Windows.Media.Brushes]::Cyan\r\n    $classicAppsHeader.Margin = '0,10,0,10'\r\n    $stackPanel.Children.Add($classicAppsHeader) | Out-Null\r\n\r\n    $classicAppsFunctions = @(\r\n        'Install-Classic-Photoviewer'\r\n        'Install-Classic-Mspaint'\r\n        'Install-Classic-SnippingTool'\r\n        'Install-Classic-Notepad'\r\n        'Install-Photos-Legacy'\r\n    )\r\n\r\n    $classicAppsDescriptions = @{\r\n        'Install-Classic-Photoviewer'  = 'Installs the classic Windows Photo Viewer from Windows 7/8, allowing you to view images with the traditional viewer instead of the modern Photos app.'\r\n        'Install-Classic-Mspaint'      = 'Installs the classic Microsoft Paint application from older Windows versions.'\r\n        'Install-Classic-SnippingTool' = 'Installs the classic Snipping Tool, replacing the modern Snip & Sketch app.'\r\n        'Install-Classic-Notepad'      = 'Installs the classic Notepad from Windows 10, replacing the modern uwp version.'\r\n        'Install-Photos-Legacy'        = 'Installs the legacy Windows Photos app from the Microsoft Store.'\r\n    }\r\n\r\n    $functionDescriptions += $classicAppsDescriptions\r\n    foreach ($func in $classicAppsFunctions) {\r\n        $optionContainer = New-Object System.Windows.Controls.DockPanel\r\n        $optionContainer.Margin = '0,5,0,5'\r\n        $optionContainer.LastChildFill = $false\r\n    \r\n        $checkbox = New-Object System.Windows.Controls.CheckBox\r\n        $checkbox.Content = $func.Replace('-', ' ')\r\n        $checkbox.FontSize = 14\r\n        $checkbox.Foreground = [System.Windows.Media.Brushes]::White\r\n        $checkbox.Margin = '0,0,10,0'\r\n        $checkbox.VerticalAlignment = 'Center'\r\n        $checkbox.IsChecked = $false  \r\n        [System.Windows.Controls.DockPanel]::SetDock($checkbox, 'Left')\r\n        $checkboxes[$func] = $checkbox\r\n    \r\n        $infoButton = New-Object System.Windows.Controls.Button\r\n        $infoButton.Content = '?'\r\n        $infoButton.Width = 25\r\n        $infoButton.Height = 25\r\n        $infoButton.FontSize = 12\r\n        $infoButton.FontWeight = 'Bold'\r\n        $infoButton.Background = [System.Windows.Media.Brushes]::DarkBlue\r\n        $infoButton.Foreground = [System.Windows.Media.Brushes]::White\r\n        $infoButton.BorderBrush = [System.Windows.Media.Brushes]::Transparent\r\n        $infoButton.BorderThickness = 0\r\n        $infoButton.VerticalAlignment = 'Center'\r\n        $infoButton.Cursor = 'Hand'\r\n        [System.Windows.Controls.DockPanel]::SetDock($infoButton, 'Right')\r\n    \r\n        $infoTemplate = @'\r\n<ControlTemplate xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" TargetType=\"Button\">\r\n    <Border Background=\"{TemplateBinding Background}\" \r\n            BorderBrush=\"{TemplateBinding BorderBrush}\" \r\n            BorderThickness=\"{TemplateBinding BorderThickness}\" \r\n            CornerRadius=\"12\">\r\n        <ContentPresenter HorizontalAlignment=\"Center\" VerticalAlignment=\"Center\"/>\r\n    </Border>\r\n</ControlTemplate>\r\n'@\r\n        $infoButton.Template = [System.Windows.Markup.XamlReader]::Parse($infoTemplate)\r\n    \r\n        $infoButton.Add_Click({\r\n                param($sender, $e)\r\n        \r\n                # Find the correct function name\r\n                foreach ($f in $classicAppsFunctions) {\r\n                    if ($checkboxes[$f].Parent -eq $sender.Parent) {\r\n                        $funcName = $f\r\n                        break\r\n                    }\r\n                }\r\n        \r\n                $description = $functionDescriptions[$funcName]\r\n                [System.Windows.MessageBox]::Show($description, $funcName, [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Information)\r\n            })\r\n    \r\n        $optionContainer.Children.Add($checkbox) | Out-Null\r\n        $optionContainer.Children.Add($infoButton) | Out-Null\r\n        $stackPanel.Children.Add($optionContainer) | Out-Null\r\n    }\r\n\r\n    $allFunctions = $functions + $classicAppsFunctions\r\n    \r\n    $toggleGrid = New-Object System.Windows.Controls.Grid\r\n    [System.Windows.Controls.Grid]::SetRow($toggleGrid, 2)  \r\n    $toggleGrid.Margin = '20,10,55,15'\r\n        \r\n    $row1 = New-Object System.Windows.Controls.RowDefinition\r\n    $row1.Height = [System.Windows.GridLength]::Auto\r\n    $row2 = New-Object System.Windows.Controls.RowDefinition\r\n    $row2.Height = [System.Windows.GridLength]::Auto\r\n    $toggleGrid.RowDefinitions.Add($row1) | Out-Null\r\n    $toggleGrid.RowDefinitions.Add($row2) | Out-Null\r\n        \r\n    $mainGrid.Children.Add($toggleGrid) | Out-Null\r\n\r\n    $togglePanel1 = New-Object System.Windows.Controls.DockPanel\r\n    $togglePanel1.HorizontalAlignment = [System.Windows.HorizontalAlignment]::Left\r\n    $togglePanel1.VerticalAlignment = [System.Windows.VerticalAlignment]::Center\r\n    $togglePanel1.Margin = New-Object System.Windows.Thickness(0, 0, 0, 10) \r\n    $togglePanel1.LastChildFill = $false\r\n    [System.Windows.Controls.Grid]::SetRow($togglePanel1, 0)\r\n        \r\n    $toggleLabel1 = New-Object System.Windows.Controls.TextBlock\r\n    $toggleLabel1.Text = 'Revert Mode:'\r\n    $toggleLabel1.Foreground = [System.Windows.Media.Brushes]::White\r\n    $toggleLabel1.VerticalAlignment = [System.Windows.VerticalAlignment]::Center\r\n    $toggleLabel1.Margin = New-Object System.Windows.Thickness(0, 0, 10, 0)\r\n    [System.Windows.Controls.DockPanel]::SetDock($toggleLabel1, 'Left')\r\n    $togglePanel1.Children.Add($toggleLabel1) | Out-Null\r\n        \r\n    $revertModeToggle = Add-iOSToggleToUI -ParentControl $togglePanel1 -IsChecked $revert\r\n    [System.Windows.Controls.DockPanel]::SetDock($revertModeToggle, 'Left')\r\n\r\n    $revertInfoButton = New-Object System.Windows.Controls.Button\r\n    $revertInfoButton.Content = '?'\r\n    $revertInfoButton.Width = 25\r\n    $revertInfoButton.Height = 25\r\n    $revertInfoButton.FontSize = 12\r\n    $revertInfoButton.FontWeight = 'Bold'\r\n    $revertInfoButton.Background = [System.Windows.Media.Brushes]::DarkBlue\r\n    $revertInfoButton.Foreground = [System.Windows.Media.Brushes]::White\r\n    $revertInfoButton.BorderBrush = [System.Windows.Media.Brushes]::Transparent\r\n    $revertInfoButton.BorderThickness = 0\r\n    $revertInfoButton.VerticalAlignment = 'Center'\r\n    $revertInfoButton.Margin = New-Object System.Windows.Thickness(10, 0, 0, 0)\r\n    $revertInfoButton.Cursor = 'Hand'\r\n    [System.Windows.Controls.DockPanel]::SetDock($revertInfoButton, 'Right')\r\n\r\n    $revertInfoTemplate = @'\r\n<ControlTemplate xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" TargetType=\"Button\">\r\n    <Border Background=\"{TemplateBinding Background}\" \r\n            BorderBrush=\"{TemplateBinding BorderBrush}\" \r\n            BorderThickness=\"{TemplateBinding BorderThickness}\" \r\n            CornerRadius=\"12\">\r\n        <ContentPresenter HorizontalAlignment=\"Center\" VerticalAlignment=\"Center\"/>\r\n    </Border>\r\n</ControlTemplate>\r\n'@\r\n    $revertInfoButton.Template = [System.Windows.Markup.XamlReader]::Parse($revertInfoTemplate)\r\n    $revertInfoButton.Add_Click({\r\n            $description = 'Revert Mode will undo changes made by this tool, restoring AI features and settings to their original state. Selected options above will be reverted/enabled when this mode is selected.'\r\n            [System.Windows.MessageBox]::Show($description, 'Revert Mode', [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Information)\r\n        })\r\n\r\n    $togglePanel1.Children.Add($revertInfoButton) | Out-Null\r\n    $toggleGrid.Children.Add($togglePanel1) | Out-Null\r\n\r\n    $togglePanel2 = New-Object System.Windows.Controls.DockPanel\r\n    $togglePanel2.HorizontalAlignment = [System.Windows.HorizontalAlignment]::Left\r\n    $togglePanel2.VerticalAlignment = [System.Windows.VerticalAlignment]::Center\r\n    $togglePanel2.LastChildFill = $false\r\n    [System.Windows.Controls.Grid]::SetRow($togglePanel2, 1)\r\n        \r\n    $toggleLabel2 = New-Object System.Windows.Controls.TextBlock\r\n    $toggleLabel2.Text = 'Backup Mode:'\r\n    $toggleLabel2.Foreground = [System.Windows.Media.Brushes]::White\r\n    $toggleLabel2.VerticalAlignment = [System.Windows.VerticalAlignment]::Center\r\n    $toggleLabel2.Margin = New-Object System.Windows.Thickness(0, 0, 10, 0)\r\n    [System.Windows.Controls.DockPanel]::SetDock($toggleLabel2, 'Left')\r\n    $togglePanel2.Children.Add($toggleLabel2) | Out-Null\r\n        \r\n    $backupModeToggle = Add-iOSToggleToUI -ParentControl $togglePanel2 -IsChecked $backup\r\n    [System.Windows.Controls.DockPanel]::SetDock($backupModeToggle, 'Left')\r\n\r\n    $backupInfoButton = New-Object System.Windows.Controls.Button\r\n    $backupInfoButton.Content = '?'\r\n    $backupInfoButton.Width = 25\r\n    $backupInfoButton.Height = 25\r\n    $backupInfoButton.FontSize = 12\r\n    $backupInfoButton.FontWeight = 'Bold'\r\n    $backupInfoButton.Background = [System.Windows.Media.Brushes]::DarkBlue\r\n    $backupInfoButton.Foreground = [System.Windows.Media.Brushes]::White\r\n    $backupInfoButton.BorderBrush = [System.Windows.Media.Brushes]::Transparent\r\n    $backupInfoButton.BorderThickness = 0\r\n    $backupInfoButton.VerticalAlignment = 'Center'\r\n    $backupInfoButton.Margin = New-Object System.Windows.Thickness(10, 0, 0, 0)\r\n    $backupInfoButton.Cursor = 'Hand'\r\n    [System.Windows.Controls.DockPanel]::SetDock($backupInfoButton, 'Right')\r\n\r\n    $backupInfoTemplate = @'\r\n<ControlTemplate xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" TargetType=\"Button\">\r\n    <Border Background=\"{TemplateBinding Background}\" \r\n            BorderBrush=\"{TemplateBinding BorderBrush}\" \r\n            BorderThickness=\"{TemplateBinding BorderThickness}\" \r\n            CornerRadius=\"12\">\r\n        <ContentPresenter HorizontalAlignment=\"Center\" VerticalAlignment=\"Center\"/>\r\n    </Border>\r\n</ControlTemplate>\r\n'@\r\n    $backupInfoButton.Template = [System.Windows.Markup.XamlReader]::Parse($backupInfoTemplate)\r\n    $backupInfoButton.Add_Click({\r\n            $description = 'Backup Mode keeps necessary files in your User directory allowing revert mode to work properly, use this option while removing AI if you would like to fully revert the removal process.'\r\n            [System.Windows.MessageBox]::Show($description, 'Backup Mode', [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Information)\r\n        })\r\n\r\n    $togglePanel2.Children.Add($backupInfoButton) | Out-Null\r\n    $toggleGrid.Children.Add($togglePanel2) | Out-Null\r\n    # ensure that backup mode and revert mode arent both selected at the same time (cant believe i have to do this....)\r\n    $backupModeToggle.Add_Checked({ \r\n            $Global:backup = 1\r\n            $revertModeToggle.IsChecked = $false\r\n        }) | Out-Null\r\n\r\n    $backupModeToggle.Add_Unchecked({ \r\n            $Global:backup = 0 \r\n        }) | Out-Null\r\n\r\n    $revertModeToggle.Add_Checked({ \r\n            $Global:revert = 1 \r\n            $backupModeToggle.IsChecked = $false\r\n        }) | Out-Null\r\n\r\n    $revertModeToggle.Add_Unchecked({ \r\n            $Global:revert = 0 \r\n        }) | Out-Null\r\n   \r\n    $bottomGrid = New-Object System.Windows.Controls.Grid\r\n    [System.Windows.Controls.Grid]::SetRow($bottomGrid, 3)\r\n    $bottomGrid.Margin = '25,15,25,15'\r\n\r\n    $leftColumn = New-Object System.Windows.Controls.ColumnDefinition\r\n    $leftColumn.Width = [System.Windows.GridLength]::new(1, [System.Windows.GridUnitType]::Star)\r\n    $bottomGrid.ColumnDefinitions.Add($leftColumn) | Out-Null\r\n\r\n    $rightColumn = New-Object System.Windows.Controls.ColumnDefinition\r\n    $rightColumn.Width = [System.Windows.GridLength]::new(1, [System.Windows.GridUnitType]::Star)\r\n    $bottomGrid.ColumnDefinitions.Add($rightColumn) | Out-Null\r\n\r\n    $socialPanel = New-Object System.Windows.Controls.StackPanel\r\n    $socialPanel.Orientation = 'Horizontal'\r\n    $socialPanel.HorizontalAlignment = 'Left'\r\n    $socialPanel.VerticalAlignment = 'Center'\r\n    [System.Windows.Controls.Grid]::SetColumn($socialPanel, 0)\r\n\r\n    # Base64 encoded png icons\r\n    $Global:discordIconBase64 = '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'\r\n\r\n    $Global:githubIconBase64 = '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'\r\n\r\n    function New-ImageFromBase64 {\r\n        param([string]$base64String)\r\n    \r\n        try {\r\n            $imageBytes = [Convert]::FromBase64String($base64String)\r\n            $stream = New-Object System.IO.MemoryStream($imageBytes, 0, $imageBytes.Length)\r\n        \r\n            $image = New-Object System.Windows.Controls.Image\r\n            $bitmap = New-Object System.Windows.Media.Imaging.BitmapImage\r\n            $bitmap.BeginInit()\r\n            $bitmap.StreamSource = $stream\r\n            $bitmap.CacheOption = 'OnLoad'\r\n            $bitmap.CreateOptions = 'PreservePixelFormat'\r\n            $bitmap.EndInit()\r\n        \r\n            [System.Windows.Media.RenderOptions]::SetBitmapScalingMode($image, 'HighQuality')\r\n            [System.Windows.Media.RenderOptions]::SetEdgeMode($image, 'Unspecified')\r\n            $image.Source = $bitmap\r\n        \r\n            $image.Width = 30  \r\n            $image.Height = 30\r\n            $image.Stretch = 'Uniform'  \r\n            $image.HorizontalAlignment = 'Center'\r\n            $image.VerticalAlignment = 'Center'\r\n        \r\n            return $image\r\n        }\r\n        catch {\r\n            Write-Host \"Error loading image: $($_.Exception.Message)\"\r\n            # Fallback text if image fails to load\r\n            $textBlock = New-Object System.Windows.Controls.TextBlock\r\n            $textBlock.Text = '?'\r\n            $textBlock.Foreground = [System.Windows.Media.Brushes]::White\r\n            $textBlock.FontSize = 16\r\n            $textBlock.HorizontalAlignment = 'Center'\r\n            $textBlock.VerticalAlignment = 'Center'\r\n            return $textBlock\r\n        }\r\n    }\r\n\r\n\r\n    $discordButton = New-Object System.Windows.Controls.Button\r\n    $discordButton.Width = 40\r\n    $discordButton.Height = 40\r\n    $discordButton.Background = [System.Windows.Media.SolidColorBrush]::new([System.Windows.Media.Color]::FromRgb(114, 137, 218))  # Discord blue\r\n    $discordButton.BorderBrush = [System.Windows.Media.Brushes]::Transparent\r\n    $discordButton.BorderThickness = 0\r\n    $discordButton.Margin = '0,0,10,0'\r\n    $discordButton.Cursor = 'Hand'\r\n\r\n    $discordIcon = New-ImageFromBase64 -base64String $Global:discordIconBase64\r\n    $discordButton.Content = $discordIcon\r\n\r\n    $discordTemplate = @'\r\n<ControlTemplate xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" TargetType=\"Button\">\r\n    <Border Background=\"{TemplateBinding Background}\" \r\n            BorderBrush=\"{TemplateBinding BorderBrush}\" \r\n            BorderThickness=\"{TemplateBinding BorderThickness}\" \r\n            CornerRadius=\"20\">\r\n        <ContentPresenter HorizontalAlignment=\"Center\" VerticalAlignment=\"Center\"/>\r\n    </Border>\r\n</ControlTemplate>\r\n'@\r\n    $discordButton.Template = [System.Windows.Markup.XamlReader]::Parse($discordTemplate)\r\n    $discordButton.Add_Click({\r\n            Start-Process 'https://discord.gg/VsC7XS5vgA'\r\n        })\r\n\r\n    $githubButton = New-Object System.Windows.Controls.Button\r\n    $githubButton.Width = 40\r\n    $githubButton.Height = 40\r\n    $githubButton.Background = [System.Windows.Media.SolidColorBrush]::new([System.Windows.Media.Color]::FromRgb(83, 83, 83))  # GitHub dark #rgb(83, 83, 83)\r\n    $githubButton.BorderBrush = [System.Windows.Media.Brushes]::Transparent\r\n    $githubButton.BorderThickness = 0\r\n    $githubButton.Cursor = 'Hand'\r\n\r\n    $githubIcon = New-ImageFromBase64 -base64String $Global:githubIconBase64\r\n    $githubButton.Content = $githubIcon\r\n\r\n    $githubTemplate = @'\r\n<ControlTemplate xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" TargetType=\"Button\">\r\n    <Border Background=\"{TemplateBinding Background}\" \r\n            BorderBrush=\"{TemplateBinding BorderBrush}\" \r\n            BorderThickness=\"{TemplateBinding BorderThickness}\" \r\n            CornerRadius=\"20\">\r\n        <ContentPresenter HorizontalAlignment=\"Center\" VerticalAlignment=\"Center\"/>\r\n    </Border>\r\n</ControlTemplate>\r\n'@\r\n    $githubButton.Template = [System.Windows.Markup.XamlReader]::Parse($githubTemplate)\r\n    $githubButton.Add_Click({\r\n            Start-Process 'https://github.com/zoicware/RemoveWindowsAI'\r\n        })\r\n\r\n    $socialPanel.Children.Add($discordButton) | Out-Null\r\n    $socialPanel.Children.Add($githubButton) | Out-Null\r\n\r\n    $actionPanel = New-Object System.Windows.Controls.StackPanel\r\n    $actionPanel.Orientation = 'Horizontal'\r\n    $actionPanel.HorizontalAlignment = 'Right'\r\n    $actionPanel.VerticalAlignment = 'Center'\r\n    [System.Windows.Controls.Grid]::SetColumn($actionPanel, 1)\r\n\r\n    $cancelButton = New-Object System.Windows.Controls.Button\r\n    $cancelButton.Content = 'Cancel'\r\n    $cancelButton.Width = 80\r\n    $cancelButton.Height = 35\r\n    $cancelButton.Background = [System.Windows.Media.Brushes]::DarkRed\r\n    $cancelButton.Foreground = [System.Windows.Media.Brushes]::White\r\n    $cancelButton.BorderBrush = [System.Windows.Media.Brushes]::Transparent\r\n    $cancelButton.BorderThickness = 0\r\n    $cancelButton.Margin = '0,0,10,0'\r\n    $cancelButton.Cursor = 'Hand'\r\n\r\n    $cancelTemplate = @'\r\n<ControlTemplate xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" TargetType=\"Button\">\r\n    <Border Background=\"{TemplateBinding Background}\" \r\n            BorderBrush=\"{TemplateBinding BorderBrush}\" \r\n            BorderThickness=\"{TemplateBinding BorderThickness}\" \r\n            CornerRadius=\"17\">\r\n        <ContentPresenter HorizontalAlignment=\"Center\" VerticalAlignment=\"Center\"/>\r\n    </Border>\r\n</ControlTemplate>\r\n'@\r\n    $cancelButton.Template = [System.Windows.Markup.XamlReader]::Parse($cancelTemplate)\r\n    $cancelButton.Add_Click({\r\n            $window.Close()\r\n        })\r\n\r\n    $applyButton = New-Object System.Windows.Controls.Button\r\n    $applyButton.Content = 'Apply'\r\n    $applyButton.Width = 80\r\n    $applyButton.Height = 35\r\n    $applyButton.Background = [System.Windows.Media.Brushes]::DarkGreen\r\n    $applyButton.Foreground = [System.Windows.Media.Brushes]::White\r\n    $applyButton.BorderBrush = [System.Windows.Media.Brushes]::Transparent\r\n    $applyButton.BorderThickness = 0\r\n    $applyButton.Cursor = 'Hand'\r\n\r\n    $applyTemplate = @'\r\n<ControlTemplate xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\" TargetType=\"Button\">\r\n    <Border Background=\"{TemplateBinding Background}\" \r\n            BorderBrush=\"{TemplateBinding BorderBrush}\" \r\n            BorderThickness=\"{TemplateBinding BorderThickness}\" \r\n            CornerRadius=\"17\">\r\n        <ContentPresenter HorizontalAlignment=\"Center\" VerticalAlignment=\"Center\"/>\r\n    </Border>\r\n</ControlTemplate>\r\n'@\r\n    $applyButton.Template = [System.Windows.Markup.XamlReader]::Parse($applyTemplate)\r\n    $applyButton.Add_Click({\r\n            Write-Status -msg 'Killing AI Processes...'\r\n            #kill ai processes to ensure script runs smoothly\r\n            $aiProcesses = @(\r\n                'ai.exe'\r\n                'Copilot.exe'\r\n                'aihost.exe'\r\n                'aicontext.exe'\r\n                'ClickToDo.exe'\r\n                'aixhost.exe'\r\n                'WorkloadsSessionHost.exe'\r\n                'WebViewHost.exe'\r\n                'aimgr.exe'\r\n                'AppActions.exe'\r\n                'M365Copilot.exe'\r\n            )\r\n            foreach ($procName in $aiProcesses) {\r\n                taskkill /im $procName /f *>$null\r\n            }\r\n    \r\n            $progressWindow = New-Object System.Windows.Window\r\n            $progressWindow.Title = 'Processing...'\r\n            $progressWindow.Width = 400\r\n            $progressWindow.Height = 200\r\n            $progressWindow.WindowStartupLocation = 'CenterOwner'\r\n            $progressWindow.Owner = $window\r\n            $progressWindow.Background = [System.Windows.Media.Brushes]::Black\r\n            $progressWindow.Foreground = [System.Windows.Media.Brushes]::White\r\n            $progressWindow.ResizeMode = 'NoResize'\r\n    \r\n            $progressGrid = New-Object System.Windows.Controls.Grid\r\n            $progressWindow.Content = $progressGrid\r\n    \r\n            $progressText = New-Object System.Windows.Controls.TextBlock\r\n            $progressText.Text = 'Initializing...'\r\n            $progressText.FontSize = 14\r\n            $progressText.Foreground = [System.Windows.Media.Brushes]::Cyan\r\n            $progressText.HorizontalAlignment = 'Center'\r\n            $progressText.VerticalAlignment = 'Center'\r\n            $progressText.TextWrapping = 'Wrap'\r\n            $progressGrid.Children.Add($progressText) | Out-Null\r\n    \r\n            $progressWindow.Show()\r\n    \r\n            $selectedFunctions = @()\r\n            foreach ($func in $allFunctions) {\r\n                if ($checkboxes[$func].IsChecked) {\r\n                    $selectedFunctions += $func\r\n                }\r\n            }\r\n    \r\n            if ($selectedFunctions.Count -eq 0) {\r\n                $progressWindow.Close()\r\n                [System.Windows.MessageBox]::Show('No options selected.', 'Nothing to Process', [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Information)\r\n                return\r\n            }\r\n    \r\n            try {\r\n                if ($backup) {\r\n                    Create-RestorePoint\r\n                }\r\n                foreach ($func in $selectedFunctions) {\r\n                    $progressText.Text = \"Executing: $($func.Replace('-', ' '))\"\r\n                    $progressWindow.UpdateLayout()\r\n                    [System.Windows.Forms.Application]::DoEvents()\r\n\r\n                    switch ($func) {\r\n                        'Disable-Registry-Keys' { Disable-Registry-Keys }\r\n                        'Prevent-AI-Package-Reinstall' { Install-NOAIPackage }\r\n                        'Disable-Copilot-Policies' { Disable-Copilot-Policies }\r\n                        'Remove-AI-Appx-Packages' { Remove-AI-Appx-Packages }\r\n                        'Remove-Recall-Optional-Feature' { Remove-Recall-Optional-Feature }\r\n                        'Remove-AI-CBS-Packages' { Remove-AI-CBS-Packages }\r\n                        'Remove-AI-Files' { Remove-AI-Files }\r\n                        'Hide-AI-Components' { Hide-AI-Components }\r\n                        'Disable-Notepad-Rewrite' { Disable-Notepad-Rewrite }\r\n                        'Remove-Recall-Tasks' { Remove-Recall-Tasks }\r\n                        'Update-Cleanup-Check' { Update-Cleanup-Check }\r\n                        'Install-Classic-Photoviewer' { install-classicapps -app 'photoviewer' }\r\n                        'Install-Classic-Mspaint' { install-classicapps -app 'mspaint' }\r\n                        'Install-Classic-SnippingTool' { install-classicapps -app 'snippingtool' }\r\n                        'Install-Classic-Notepad' { install-classicapps -app 'notepad' }\r\n                        'Install-Photos-Legacy' { install-classicapps -app 'photoslegacy' }\r\n                    }\r\n            \r\n                    Start-Sleep -Milliseconds 500\r\n                }\r\n        \r\n                $progressText.Text = 'Completed successfully!'\r\n                Start-Sleep -Seconds 2\r\n                $progressWindow.Close()\r\n        \r\n                $result = [System.Windows.MessageBox]::Show(\"AI removal process completed successfully!`n`nWould you like to restart your computer now to ensure all changes take effect?\", 'Process Complete', [System.Windows.MessageBoxButton]::YesNo, [System.Windows.MessageBoxImage]::Question)\r\n        \r\n                if ($result -eq [System.Windows.MessageBoxResult]::Yes) {\r\n                    #cleanup code\r\n                    try {\r\n                        Remove-Item \"$($tempDir)aiPackageRemoval.ps1\" -Force -ErrorAction SilentlyContinue\r\n                    }\r\n                    catch {}\r\n                    try {\r\n                        Remove-Item \"$($tempDir)RemoveRecallTasks.ps1\" -Force -ErrorAction SilentlyContinue\r\n                    }\r\n                    catch {}\r\n                    try {\r\n                        Remove-Item \"$($tempDir)PathsToDelete.txt\" -Force -ErrorAction SilentlyContinue\r\n                    }\r\n                    catch {}  \r\n                    try {\r\n                        Remove-Item \"$($tempDir)ZoicwareRemoveWindowsAI-*1.0.0.0.cab\" -Force -ErrorAction SilentlyContinue\r\n                    }\r\n                    catch {}\r\n\r\n                    #set executionpolicy back to what it was\r\n                    if ($ogExecutionPolicy) {\r\n                        if ($Global:executionPolicyUser) {\r\n                            Reg.exe add 'HKCU\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n                        }\r\n                        elseif ($Global:executionPolicyMachine) {\r\n                            Reg.exe add 'HKLM\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n                        }\r\n                        elseif ($Global:executionPolicyWow64) {\r\n                            Reg.exe add 'HKLM\\SOFTWARE\\Wow6432Node\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n                        }\r\n                        elseif ($Global:executionPolicyUserPol) {\r\n                            Reg.exe add 'HKCU\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n                        }\r\n                        else {\r\n                            Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n                        }\r\n                    }\r\n                    Restart-Computer -Force\r\n                }\r\n        \r\n                $window.Close()\r\n            }\r\n            catch {\r\n                $progressWindow.Close()\r\n                [System.Windows.MessageBox]::Show(\"An error occurred: $($_.Exception.Message)\", 'Error', [System.Windows.MessageBoxButton]::OK, [System.Windows.MessageBoxImage]::Error)\r\n            }\r\n        })\r\n\r\n\r\n    $actionPanel.Children.Add($cancelButton) | Out-Null\r\n    $actionPanel.Children.Add($applyButton) | Out-Null\r\n\r\n    $bottomGrid.Children.Add($socialPanel) | Out-Null\r\n    $bottomGrid.Children.Add($actionPanel) | Out-Null\r\n    $mainGrid.Children.Add($bottomGrid) | Out-Null\r\n\r\n    $window.ShowDialog() | Out-Null\r\n}\r\n\r\n#cleanup code\r\ntry {\r\n    Remove-Item \"$($tempDir)aiPackageRemoval.ps1\" -Force -ErrorAction SilentlyContinue\r\n}\r\ncatch {}\r\ntry {\r\n    Remove-Item \"$($tempDir)RemoveRecallTasks.ps1\" -Force -ErrorAction SilentlyContinue\r\n}\r\ncatch {}\r\ntry {\r\n    Remove-Item \"$($tempDir)PathsToDelete.txt\" -Force -ErrorAction SilentlyContinue\r\n}\r\ncatch {}\r\ntry {\r\n    Remove-Item \"$($tempDir)ZoicwareRemoveWindowsAI-*1.0.0.0.cab\" -Force -ErrorAction SilentlyContinue\r\n}\r\ncatch {}\r\n\r\n#set executionpolicy back to what it was\r\nif ($ogExecutionPolicy) {\r\n    if ($Global:executionPolicyUser) {\r\n        Reg.exe add 'HKCU\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n    }\r\n    elseif ($Global:executionPolicyMachine) {\r\n        Reg.exe add 'HKLM\\Software\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n    }\r\n    elseif ($Global:executionPolicyWow64) {\r\n        Reg.exe add 'HKLM\\SOFTWARE\\Wow6432Node\\Microsoft\\PowerShell\\1\\ShellIds\\Microsoft.PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n    }\r\n    elseif ($Global:executionPolicyUserPol) {\r\n        Reg.exe add 'HKCU\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n    }\r\n    else {\r\n        Reg.exe add 'HKLM\\SOFTWARE\\Policies\\Microsoft\\Windows\\PowerShell' /v 'ExecutionPolicy' /t REG_SZ /d $ogExecutionPolicy /f >$null\r\n    }\r\n}\r\n\r\nif (!$nonInteractive) {\r\n    Write-Host 'Done! Press Any Key to Exit...' -ForegroundColor Green\r\n    $Host.UI.RawUI.ReadKey() *>$null\r\n}\r\n\r\nexit\r\n\r\n"
  }
]