You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Stop-SPService cmdlet disables a service in the farm. Service instances for this service will be stopped on the appropriate servers in the farm.
22
+
23
+
**Note**: This cmdlet only controls service instances on servers that are managed by MinRole. The behavior for the Custom server role has changed with the November 2016 Public Update (PU). Please see the **IncludeCustomServerRole** parameter for additional information.
22
24
23
25
## EXAMPLES
24
26
25
27
### ---------------EXAMPLE--------------
26
28
```
27
-
PS C:\> {{ Add example code here }}
29
+
Stop-SPService -Identity "Microsoft SharePoint Foundation Sandboxed Code Service"
28
30
```
29
31
30
-
{{ Add example description here }}
32
+
This example disables the Microsoft SharePoint Foundation Sandboxed Code Service in the farm.
31
33
32
34
33
35
## PARAMETERS
34
36
35
37
### -AssignmentCollection
36
-
{{Fill AssignmentCollection Description}}
38
+
Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
39
+
40
+
**Note**: When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.
Creates a timer job that also stops service instances on servers that are assigned to the custom server role.
89
+
**Note**: This is a one-time Timer job. MinRole will make no further attempts to manage the service instances on servers assigned to the Custom server role.
0 commit comments