Skip to content

Commit 24bd201

Browse files
committed
Update and rename powershell.md to Powershell.md
Add useful links on MSDN
1 parent 7a6be4f commit 24bd201

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
# Powershell name convention
22

33

4+
## Powershell object name
45
| Object | Verb-Noun | Notation | Length | Plural| Prefix | Suffix | Example |
56
|-----------|-----------|-----------------------|--------|-------|--------|--------|---------------------|
67
| Cmdlet | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Import-PREFIXModule |
78
| Function | Yes | PascalCase (for Noun) | 50 | No | Yes | No | Get-PREFIXDbRecord |
89
| Parameter | No | PascalCase | 30 | No | No | No | MyParameter |
10+
11+
12+
## Useful Links
13+
- [MSDN Development Guidelines]
14+
- [MSDN Approved Verbs]
15+
16+
[MSDN Development Guidelines]:https://msdn.microsoft.com/en-us/library/dd878270%28v=vs.85%29.aspx
17+
[MSDN Approved Verbs]:https://msdn.microsoft.com/en-us/library/ms714428%28v=vs.85%29.aspx

0 commit comments

Comments
 (0)