File tree Expand file tree Collapse file tree 1 file changed +19
-3
lines changed
sharepoint/sharepoint-ps/sharepoint-server Expand file tree Collapse file tree 1 file changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -28,13 +28,29 @@ For permissions and the most current information about Windows PowerShell for Sh
28
28
29
29
## EXAMPLES
30
30
31
- ### ------------------EXAMPLE----------------------
31
+ ### ------------------EXAMPLE 1 ----------------------
32
32
```
33
- C:\PS >Get-SPServiceApplication
33
+ PS C:\>Get-SPServiceApplication
34
34
```
35
35
36
36
This example returns all service applications in the farm.
37
37
38
+ ### ------------------EXAMPLE 2----------------------
39
+ ```
40
+ PS C:\>Get-SPServiceApplication -Identity e2c2be70-6382-4ce7-8a44-ae7dadff5597
41
+ ```
42
+
43
+ This example returns the service application that has the Identity "e2c2be70-6382-4ce7-8a44-ae7dadff5597".
44
+
45
+ ### ------------------EXAMPLE 3----------------------
46
+ ```
47
+ PS C:\>Get-SPServiceApplication -Name AccountingServiceApp
48
+ ```
49
+
50
+ This example returns the service application that has the friendly name "AccountingServiceApp".
51
+
52
+ You can use either the Identity or the Name parameter but if you use both, the command will process the Identity first and ignore the Name.
53
+
38
54
## PARAMETERS
39
55
40
56
### -Identity
@@ -76,7 +92,7 @@ Accept wildcard characters: False
76
92
` ` `
77
93
78
94
### -Name
79
- {{Fill Name Description}}
95
+ Specifies the friendly name of the new usage application.The type must be a valid name of a usage application; for example, UsageApplication1.
80
96
81
97
` ` ` yaml
82
98
Type : String
You can’t perform that action at this time.
0 commit comments