mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-29 01:03:36 +00:00
Merge pull request #8172 from MicrosoftDocs/main
Publish to live, Wednesday 10:30AM PST, 4/19
This commit is contained in:
@ -56,7 +56,7 @@ To add a new item under the browser's **Favorites** list:
|
|||||||
|
|
||||||
2. In the **Available customizations** pane, select the friendly name that you created, and in the text field, enter the URL for the item.
|
2. In the **Available customizations** pane, select the friendly name that you created, and in the text field, enter the URL for the item.
|
||||||
|
|
||||||
For example, to include the corporate Web site to the list of browser favorites, a company called Contoso can specify **Contoso** as the value for the name and "<http://www.contoso.com>" for the URL.
|
For example, to include the corporate Web site to the list of browser favorites, a company called Contoso can specify **Contoso** as the value for the name and `http://www.contoso.com` for the URL.
|
||||||
|
|
||||||
|
|
||||||
## PartnerSearchCode
|
## PartnerSearchCode
|
||||||
|
@ -40,7 +40,7 @@ Using the Diagnostic Data Viewer for PowerShell requires administrative (elevate
|
|||||||
### Install the Diagnostic Data Viewer for PowerShell
|
### Install the Diagnostic Data Viewer for PowerShell
|
||||||
|
|
||||||
>[!IMPORTANT]
|
>[!IMPORTANT]
|
||||||
>It is recommended to visit the documentation on [Getting Started](/powershell/gallery/gallery/getting-started) with PowerShell Gallery. This page provides more specific details on installing a PowerShell module.
|
>It is recommended to visit the documentation on [Getting Started](/powershell/gallery/getting-started) with PowerShell Gallery. This page provides more specific details on installing a PowerShell module.
|
||||||
|
|
||||||
To install the newest version of the Diagnostic Data Viewer PowerShell module, run the following command within an elevated PowerShell session:
|
To install the newest version of the Diagnostic Data Viewer PowerShell module, run the following command within an elevated PowerShell session:
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -159,6 +159,16 @@ reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorE
|
|||||||
reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v "Locked" /t REG_DWORD /d 1 /f
|
reg add "HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity" /v "Locked" /t REG_DWORD /d 1 /f
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**To gray out the memory integrity UI and display the message "This setting is managed by your administrator"**
|
||||||
|
```console
|
||||||
|
reg delete HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity /v "WasEnabledBy" /f
|
||||||
|
```
|
||||||
|
|
||||||
|
**To let memory integrity UI behave normally (Not grayed out)**
|
||||||
|
```console
|
||||||
|
reg add HKLM\SYSTEM\CurrentControlSet\Control\DeviceGuard\Scenarios\HypervisorEnforcedCodeIntegrity /v "WasEnabledBy" /t REG_DWORD /d 2 /f
|
||||||
|
```
|
||||||
|
|
||||||
#### For Windows 10 version 1511 and earlier
|
#### For Windows 10 version 1511 and earlier
|
||||||
|
|
||||||
Recommended settings (to enable memory integrity, without UEFI Lock):
|
Recommended settings (to enable memory integrity, without UEFI Lock):
|
||||||
|
Reference in New Issue
Block a user