mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-04-06 06:38:31 +00:00
* updated theme to the latest version * Update en.yaml * removed all the order from the docs * add the store link * update homepage * add filename and line number to all the code blocks and also removed pages * auto pull the code from the json files * Merge branch 'main' into winutil-new-features * the script updated linenostart= * Delete LaptopHibernation.md
53 lines
1.8 KiB
Markdown
53 lines
1.8 KiB
Markdown
---
|
|
title: "New Outlook"
|
|
description: ""
|
|
---
|
|
```json {filename="config/tweaks.json",linenos=inline,linenostart=2370}
|
|
"WPFToggleNewOutlook": {
|
|
"Content": "New Outlook",
|
|
"Description": "If disabled it removes the toggle for new Outlook, disables the new Outlook migration and makes sure the Outlook Application actually uses the old Outlook.",
|
|
"category": "Customize Preferences",
|
|
"panel": "2",
|
|
"Type": "Toggle",
|
|
"registry": [
|
|
{
|
|
"Path": "HKCU:\\SOFTWARE\\Microsoft\\Office\\16.0\\Outlook\\Preferences",
|
|
"Name": "UseNewOutlook",
|
|
"Value": "1",
|
|
"OriginalValue": "0",
|
|
"DefaultState": "true",
|
|
"Type": "DWord"
|
|
},
|
|
{
|
|
"Path": "HKCU:\\Software\\Microsoft\\Office\\16.0\\Outlook\\Options\\General",
|
|
"Name": "HideNewOutlookToggle",
|
|
"Value": "0",
|
|
"OriginalValue": "1",
|
|
"DefaultState": "true",
|
|
"Type": "DWord"
|
|
},
|
|
{
|
|
"Path": "HKCU:\\Software\\Policies\\Microsoft\\Office\\16.0\\Outlook\\Options\\General",
|
|
"Name": "DoNewOutlookAutoMigration",
|
|
"Value": "0",
|
|
"OriginalValue": "0",
|
|
"DefaultState": "false",
|
|
"Type": "DWord"
|
|
},
|
|
{
|
|
"Path": "HKCU:\\Software\\Policies\\Microsoft\\Office\\16.0\\Outlook\\Preferences",
|
|
"Name": "NewOutlookMigrationUserSetting",
|
|
"Value": "0",
|
|
"OriginalValue": "<RemoveEntry>",
|
|
"DefaultState": "true",
|
|
"Type": "DWord"
|
|
}
|
|
],
|
|
```
|
|
|
|
## 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).
|