你好,朋友,可以参阅下面链接中的方法,即使用下列相关命令进行操作,也可以使用DSIM工具进行配置
Get-AppXProvisionedPackage
The Remove-AppxProvisionedPackage cmdlet removes app packages (.appx) from a Windows image. App packages will not be installed
when new user accounts are created. Packages will not be removed from existing user accounts. To remove app packages (.appx) that are not provisioned or to remove a package for a particular user only, use Remove-AppxPackage instead.
https://docs.microsoft.com/en-us/powershell/module/dism/remove-appxprovisionedpackage?view=win10-ps
即在powershell中执行下面格式的命令可以从镜像中删除预装的程序,并在创建新账户时不自动安装,但是部分核心内置程序不能删除
C:\> Remove-AppxProvisionedPackage -Path c:\offline -PackageName MyAppxPkg