Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kashiash/06d08143dfdd526bc63cdc62bed0d14d to your computer and use it in GitHub Desktop.

Select an option

Save kashiash/06d08143dfdd526bc63cdc62bed0d14d to your computer and use it in GitHub Desktop.
### 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