Skip to content

Commit 463da7d

Browse files
authored
Merge branch 'master' into patch-2
2 parents ef03f02 + b3b2959 commit 463da7d

File tree

3 files changed

+28
-19
lines changed

3 files changed

+28
-19
lines changed

exchange/docs-conceptual/exchange-online/exchange-online-powershell-v2/exchange-online-powershell-v2.md

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@ description: "Learn how to download and use the Exchange Online PowerShell V2 mo
2121
The Exchange Online PowerShell V2 module (abbreviated as the EXO V2 module) enables admins to connect to their Exchange Online environment in Microsoft 365 to retrieve data, create new objects, update existing objects, remove objects as well as configure Exchange Online and its features.
2222

2323
## Report bugs and issues
24-
25-
The Exchange Online PowerShell V2 module is currently in Preview. If you have any feedback, concerns, or are facing any issues with the EXO V2 module, contact us at exocmdletpreview[at]service[dot]microsoft[dot]com (email address intentionally obscured to help prevent spam).
26-
27-
When you report an issue, be sure to include the log files in your email message.
28-
29-
To generate the log files, replace \<Path to store log file\> with the output folder you want, and run the following command:
24+
When you report an issue, be sure to include the log files in your email message. To generate the log files, replace \<Path to store log file\> with the output folder you want, and run the following command:
3025

3126
```PowerShell
3227
Connect-ExchangeOnline -EnableErrorReporting -LogDirectoryPath <Path to store log file> -LogLevel All
@@ -275,7 +270,21 @@ Get-EXOMailbox -ResultSize 10 -PropertySets All
275270
276271
## Release notes
277272

278-
### Current release: Version 0.4578.0
273+
### Current release: Version 1.0.1
274+
275+
- This is the General Availability (GA) version of the EXO PowerShell V2 Module. It is stable and ready for use in production environments.
276+
277+
- Get-ExoMobileDeviceStatistics cmdlet now supports Identity parameter.
278+
279+
- Improved reliability of session auto-reconnect in certain cases where a script was running for ~50 minutes and threw a "Cmdlet not found" error due to a bug in auto-reconnect logic.
280+
281+
- Fixed data-type issues of two commonly used "User" and "MailboxFolderUser" attributes for easy migration of scripts.
282+
283+
- Enhanced support for filters as it now supports four more operators: EndsWith, Contains, Not and NotLike support. Check online documentation for attributes that aren't supported in filters.
284+
285+
### Previous releases
286+
287+
#### Version 0.4578.0
279288

280289
- Added support for configuring the Briefing Email for your organization at the user level with **Set-UserBriefingConfig** and **Get-UserBriefingConfig** cmdlets.
281290

@@ -291,8 +300,6 @@ Get-EXOMailbox -ResultSize 10 -PropertySets All
291300

292301
- Optimized memory usage when a session is created by re-using any existing module with a new session instead of creating a new one every time session is imported.
293302

294-
### Previous releases
295-
296303
#### Version 0.4368.1
297304

298305
- Added support for Security & Compliance Center PowerShell cmdlets using the **Connect-IPPSSession** cmdlet.

sharepoint/docs-conceptual/sharepoint-pnp/sharepoint-pnp-cmdlets.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ If your main OS is Windows 10, or if you have [PowerShellGet](https://github.com
2020
|**SharePoint Version**|**Command to install**|
2121
|------------------|------------------|
2222
|SharePoint Online|```Install-Module SharePointPnPPowerShellOnline ```|
23+
|SharePoint 2019|```Install-Module SharePointPnPPowerShell2019```|
2324
|SharePoint 2016|```Install-Module SharePointPnPPowerShell2016```|
2425
|SharePoint 2013|```Install-Module SharePointPnPPowerShell2013```|
2526

sharepoint/sharepoint-ps/sharepoint-server/Remove-SPAccessServicesDatabaseServer.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.reviewer:
1313
# Remove-SPAccessServicesDatabaseServer
1414

1515
## SYNOPSIS
16-
{{Fill in the Synopsis}}
16+
Removes a server configured to host Access Services databases.
1717

1818

1919
## SYNTAX
@@ -26,23 +26,24 @@ Remove-SPAccessServicesDatabaseServer [-ServiceContext] <SPServiceContextPipeBin
2626
```
2727

2828
## DESCRIPTION
29-
{{Fill in the Description}}
29+
This cmdlet removes an Access Services database server hosting Access Services databases.
3030

3131

3232
## EXAMPLES
3333

3434
### ------------------EXAMPLE------------------
3535
```
36-
{{ Add example code here }}
36+
Remove-SPAccessServicesDatabaseServer -DatabaseServer SQLSVR01 -DatabaseServerGroup DEFAULT
3737
```
3838

39-
{{ Add example description here }}
40-
39+
This example removes the SQL Server named SQLSVR01 from the DEFAULT group as an Access Services database server.
4140

4241
## PARAMETERS
4342

4443
### -AssignmentCollection
45-
{{Fill AssignmentCollection Description}}
44+
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.
45+
46+
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.
4647

4748
```yaml
4849
Type: SPAssignmentCollection
@@ -74,7 +75,7 @@ Accept wildcard characters: False
7475
```
7576
7677
### -DatabaseServer
77-
{{Fill DatabaseServer Description}}
78+
Specifies the name of the SQL Server.
7879
7980
```yaml
8081
Type: AccessServicesDatabaseServerPipeBind
@@ -90,7 +91,7 @@ Accept wildcard characters: False
9091
```
9192
9293
### -DatabaseServerGroup
93-
{{Fill DatabaseServerGroup Description}}
94+
The name of the Access Services database server group containing the SQL Server object to remove.
9495
9596
```yaml
9697
Type: AccessServicesDatabaseServerGroupPipeBind
@@ -106,7 +107,7 @@ Accept wildcard characters: False
106107
```
107108
108109
### -Force
109-
{{Fill Force Description}}
110+
Prompts you for confirmation before running the cmdlet.
110111
111112
```yaml
112113
Type: SwitchParameter
@@ -122,7 +123,7 @@ Accept wildcard characters: False
122123
```
123124
124125
### -ServiceContext
125-
{{Fill ServiceContext Description}}
126+
Specifies the service context.
126127
127128
```yaml
128129
Type: SPServiceContextPipeBind

0 commit comments

Comments
 (0)