agadiffe
agadiffe
> It seems like Windows will actually install OneDrive after the user logs in It does. You could disable this behavior instead of creating a scheduled task. The registry entry...
related (closed) issue: #367 @Raphire there is a copy/paste error in [Disable_Game_Bar_Integration.reg](https://github.com/Raphire/Win11Debloat/blob/master/Regfiles/Disable_Game_Bar_Integration.reg) ``` [HKEY_CLASSES_ROOT\ms-gamebarservices] @="URL:ms-gamebar" ``` should be ``` @="URL:ms-gamebarservices" ``` @ejenk0 If you can't wait the fix (should be...
Instead of using Microsoft Edge policy, you could just create these two empty files: `First Run` and `FirstLaunchAfterInstallation` in `C:\Users\\AppData\Local\Microsoft\Edge\User Data\`. It will achieve the same desired effect of not...
> Without using any extension? Yes. You can use the following code: ```powershell $EdgeUserDataPath = "$env:LOCALAPPDATA\Microsoft\Edge\User Data" $FreFilesNames = @( 'First Run', 'FirstLaunchAfterInstallation' ) New-Item -Path $FreFilesNames.ForEach({ "$EdgeUserDataPath\$_" }) -ItemType...
Sorry, I should have test more carefully before posting a solution. Indeed, those two files are not enought. You also need to set some settings in the `Local State` and...
@cschneegans > It seems like a idiotic design choice on Microsoft's part to link the First Run Experience with the Secure DNS setting… Actually, it is not tied to the...
> Enabling DnsOverHttpsMode & DnsOverHttpsTemplates is NOT working anymore. They do works on my testings for Edge v135 on Win11 24h2. I think, the simpler is to keep using the...
Yes, it will work with the `MicrosoftEdgeEnterpriseX64.msi` installer. This is (apparently) the only offline installer available. This is also the one used by winget. https://github.com/microsoft/winget-pkgs/blob/master/manifests/m/Microsoft/Edge/136.0.3240.50/Microsoft.Edge.installer.yaml I think you should use...