Skip to content

Commit 7a2c335

Browse files
Merge pull request #12530 from MicrosoftDocs/main
Auto Publish – main to live - 2025-11-20 23:00 UTC
2 parents 202ebf5 + 7ef4fb3 commit 7a2c335

File tree

91 files changed

+841
-8313
lines changed

Some content is hidden

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

91 files changed

+841
-8313
lines changed

.openpublishing.publish.config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
"redir/.openpublishing.redirection.dsc.json",
7979
"redir/.openpublishing.redirection.gallery.json",
8080
"redir/.openpublishing.redirection.psget.json",
81+
"redir/.openpublishing.redirection.sdk.json",
8182
"redir/.openpublishing.redirection.virtual.json",
8283
"redir/.openpublishing.redirection.wmf.json"
8384
],

redir/.openpublishing.redirection.json

Lines changed: 72 additions & 157 deletions
Large diffs are not rendered by default.

redir/.openpublishing.redirection.sdk.json

Lines changed: 444 additions & 0 deletions
Large diffs are not rendered by default.

reference/docs-conceptual/community/contributing/get-started-writing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,6 @@ see [Submitting a pull request][8].
129129
[3]: https://github.com/MicrosoftDocs/PowerShell-Docs/tree/main/reference/docs-conceptual
130130
[4]: https://github.com/PowerShell/powershell-rfc/blob/master/RFC0000-RFC-Process.md
131131
[5]: /contribute/content/how-to-write-quick-edits
132-
[6]: /contribute/how-to-write-workflows-major#making-your-changes
132+
[6]: /contribute/content/how-to-write-major-edits
133133
[7]: /contribute/get-started-setup-local#fork-the-repository
134134
[8]: pull-requests.md

reference/docs-conceptual/community/contributing/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Additional resources
9696
[8]: /contribute/get-started-setup-local
9797
[9]: /contribute/git-github-fundamentals
9898
[10]: /contribute/content/how-to-write-quick-edits
99-
[11]: /contribute/how-to-write-workflows-major
99+
[11]: /contribute/content/how-to-write-major-edits
100100
[12]: /contribute/style-quick-start
101101
[13]: /style-guide/welcome/
102102
[14]: /legal/termsofuse

reference/docs-conceptual/developer/cmdlet/approved-verbs-for-windows-powershell-commands.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,11 +252,9 @@ lifecycle, or security verb names verbs.
252252
- [System.Management.Automation.VerbsSecurity][104]
253253
- [System.Management.Automation.VerbsOther][102]
254254
- [Cmdlet Declaration][03]
255-
- [Windows PowerShell Programmer's Guide][01]
256255
- [Windows PowerShell Shell SDK][02]
257256

258257
<!-- link references -->
259-
[01]: ../prog-guide/windows-powershell-programmer-s-guide.md
260258
[02]: ../windows-powershell-reference.md
261259
[03]: ./cmdlet-class-declaration.md
262260
[04]: xref:System.Management.Automation.Host.BufferCellType

reference/docs-conceptual/developer/cmdlet/creating-a-cmdlet-to-access-a-data-store.md

Lines changed: 266 additions & 153 deletions
Large diffs are not rendered by default.

reference/docs-conceptual/developer/module/writing-a-custom-windows-powershell-snap-in.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ This example shows how to write a Windows PowerShell snap-in that registers spec
99

1010
With this type of snap-in, you specify which cmdlets, providers, types, or formats to register. For
1111
more information about how to write a snap-in that registers all the cmdlets and providers in an
12-
assembly, see [Writing a Windows PowerShell Snap-in](./writing-a-windows-powershell-snap-in.md).
12+
assembly, see [Writing a Windows PowerShell Snap-in][02].
1313

1414
## To write a Windows PowerShell Snap-in that registers specific cmdlets.
1515

1616
1. Add the RunInstallerAttribute attribute.
1717
2. Create a public class that derives from the
18-
[System.Management.Automation.CustomPSSnapIn](/dotnet/api/System.Management.Automation.CustomPSSnapIn)
18+
[System.Management.Automation.CustomPSSnapIn][03]
1919
class.
2020

2121
In this example, the class name is "CustomPSSnapinTest".
@@ -47,7 +47,7 @@ assembly, see [Writing a Windows PowerShell Snap-in](./writing-a-windows-powersh
4747
> Test-HelloWorld and Test-CustomSnapinTest cmdlets".
4848
4949
8. Specify the cmdlets that belong to the custom snap-in (optional) using the
50-
[System.Management.Automation.Runspaces.CmdletConfigurationEntry](/dotnet/api/System.Management.Automation.Runspaces.CmdletConfigurationEntry)
50+
[System.Management.Automation.Runspaces.CmdletConfigurationEntry][04]
5151
class. The information added here includes the name of the cmdlet, its .NET type, and the cmdlet
5252
Help file name (the format of the cmdlet Help file name should be `name.dll-help.xml`).
5353

@@ -212,13 +212,19 @@ public class CustomPSSnapinTest : CustomPSSnapIn
212212
}
213213
```
214214

215-
For more information about registering snap-ins, see
216-
[How to Register Cmdlets, Providers, and Host Applications](/previous-versions/ms714644(v=vs.85))
217-
in the
218-
[Windows PowerShell Programmer's Guide](../prog-guide/windows-powershell-programmer-s-guide.md).
215+
For more information about registering snap-ins, see [How to Register Cmdlets, Providers, and Host
216+
Applications][05] in the [Windows PowerShell Programmer's Guide][06].
219217

220218
## See Also
221219

222-
[How to Register Cmdlets, Providers, and Host Applications](/previous-versions/ms714644(v=vs.85))
220+
[How to Register Cmdlets, Providers, and Host Applications][05]
223221

224-
[Windows PowerShell Shell SDK](../windows-powershell-reference.md)
222+
[Windows PowerShell Shell SDK][01]
223+
224+
<!-- link references -->
225+
[01]: ../windows-powershell-reference.md
226+
[02]: ./writing-a-windows-powershell-snap-in.md
227+
[03]: /dotnet/api/System.Management.Automation.CustomPSSnapIn
228+
[04]: /dotnet/api/System.Management.Automation.Runspaces.CmdletConfigurationEntry
229+
[05]: /previous-versions/ms714644(v=vs.85)
230+
[06]: /previous-versions/powershell/scripting/developer/prog-guide/designing-your-windows-powershell-provider

reference/docs-conceptual/developer/prog-guide/accessdbprovidersample01-code-sample.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

reference/docs-conceptual/developer/prog-guide/accessdbprovidersample02-code-sample.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)