Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
27 changes: 19 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
log/
obj/
_site/
.optemp/
_themes*/
_repo.*/

_themes/
.DS_Store
.openpublishing.build.mdproj
.openpublishing.buildcore.ps1
.vscode/styles/*
!.vscode/styles/Vocab
.optemp/
.vale/
.vscode/launch.json
.vscode/styles/
*.orig
**/.ignore/**
**/settings.json
dependentPackages/
log/
maml/
obj/
packages.config
packages/
StaleContentReport.*.csv
Tools/NuGet/
updatablehelp/
xhtml/
7 changes: 5 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
"Acrolinx.vscode-sidebar",
"docsmsft.docs-authoring-pack",
"marvhen.reflow-markdown",
"chrischinchilla.vale-vscode",
"ms-vscode.powershell",
"nhoizey.gremlins",
"shuworks.vscode-table-formatter",
"bierner.markdown-yaml-preamble",
"streetsidesoftware.code-spell-checker",
"wmaurer.change-case",
"yzane.markdown-pdf"
"usernamehw.errorlens",
"wmaurer.change-case"
]
}
2 changes: 1 addition & 1 deletion dsc/docs-conceptual/dsc-1.1/pull-server/pullServer.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ a `Configuration` that sets up the web service.

# Then include this thumbprint when running the configuration
$sample_xDscWebServiceRegistrationSplat = @{
certificateThumbprint = 'A7000024B753FA6FFF88E966FD6E19301FAE9CCC'
certificateThumbprint = 'AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00'
RegistrationKey = '140a952b-b9d6-406b-b416-e0f759c9c0e4'
OutputPath = 'C:\Configs\PullServer'
}
Expand Down
2 changes: 1 addition & 1 deletion dsc/docs-conceptual/dsc-1.1/pull-server/secureMOF.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ $ConfigData = @{

# The thumbprint of the Encryption Certificate
# used to decrypt the credentials on target node
Thumbprint = "AC23EA3A9E291A75757A556D0B71CBBF8C4F6FD8"
Thumbprint = "AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00"
}
)
}
Expand Down
2 changes: 1 addition & 1 deletion dsc/docs-conceptual/dsc-1.1/pull-server/secureServer.md
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ $configData = @{
Credential = $Credential
RebootNodeifNeeded = $true
CertificateFile = 'c:\PullServerConfig\Cert.cer'
Thumbprint = 'B9A39921918B466EB1ADF2509E00F5DECB2EFDA9'
Thumbprint = 'AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00'
}
)
}
Expand Down
Loading