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
Copy file name to clipboardExpand all lines: exchange/docs-conceptual/exchange-online/exchange-online-powershell-v2/exchange-online-powershell-v2.md
+16-9Lines changed: 16 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,12 +21,7 @@ description: "Learn how to download and use the Exchange Online PowerShell V2 mo
21
21
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.
22
22
23
23
## 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:
30
25
31
26
```PowerShell
32
27
Connect-ExchangeOnline -EnableErrorReporting -LogDirectoryPath <Path to store log file> -LogLevel All
@@ -275,7 +270,21 @@ Get-EXOMailbox -ResultSize 10 -PropertySets All
275
270
276
271
## Release notes
277
272
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
279
288
280
289
- Added support for configuring the Briefing Email for your organization at the user level with **Set-UserBriefingConfig** and **Get-UserBriefingConfig** cmdlets.
281
290
@@ -291,8 +300,6 @@ Get-EXOMailbox -ResultSize 10 -PropertySets All
291
300
292
301
- 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.
293
302
294
-
### Previous releases
295
-
296
303
#### Version 0.4368.1
297
304
298
305
- Added support for Security & Compliance Center PowerShell cmdlets using the **Connect-IPPSSession** cmdlet.
This example removes the SQL Server named SQLSVR01 from the DEFAULT group as an Access Services database server.
41
40
42
41
## PARAMETERS
43
42
44
43
### -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.
0 commit comments