Skip to content

merging recent changes into live #1288

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 55 commits into from
Jun 12, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
db33306
Fixed typo on Get-DscConfigurationStatus
rkyttle Jun 3, 2017
b8c8148
Update 5.1 -> Start-Process.md
wendelb Jun 4, 2017
348eb1d
Update 5.0 -> Start-Process.md
wendelb Jun 4, 2017
97ed9dd
Update 4.0 -> Start-Process.md
wendelb Jun 4, 2017
3aac719
Update 3.0 -> Start-Process.md
wendelb Jun 4, 2017
e424626
Update 6 -> Start-Process.md
wendelb Jun 4, 2017
19787c9
Fix Convert-String example.
matt9ucci Jun 3, 2017
59e23d7
Resynching ToCs
jpjsm Jun 5, 2017
8f14c85
Updating Global metadata
jpjsm Jun 5, 2017
f370608
Metadata updated
jpjsm Jun 6, 2017
e516568
updated docs for `-FollowRelLink` and `-MaximumFollowRelLink` switches
SteveL-MSFT May 24, 2017
a75d323
Improve about_Functions_CmdletBindingAttribute.md
flcdrg May 30, 2017
bec8432
Merge branch 'staging' into jpjofre-metadatatagging
jpjsm Jun 6, 2017
72cabb6
Merge pull request #1252 from PowerShell/jpjofre-metadatatagging
Jun 6, 2017
3a5228b
Merge pull request #1247 from rkyttle/patch-1
Jun 6, 2017
0308110
Update about_History.md
doctordns Jun 6, 2017
63c7963
Merge branch 'live' into staging
juanpablojofre Jun 6, 2017
7ce3fef
Update about_Requires.md
pauby May 23, 2017
dc5f0e2
Typo in description of .LINK
markwragg May 18, 2017
f0f361b
Update about_pipelines.md
fullenw1 Apr 21, 2017
9e8c7f4
Update dscCiCd.md
Jun 6, 2017
aa04b77
Update TOC.md
Jun 6, 2017
eee29a3
fixed typos and incomplete sentence
Jun 6, 2017
afce0a0
Update Get-EventLog.md
ygbae May 27, 2017
f001ffe
Fix typo in TOC.md
jozefizso Jun 7, 2017
e3983ae
add Get PowerShellGet Module page for Gallery to link to
TylerLeonhardt Jun 5, 2017
926b771
added correct gitub accounts
TylerLeonhardt Jun 5, 2017
a90d762
removed double author
TylerLeonhardt Jun 5, 2017
f4c43a1
addressed feedback
TylerLeonhardt Jun 5, 2017
d1a9627
addressed feedback and renamed file
TylerLeonhardt Jun 6, 2017
9a66412
updated file name
TylerLeonhardt Jun 6, 2017
c852912
mention PowerShell 6
TylerLeonhardt Jun 6, 2017
e9aab53
addressed OneGet feedback
TylerLeonhardt Jun 7, 2017
1703892
Create secureServer.md
amrowicki Jun 9, 2017
5240428
Fix typo in dsc_importdscresource.md
jozefizso Jun 9, 2017
153c277
Update about_Operators all versions
markekraus Jun 8, 2017
9ca960b
Metadata update for reference content
jpjsm Jun 9, 2017
0119853
Global reference updated
jpjsm Jun 9, 2017
e07270d
adding locale
jpjsm Jun 9, 2017
a1429a3
resetting schema
jpjsm Jun 9, 2017
b2a8fef
fixing typo in schema
jpjsm Jun 9, 2017
127230a
re-introducing locale
jpjsm Jun 9, 2017
717336c
Merge pull request #1274 from PowerShell/jpjofre-metadatatagging
Jun 9, 2017
b4927df
Merge branch 'live' into staging
juanpablojofre Jun 9, 2017
eb9512c
Correcting "C:\ PS>" to "PS C:\>" & added examples
kiazhi Jun 12, 2017
d64038c
add get powershellget module to toc
TylerLeonhardt Jun 12, 2017
0af7f1c
metadata updated for gallery, wmf
jpjsm Jun 12, 2017
62ae5e6
metadata update
jpjsm Jun 12, 2017
1a31727
Merge pull request #1273 from jozefizso/patch-2
Jun 12, 2017
31c6006
Merge pull request #1272 from amrowicki/patch-1
Jun 12, 2017
a1cd06e
Merge pull request #1286 from PowerShell/add-get-powershellget-module…
Jun 12, 2017
85c9b77
Merge pull request #1287 from PowerShell/jpjofre-metadatatagging
Jun 12, 2017
884993a
Merge branch 'live' into staging
Jun 12, 2017
704abc0
Default for stop-process is not to prompt. Fixed doc.
SteveL-MSFT Jun 10, 2017
cc49efb
Add -PreserveAuthorizationHeader on redirect to Invoke-WebRequest and…
dantraMSFT Jun 8, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions STYLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,21 @@ Header 2
## Syntax

