本帖最后由 aries215 于 2024-8-28 19:39 编辑
unattend.xml 默认情况下是禁止PowerShell脚本运行的,所以只能先运行批处理!
这行命令用于Windows无人值守unattend.xml 删除多个预装Appx,限制一行、不超259字符!- Powershell -c "Get-AppxProvisionedPackage -online | where-object {$_.name -notlike "*.VCLibs*" -and $_.name -notlike "*Notepad*" -and $_.name -notlike "*Paint*"} | Remove-AppxProvisionedPackage -online"
复制代码 where-object 后面排除多个名称应该怎么用正则式简化?该用notlike、notmatch 还是 exclude 高效?
补充:不用PowerShell实现的话,这么写有没有问题呢:- cmd /q /c "Dism /Online /Get-ProvisionedAppxPackages | findstr /v /i "VCLibs Notepad Paint" | Dism /Online /Remove-ProvisionedAppxPackage"
复制代码 感谢! |