Spacing, indentation, valid code block types

The complete list of valid types for code blocks is here: https://docsmetadatatool.azurewebsites.net/allowlists/#
This commit is contained in:
Gary Moore 2020-08-25 14:37:29 -07:00 committed by GitHub
parent 1860fb7077
commit f05e7f6e49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,8 @@ If you don't know the Store app publisher or product name, you can find them by
If you need to add Windows 10 mobile apps that aren't distributed through the Store for Business, you must use the **Windows Device Portal** feature. If you need to add Windows 10 mobile apps that aren't distributed through the Store for Business, you must use the **Windows Device Portal** feature.
>**Note**<br>Your PC and phone must be on the same wireless network. > [!NOTE]
> Your PC and phone must be on the same wireless network.
1. On the Windows Phone, go to **Settings**, choose **Update & security**, and then choose **For developers**. 1. On the Windows Phone, go to **Settings**, choose **Update & security**, and then choose **For developers**.
@ -194,19 +195,19 @@ To add another Desktop app, click the ellipsis **…**. After youve entered t
If youre unsure about what to include for the publisher, you can run this PowerShell command: If youre unsure about what to include for the publisher, you can run this PowerShell command:
```ps1 ```powershell
Get-AppLockerFileInformation -Path "<path_of_the_exe>" Get-AppLockerFileInformation -Path "<path_of_the_exe>"
``` ```
Where `"<path_of_the_exe>"` goes to the location of the app on the device. For example: Where `"<path_of_the_exe>"` goes to the location of the app on the device. For example:
```ps1 ```powershell
Get-AppLockerFileInformation -Path "C:\Program Files\Windows NT\Accessories\wordpad.exe" Get-AppLockerFileInformation -Path "C:\Program Files\Windows NT\Accessories\wordpad.exe"
``` ```
In this example, you'd get the following info: In this example, you'd get the following info:
``` ```console
Path Publisher Path Publisher
---- --------- ---- ---------
%PROGRAMFILES%\WINDOWS NT\ACCESSORIES\WORDPAD.EXE O=MICROSOFT CORPORATION, L=REDMOND, S=WASHINGTON, C=US %PROGRAMFILES%\WINDOWS NT\ACCESSORIES\WORDPAD.EXE O=MICROSOFT CORPORATION, L=REDMOND, S=WASHINGTON, C=US
@ -335,6 +336,7 @@ The executable rule helps to create an AppLocker rule to sign any unsigned apps.
12. After youve created your XML file, you need to import it by using Microsoft Intune. 12. After youve created your XML file, you need to import it by using Microsoft Intune.
**To import a list of protected apps using Microsoft Intune** **To import a list of protected apps using Microsoft Intune**
1. In **Protected apps**, click **Import apps**. 1. In **Protected apps**, click **Import apps**.
@ -428,7 +430,7 @@ Separate multiple resources with the "|" delimiter.
If you dont use proxy servers, you must also include the "," delimiter just before the "|". If you dont use proxy servers, you must also include the "," delimiter just before the "|".
For example: For example:
```code ```console
URL <,proxy>|URL <,proxy> URL <,proxy>|URL <,proxy>
``` ```
@ -441,7 +443,7 @@ In this case, Windows blocks the connection by default.
To stop Windows from automatically blocking these connections, you can add the `/*AppCompat*/` string to the setting. To stop Windows from automatically blocking these connections, you can add the `/*AppCompat*/` string to the setting.
For example: For example:
```code ```console
URL <,proxy>|URL <,proxy>/*AppCompat*/ URL <,proxy>|URL <,proxy>/*AppCompat*/
``` ```
@ -449,13 +451,13 @@ When you use this string, we recommend that you also turn on [Azure Active Direc
Value format with proxy: Value format with proxy:
```code ```console
contoso.sharepoint.com,contoso.internalproxy1.com|contoso.visualstudio.com,contoso.internalproxy2.com contoso.sharepoint.com,contoso.internalproxy1.com|contoso.visualstudio.com,contoso.internalproxy2.com
``` ```
Value format without proxy: Value format without proxy:
```code ```console
contoso.sharepoint.com,|contoso.visualstudio.com,|contoso.onedrive.com contoso.sharepoint.com,|contoso.visualstudio.com,|contoso.onedrive.com
``` ```
@ -465,7 +467,7 @@ Specify the domains used for identities in your environment.
All traffic to the fully-qualified domains appearing in this list will be protected. All traffic to the fully-qualified domains appearing in this list will be protected.
Separate multiple domains with the "|" delimiter. Separate multiple domains with the "|" delimiter.
```code ```console
exchange.contoso.com|contoso.com|region.contoso.com exchange.contoso.com|contoso.com|region.contoso.com
``` ```
@ -475,7 +477,7 @@ Specify the DNS suffixes used in your environment.
All traffic to the fully-qualified domains appearing in this list will be protected. All traffic to the fully-qualified domains appearing in this list will be protected.
Separate multiple resources with the "," delimiter. Separate multiple resources with the "," delimiter.
```code ```console
corp.contoso.com,region.contoso.com corp.contoso.com,region.contoso.com
``` ```
@ -488,7 +490,7 @@ This list shouldnt include any servers listed in your Internal proxy servers
Internal proxy servers must be used only for WIP-protected (enterprise) traffic. Internal proxy servers must be used only for WIP-protected (enterprise) traffic.
Separate multiple resources with the ";" delimiter. Separate multiple resources with the ";" delimiter.
```code ```console
proxy.contoso.com:80;proxy2.contoso.com:443 proxy.contoso.com:80;proxy2.contoso.com:443
``` ```
@ -500,7 +502,7 @@ This list shouldnt include any servers listed in your Proxy servers list.
Proxy servers must be used only for non-WIP-protected (non-enterprise) traffic. Proxy servers must be used only for non-WIP-protected (non-enterprise) traffic.
Separate multiple resources with the ";" delimiter. Separate multiple resources with the ";" delimiter.
```code ```console
contoso.internalproxy1.com;contoso.internalproxy2.com contoso.internalproxy1.com;contoso.internalproxy2.com
``` ```
@ -539,7 +541,7 @@ Specify your authentication redirection endpoints for your company.
These locations are considered enterprise or personal, based on the context of the connection before the redirection. These locations are considered enterprise or personal, based on the context of the connection before the redirection.
Separate multiple resources with the "," delimiter. Separate multiple resources with the "," delimiter.
```code ```console
sts.contoso.com,sts.contoso2.com sts.contoso.com,sts.contoso2.com
``` ```