Compile Winutil

This commit is contained in:
ChrisTitusTech
2024-08-07 16:57:14 +00:00
committed by github-actions[bot]
parent 9a1fbd77a7
commit ee0a2818b6
19 changed files with 388 additions and 171 deletions

View File

@ -182,7 +182,7 @@ Reduce user interruptions by selectively blocking connections to Adobe's activat
} catch {
Write-Error "Failed to flush DNS cache. Error: $_"
}
```
## Undo Script
@ -232,7 +232,7 @@ Reduce user interruptions by selectively blocking connections to Adobe's activat
} catch {
Write-Error "Failed to flush DNS cache. Error: $_"
}
```

View File

@ -176,7 +176,7 @@ USE WITH CAUTION!!!!! This will remove ALL Microsoft store apps other than the e
$proc = Start-Process -FilePath $FilePath -Args $ProcessArgs -PassThru
$proc.WaitForExit()
}
```

View File

@ -220,7 +220,7 @@ Manages Adobe Services, Adobe Desktop Service, and Acrobat Updates
CCStopper
AcrobatUpdates
```
## Undo Script
@ -262,7 +262,7 @@ Manages Adobe Services, Adobe Desktop Service, and Acrobat Updates
RestoreCCService
AcrobatUpdates
```
## Service Changes

View File

@ -123,7 +123,7 @@ Intel LMS service is always listening on all ports and could be a huge security
Write-Host "All found LMS.exe files have been deleted.";
}
Write-Host 'Intel LMS vPro service has been disabled, removed, and blocked.';
```
## Undo Script
@ -132,7 +132,7 @@ Intel LMS service is always listening on all ports and could be a huge security
Write-Host "LMS vPro needs to be redownloaded from intel.com"
```

View File

@ -70,7 +70,7 @@ Disables MS Copilot AI built into Windows since 23H2.
Write-Host "Remove Copilot"
dism /online /remove-package /package-name:Microsoft.Windows.Copilot
```
## Undo Script
@ -79,7 +79,7 @@ Disables MS Copilot AI built into Windows since 23H2.
Write-Host "Install Copilot"
dism /online /add-package /package-name:Microsoft.Windows.Copilot
```
## Registry Changes

View File

@ -45,7 +45,7 @@ Removes MS Edge when it gets reinstalled by updates. Credit: Techie Jack
```powershell
Uninstall-WinUtilEdgeBrowser
```
## Undo Script
@ -54,7 +54,7 @@ Removes MS Edge when it gets reinstalled by updates. Credit: Techie Jack
Write-Host "Install Microsoft Edge"
Start-Process -FilePath winget -ArgumentList "install --force -e --accept-source-agreements --accept-package-agreements --silent Microsoft.Edge " -NoNewWindow -Wait
```
## Function: Uninstall-WinUtilEdgeBrowser

View File

@ -50,7 +50,7 @@ Removes the Home and Gallery from explorer and sets This PC as default
REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}" /f
REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}" /f
REG ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v "LaunchTo" /t REG_DWORD /d "1"
```
## Undo Script
@ -60,7 +60,7 @@ Removes the Home and Gallery from explorer and sets This PC as default
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}" /f /ve /t REG_SZ /d "{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}"
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}" /f /ve /t REG_SZ /d "CLSID_MSGraphHomeFolder"
REG DELETE "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /f /v "LaunchTo"
```

View File

@ -197,7 +197,7 @@ Moves OneDrive files to Default Home Folders and Uninstalls it.
} else {
Write-Host "Something went Wrong during the Unistallation of OneDrive" -ForegroundColor Red
}
```
## Undo Script
@ -206,7 +206,7 @@ Moves OneDrive files to Default Home Folders and Uninstalls it.
Write-Host "Install OneDrive"
Start-Process -FilePath winget -ArgumentList "install -e --accept-source-agreements --accept-package-agreements --silent Microsoft.OneDrive " -NoNewWindow -Wait
```

View File

@ -1,4 +1,4 @@
# Set Classic Right-Click Menu
# Set Classic Right-Click Menu
Last Updated: 2024-08-07
@ -54,7 +54,7 @@ Great Windows 11 tweak to bring back good context menus when right clicking thin
Write-Host Restarting explorer.exe ...
$process = Get-Process -Name "explorer"
Stop-Process -InputObject $process
```
## Undo Script
@ -66,7 +66,7 @@ Great Windows 11 tweak to bring back good context menus when right clicking thin
Write-Host Restarting explorer.exe ...
$process = Get-Process -Name "explorer"
Stop-Process -InputObject $process
```