Remove WPFShortcut Creation

Was causing virus false positives.
This commit is contained in:
Chris Titus Tech
2024-10-29 16:35:43 -05:00
parent 47a4f1547e
commit c186642998
5 changed files with 3 additions and 162 deletions

View File

@ -36,7 +36,7 @@ Disables MS Recall built into Windows since 24H2.
"InvokeScript": [
"
Write-Host \"Disable Recall\"
DISM /Online /Disable-Feature /FeatureName:Recall
DISM /Online /Disable-Feature /FeatureName:Recall
"
],
"UndoScript": [
@ -45,7 +45,7 @@ Disables MS Recall built into Windows since 24H2.
DISM /Online /Enable-Feature /FeatureName:Recall
"
],
"link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/DisableRecall"
"link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/DisableRecall"
},
```
@ -56,7 +56,7 @@ Disables MS Recall built into Windows since 24H2.
```powershell
Write-Host "Disable Recall"
DISM /Online /Disable-Feature /FeatureName:Recall
DISM /Online /Disable-Feature /FeatureName:Recall
```