* When talking about a cmdlet in paragraph, use \` to highlight cmdlet names
* When writing an article (as opposed to reference content), the first instance of a cmdlet name should be a link to the cmdlet documentation
* Correct Example:
This `Write-Host` Cmdlet can ...
* Incorrect Example:
 This **Write-Host** Cmdlet can ... and pipeline to out-file Cmdlet to ...
* When writing an article (as opposed to reference content), the first instance of a cmdlet name should be a link to the cmdlet documentation
* All PowerShell syntax blocks should use ```powershell
* Do not start PowerShell commands with "C:\ PS>"
* Do not start PowerShell commands with "`PS C:\>`"
* Correct Example:
```powershell
Get-Process
```
* Incorrect Example:
```powershell
PS C:\> Get-Process
```
* Output emitted by PowerShell commands should be commented to prevent it from recieving syntax highlighting
* Property names and parameter names should be in **bold**
* PowerShell cmdlets are "[Pascal Cased](https://en.wikipedia.org/wiki/PascalCase)". Verbs are seperated from nouns by a hyphen.
Expand Down
12 changes: 4 additions & 8 deletions dsc/DSCAutomationHostEnabled.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@

---
title: DSCAutomationHostEnabled registry key
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: DSCAutomationHostEnabled registry key
---

>Applies to: Windows PowerShell 5.0
Expand Down
12 changes: 5 additions & 7 deletions dsc/DscForEngineers.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Desired State Configuration Overview for Decision Makers
ms.date: 2017-03-13
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: carmonm
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Desired State Configuration Overview for Decision Makers
---

# Desired State Configuration Overview for Engineers #
Expand Down Expand Up @@ -141,3 +138,4 @@ To deploy to the different environments, you can invoke `Start-DscConfiguration`
[Configuration Data](configData.md)

[Resources](resources.md)

16 changes: 7 additions & 9 deletions dsc/PackageManagementDscResource.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: DSC PackageManagement Resource
ms.date:
keywords: powershell,DSC
description:
ms.topic: article
author: brywang-msft
manager: kriscv
ms.prod: powershell
ms.date: 2017-06-12
author: eslesar
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: DSC PackageManagement Resource
---

# DSC PackageManagement Resource
Expand Down Expand Up @@ -94,4 +91,5 @@ Configuration PackageTest
DependsOn = "[PackageManagementSource]PSGallery"
}
}
```
```

14 changes: 6 additions & 8 deletions dsc/PackageManagementSourceDscResource.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: DSC PackageManagementSource Resource
ms.date:
keywords: powershell,DSC
description:
ms.topic: article
author: brywang-msft
manager: kriscv
ms.prod: powershell
ms.date: 2017-06-12
author: eslesar
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: DSC PackageManagementSource Resource
---

