Listen to this Post
The continuous rollout of “enhanced features” for New Outlook aims to bring it closer to the functionality of the “old” Outlook desktop. Here’s a breakdown of the upcoming updates:
- November 2024: The first phase of PST (Outlook Data File) support in the new Outlook for Windows will provide read-only access to Mail items within *.pst files. Users will be able to open *.pst files, read emails, and search within them. However, Calendar, Contacts, and Tasks data saved in *.pst files will not be accessible in this preview. Future releases will expand PST support capabilities.
-
January 2025: This update will allow users to move (drag and drop) emails from a .pst file to a mailbox and vice versa. Further releases will continue to enhance .pst file capabilities.
-
March 2025: With this update, users will gain the ability to move, copy, delete, flag/unflag, mark as read/unread, and set categories for emails within .pst files. Additionally, users will be able to create, delete, move, and rename folders within .pst files. Future updates will further expand these capabilities.
For more details, refer to the Microsoft 365 Roadmap guide.
Practice Verified Codes and Commands
To interact with PST files programmatically, you can use PowerShell commands. Below are some examples:
1. Exporting PST Files:
New-MailboxExportRequest -Mailbox "[email protected]" -FilePath "\server\share\user.pst"
2. Importing PST Files:
New-MailboxImportRequest -Mailbox "[email protected]" -FilePath "\server\share\user.pst"
3. Listing PST Files:
Get-MailboxImportRequest | Format-Table -AutoSize
4. Removing PST Import Requests:
Remove-MailboxImportRequest -Identity "[email protected]\Import"
5. Checking PST File Status:
Get-MailboxExportRequest -Mailbox "[email protected]" | Format-Table -AutoSize
What Undercode Say
The evolution of Outlook’s PST file support is a significant step towards bridging the gap between the new and old Outlook experiences. For IT professionals and cybersecurity experts, understanding how to manage PST files is crucial, especially when dealing with data migration, compliance, and security. The PowerShell commands provided above are essential tools for automating and managing these tasks efficiently.
In the realm of cybersecurity, PST files can be a goldmine of sensitive information, making them a target for malicious actors. It’s imperative to ensure that these files are encrypted and stored securely. Regularly auditing PST files and monitoring access logs can help in identifying any unauthorized access attempts.
For those working in IT support, mastering these commands can significantly streamline the process of managing user data, especially during transitions or upgrades. Additionally, understanding the roadmap for software updates, like the one provided by Microsoft, allows for better planning and preparation.
In conclusion, the enhanced features for New Outlook are a welcome development, but they also underscore the importance of staying updated with the latest tools and techniques in IT and cybersecurity. Whether you’re managing PST files, securing sensitive data, or automating routine tasks, the right knowledge and tools can make all the difference.
For further reading on managing PST files and Outlook data, you can refer to the Microsoft 365 Roadmap guide.
References:
initially reported by: https://www.linkedin.com/posts/charlescrampton_the-continuous-rollout-of-enhanced-features-activity-7302381819167936513-IehY – Hackers Feeds
Extra Hub:
Undercode AI


