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
This example uses the `Get-SPFarmConfig` cmdlet to add the Ajax Timeout setting to the PSCustomObject object, sets the value for Ajax Timeout and then passes PSCustomObject to the `Set-SPFarmConfig` cmdlet to change the Ajax Timeout setting.
50
-
Ajax Timeout, a farm-wide setting, is a member of the SPWebService object and cannot be accessed by using a Windows PowerShell cmdlet.
51
-
52
-
You can perform the same operations with either of the following commands.
53
-
45
+
This example sets the WorkflowBatdhSize to 50.
54
46
55
47
## PARAMETERS
56
48
57
49
### -AssignmentCollection
58
-
Manages objects for the purpose of proper disposal.
59
-
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.
60
-
Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory.
61
-
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.
50
+
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.
62
51
63
-
When the Global parameter is used, all objects are contained in the global store.
64
-
If objects are not immediately used, or disposed of by using the `Stop-SPAssignment` command, an out-of-memory scenario can occur.
52
+
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.
Specifies whether any DataFormWebPart on any page in this farm is allowed to periodically refresh its contents asynchronously (after the page has finished rendering).
86
+
98
87
When set to false, all DataFormWebParts will ignore the automatic refresh interval provided in Web Part properties.
0 commit comments