mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 06:38:31 +00:00
54 lines
1.8 KiB
Markdown
54 lines
1.8 KiB
Markdown
---
|
|
title: "New Outlook"
|
|
description: ""
|
|
---
|
|
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2401}
|
|
"WPFToggleNewOutlook": {
|
|
"Content": "New Outlook",
|
|
"Description": "If disabled, it removes the new Outlook toggle, disables the new Outlook migration, and ensures the classic Outlook application is used.",
|
|
"category": "Customize Preferences",
|
|
"panel": "2",
|
|
"Type": "Toggle",
|
|
"registry": [
|
|
{
|
|
"Path": "HKCU:\\SOFTWARE\\Microsoft\\Office\\16.0\\Outlook\\Preferences",
|
|
"Name": "UseNewOutlook",
|
|
"Value": "1",
|
|
"Type": "DWord",
|
|
"OriginalValue": "0",
|
|
"DefaultState": "true"
|
|
},
|
|
{
|
|
"Path": "HKCU:\\Software\\Microsoft\\Office\\16.0\\Outlook\\Options\\General",
|
|
"Name": "HideNewOutlookToggle",
|
|
"Value": "0",
|
|
"Type": "DWord",
|
|
"OriginalValue": "1",
|
|
"DefaultState": "true"
|
|
},
|
|
{
|
|
"Path": "HKCU:\\Software\\Policies\\Microsoft\\Office\\16.0\\Outlook\\Options\\General",
|
|
"Name": "DoNewOutlookAutoMigration",
|
|
"Value": "0",
|
|
"Type": "DWord",
|
|
"OriginalValue": "0",
|
|
"DefaultState": "false"
|
|
},
|
|
{
|
|
"Path": "HKCU:\\Software\\Policies\\Microsoft\\Office\\16.0\\Outlook\\Preferences",
|
|
"Name": "NewOutlookMigrationUserSetting",
|
|
"Value": "0",
|
|
"Type": "DWord",
|
|
"OriginalValue": "<RemoveEntry>",
|
|
"DefaultState": "true"
|
|
}
|
|
],
|
|
```
|
|
|
|
## Registry Changes
|
|
|
|
Applications and System Components store and retrieve configuration data to modify Windows settings, so we can use the registry to change many settings in one place.
|
|
|
|
You can find information about the registry on [Wikipedia](https://www.wikiwand.com/en/Windows_Registry) and [Microsoft's Website](https://learn.microsoft.com/en-us/windows/win32/sysinfo/registry).
|