Created
November 10, 2025 13:36
-
-
Save kashiash/06d08143dfdd526bc63cdc62bed0d14d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Wyłączenie MSN w Edge z PowerShell (CLI) | |
| Użyj klucza polityk w rejestrze: | |
| ```powershell | |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v NewTabPageContentEnabled /t REG_DWORD /d 0 /f | |
| ```` | |
| Wyłączenie domyślnych top sites: | |
| ```powershell | |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v NewTabPageHideDefaultTopSites /t REG_DWORD /d 1 /f | |
| ``` | |
| Ustawienie własnej strony nowej karty: | |
| ```powershell | |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Edge" /v NewTabPageLocation /t REG_SZ /d "https://twoja_strona" /f | |
| ``` | |
| Po zmianach uruchom ponownie Edge. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment