Skip to content

Commit 22e8120

Browse files
authored
Merge branch 'main' into patch-142
2 parents 2c0883a + 77cfe18 commit 22e8120

File tree

123 files changed

+2345
-981
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+2345
-981
lines changed

SECURITY.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!-- BEGIN MICROSOFT SECURITY.MD V0.0.8 BLOCK -->
2+
3+
## Security
4+
5+
Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).
6+
7+
If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/opensource/security/definition), please report it to us as described below.
8+
9+
## Reporting Security Issues
10+
11+
**Please do not report security vulnerabilities through public GitHub issues.**
12+
13+
Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/opensource/security/create-report).
14+
15+
If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/opensource/security/pgpkey).
16+
17+
You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://aka.ms/opensource/security/msrc).
18+
19+
Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:
20+
21+
* Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
22+
* Full paths of source file(s) related to the manifestation of the issue
23+
* The location of the affected source code (tag/branch/commit or direct URL)
24+
* Any special configuration required to reproduce the issue
25+
* Step-by-step instructions to reproduce the issue
26+
* Proof-of-concept or exploit code (if possible)
27+
* Impact of the issue, including how an attacker might exploit the issue
28+
29+
This information will help us triage your report more quickly.
30+
31+
If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/opensource/security/bounty) page for more details about our active programs.
32+
33+
## Preferred Languages
34+
35+
We prefer all communications to be in English.
36+
37+
## Policy
38+
39+
Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/opensource/security/cvd).
40+
41+
<!-- END MICROSOFT SECURITY.MD BLOCK -->

docset/winserver2012-ps/dfsn/Get-DfsnFolder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Required: True
8989
Position: 0
9090
Default value: None
9191
Accept pipeline input: True (ByPropertyName)
92-
Accept wildcard characters: False
92+
Accept wildcard characters: True
9393
```
9494
9595
### -ThrottleLimit

docset/winserver2012-ps/wdac/Add-OdbcDsn.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ PS C:\> $newDsn = Add-OdbcDsn MyPayroll -DriverName "SQL Server Native Client 10
5151
This command is equivalent to example 2, but it saves the newly-created System DSN object into a PowerShell variable for future use.
5252
By default, this command does not return the driver object if the "PassThru" parameter is not specified:
5353

54-
### 4:
54+
### Example 4: Migrates DSNs to a newer version of a driver
5555
```
56-
C:\PS> $dsnArr = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0'
57-
C:\PS> foreach ($dsn in $dsnArr) {
56+
C:\PS> $DsnArray = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0'
57+
C:\PS> foreach ($dsn in $DsnArray) {
5858
Remove-OdbcDsn $dsn
5959
# You can change the property array as well,
6060
# if DSN attributes have been changed in the new driver version

docset/winserver2012r2-ps/dfsn/Get-DfsnFolder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Required: True
9191
Position: 0
9292
Default value: None
9393
Accept pipeline input: True (ByPropertyName)
94-
Accept wildcard characters: False
94+
Accept wildcard characters: True
9595
```
9696
9797
### -ThrottleLimit

docset/winserver2012r2-ps/storage/New-StorageTier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The **New-StorageTier** cmdlet creates a storage tier in a storage pool.
4545

4646
### Example 1: Create a storage tier
4747
```
48-
PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Standard_HDD_Tier" -MediaType HDD
48+
PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Tier11" -MediaType HDD
4949
```
5050

5151
This command creates a storage tier for hard disk drives named Tier11 in the storage pool named TierPool01.

docset/winserver2012r2-ps/wdac/Add-OdbcDsn.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Without **PassThru**, the cmdlet does not return anything.
5656

5757
### Example 4: Migrates DSNs to a newer version of a driver
5858
```
59-
PS C:\> $dsnArr = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0'
60-
PS C:\> foreach ($dsn in $dsnArr) {
59+
PS C:\> $DsnArray = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0'
60+
PS C:\> foreach ($dsn in $DsnArray) {
6161
Remove-OdbcDsn -InputObject $dsn
6262
# You can change the property array as well,
6363
# if DSN attributes have been changed in the new driver version

docset/winserver2016-ps/dfsn/Get-DfsnFolder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Required: True
9999
Position: 0
100100
Default value: None
101101
Accept pipeline input: True (ByPropertyName)
102-
Accept wildcard characters: False
102+
Accept wildcard characters: True
103103
```
104104
105105
### -ThrottleLimit

docset/winserver2016-ps/storage/New-StorageTier.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The **New-StorageTier** cmdlet creates a storage tier in a storage pool.
5858

5959
### Example 1: Create a storage tier
6060
```
61-
PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Standard_HDD_Tier" -MediaType HDD
61+
PS C:\> New-StorageTier -StoragePoolFriendlyName "TierPool01" -FriendlyName "Tier11" -MediaType HDD
6262
```
6363

6464
This command creates a storage tier for hard disk drives named Tier11 in the storage pool named TierPool01.

docset/winserver2016-ps/wdac/Add-OdbcDsn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Without *PassThru*, the cmdlet does not return anything.
5858
### Example 4: Migrates DSNs to a newer version of a driver
5959
```
6060
PS C:\> $DsnArray = Get-OdbcDsn -DriverName 'SQL Server Native Client 10.0'
61-
PS C:\> ForEach ($Dsn in $ DsnArr) {
61+
PS C:\> ForEach ($Dsn in $DsnArray) {
6262
Remove-OdbcDsn -InputObject $Dsn
6363
# You can change the property array as well,
6464
# if DSN attributes have been changed in the new driver version

docset/winserver2019-ps/dfsn/Get-DfsnFolder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Required: True
9999
Position: 0
100100
Default value: None
101101
Accept pipeline input: True (ByPropertyName)
102-
Accept wildcard characters: False
102+
Accept wildcard characters: True
103103
```
104104
105105
### -ThrottleLimit

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy