Add scripts for installing and configuring MSEdgeRedirect

This commit is contained in:
Manuel Thalmann 2023-07-29 11:47:32 +02:00
parent 8edd0ca479
commit aea3edfef7
3 changed files with 16 additions and 1 deletions
scripts/Windows/Config/MSEdgeRedirect

View file

@ -0,0 +1,12 @@
#!/bin/pwsh
$configPath = "HKLM:\SOFTWARE\Robert Maehl Software\MSEdgeRedirect";
Set-ItemProperty $configPath -Name "NoBing" -Value 1;
Set-ItemProperty $configPath -Name "NoImgs" -Value 1;
Set-ItemProperty $configPath -Name "NoNews" -Value 1;
Set-ItemProperty $configPath -Name "NoPDFs" -Value 1;
Set-ItemProperty $configPath -Name "Search" -Value "StartPage";
Set-ItemProperty $configPath -Name "Images" -Value "Custom";
Set-ItemProperty $configPath -Name "ImagePath" "https://startpage.com/sp/search?cat=images&query=";
Set-ItemProperty $configPath -Name "News" -Value "Google";
Set-ItemProperty $configPath -Name "PDFApp" -Value "C:\Program Files\Mozilla Firefox\firefox.exe";