# DSC PackageManagementSource Resource
Expand Down Expand Up @@ -56,3 +53,4 @@ Configuration PackageManagementSourceTest
}
}
```

11 changes: 4 additions & 7 deletions dsc/archiveResource.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: DSC Archive Resource
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: DSC Archive Resource
---

# DSC Archive Resource
Expand Down
11 changes: 4 additions & 7 deletions dsc/authoringResource.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Build Custom Windows PowerShell Desired State Configuration Resources
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Build Custom Windows PowerShell Desired State Configuration Resources
---

# Build Custom Windows PowerShell Desired State Configuration Resources
Expand Down
11 changes: 4 additions & 7 deletions dsc/authoringResourceClass.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Writing a custom DSC resource with PowerShell classes
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Writing a custom DSC resource with PowerShell classes
---

# Writing a custom DSC resource with PowerShell classes
Expand Down
11 changes: 4 additions & 7 deletions dsc/authoringResourceComposite.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Composite resources--Using a DSC configuration as a resource
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Composite resources--Using a DSC configuration as a resource
---

# Composite resources: Using a DSC configuration as a resource
Expand Down
11 changes: 4 additions & 7 deletions dsc/authoringResourceMOF.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Writing a custom DSC resource with MOF
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Writing a custom DSC resource with MOF
---

# Writing a custom DSC resource with MOF
Expand Down
11 changes: 4 additions & 7 deletions dsc/authoringResourceMofCS.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Authoring a DSC resource in C`
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Authoring a DSC resource in C`
---

# Authoring a DSC resource in C`#`
Expand Down
11 changes: 4 additions & 7 deletions dsc/authoringResourceMofDesigner.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Using the Resource Designer tool
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Using the Resource Designer tool
---

# Using the Resource Designer tool
Expand Down
11 changes: 4 additions & 7 deletions dsc/azureDsc.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Using DSC on Microsoft Azure
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: carolz
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Using DSC on Microsoft Azure
---

# Using DSC on Microsoft Azure
Expand Down
12 changes: 5 additions & 7 deletions dsc/bootstrapDsc.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Configure a virtual machines at initial boot-up by using DSC
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Configure a virtual machines at initial boot-up by using DSC
---

>Applies To: Windows PowerShell 5.0
Expand Down Expand Up @@ -209,3 +206,4 @@ so set the value of this key to 0:
- [DSCAutomationHostEnabled registry key](DSCAutomationHostEnabled.md)
- [Configuring the Local Configuration Manager (LCM)](metaConfig.md)
- [Setting up a DSC web pull server](pullServer.md)

11 changes: 4 additions & 7 deletions dsc/builtInResource.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Built-In Windows PowerShell Desired State Configuration Resources
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Built-In Windows PowerShell Desired State Configuration Resources
---

# Built-In Windows PowerShell Desired State Configuration Resources
Expand Down
12 changes: 5 additions & 7 deletions dsc/compositeConfigs.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Nesting configurations
ms.date: 2017-03-27
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: carmonm
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Nesting configurations
---

# Nesting DSC configurations
Expand Down Expand Up @@ -59,3 +56,4 @@ The properties in the `NestedConfig` resource block (**CopyFrom** and **CopyTo**
## See Also

- [Composite resources--Using a DSC configuration as a resource](authoringResourceComposite.md)

12 changes: 5 additions & 7 deletions dsc/configData.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Using configuration data
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: carmonm
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Using configuration data
---

# Using configuration data in DSC
Expand Down Expand Up @@ -207,3 +204,4 @@ For an example of using non-node data, see [Separating configuration and environ
## See Also
- [Credentials Options in Configuration Data](configDataCredentials.md)
- [DSC Configurations](configurations.md)

11 changes: 4 additions & 7 deletions dsc/configDataCredentials.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Credentials Options in Configuration Data
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Credentials Options in Configuration Data
---

# Credentials Options in Configuration Data
Expand Down
11 changes: 4 additions & 7 deletions dsc/configHelp.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Writing help for DSC configurations
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Writing help for DSC configurations
---

# Writing help for DSC configurations
Expand Down
11 changes: 4 additions & 7 deletions dsc/configurations.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: DSC Configurations
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: carmonm
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: DSC Configurations
---

# DSC Configurations
Expand Down
11 changes: 4 additions & 7 deletions dsc/crossNodeDependencies.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
---
title: Specifying cross-node dependencies
ms.date: 2016-05-16
keywords: powershell,DSC
description:
ms.topic: article
ms.date: 2017-06-12
author: eslesar
manager: dongill
ms.prod: powershell
ms.topic: conceptual
keywords: dsc,powershell,configuration,setup
title: Specifying cross-node dependencies
---

# Specifying cross-node dependencies
Expand Down
Loading