files
3237 TopicsOpening .msg files from sharepoint natively in Outlook
Hi I am wondering if there is a method of opening .msg files in a similar manner to .xls and .docx, where you can open them natively. The current way sharepoint opens .msg files does not allow access to the attachments in the emails, nor can the message be forwarded unless explicitly downloaded. Classic sharepoint immediately downloads the file, so it does not mitigate the issue experienced here.20KViews0likes10CommentsMicrosoft.SharePoint.SPFileLockException
I am building a tool to upload the data to Microsoft Sharepoint excel file. There are many users who can use the file at the same time, but it is critical for me to be able to upload the data to the particular worksheet in that specific file all the time. However it seems that when the file is used by other users I cannot do the updates to the file and I am getting this error: '{"error":{"code":"-2147018894, Microsoft.SharePoint.SPFileLockException","message":{"lang":"en-US","value":"The file XXX.xlsx is locked for shared use by email address removed for privacy reasons [membership]."}}}' Is there a way for me to force an update to the file? To remove this Lock exception?2.1KViews1like1CommentURGENT: OneDrive Restore Completed but Files Missing – No Engineer Assigned Since Dec 27
Hello, I am posting here as a last resort after more than 6 weeks of unresolved support. On December 26, 2025, I accidentally deleted a large number of files and emptied the Recycle Bin. On December 27, 2025, I immediately initiated a full OneDrive restore to a snapshot from December 19, 2025. The restore job shows: • Restore status: Completed • Thousands of restore events processed • However, hundreds of events failed (Save Conflict, Item Not Found in Recycle Bin) My storage usage dropped significantly (from 10+ GB to ~2.7 GB), and thousands of photos never reappeared. Restore logs show: • Multiple “Save Conflict” errors • Multiple “Item Not Found in Recycle Bin” errors • Backend SharePoint references (SPException) I opened an official support case on December 27, 2025. The current status still says: “A support agent is being assigned to your request.” No OneDrive engineer has contacted me in over a month. I am a paying Microsoft 365 subscriber. My questions: 1. Is there a way to confirm whether backend snapshot data still exists? 2. Does “Restore Completed” guarantee that the backend restore fully executed? 3. Can Save Conflict errors prevent large portions of data from being re-materialized? 4. Is escalation to the OneDrive backend team still possible beyond front-line support? This is not a basic user error case. The restore logs clearly show backend-level operations. If anyone from the OneDrive engineering team is monitoring this forum, I am urgently requesting technical escalation. Thank you.34Views0likes0Comments3 file limit error in Personal Vault in spite of 1TB family subscription
I am having issues with my Personal Vault on One Drive. Its giving me error that I have hit 3 files limit in the Personal Vault on One Drive. In order to use more than 3 files , I have to upgrade to a 1TB plan. I am already a part of the Family Subscription and have 1 TB of space. I have just used 46GB of 1TB. Support is barely able to help me. Best they could do was tell me to logout and login. I have uninstalled and reinstalled my One Drive, and after setting up the Personal Vault, I am seeing the same issue. On 1TB , I can save as many files on Vault but I cant do for some reason now. It was working fine for last so many years but just today it broke after I edited and saved a file. Family subscription with 1TB allows unlimited files on Personal vault but basic plan allows only 3 files. Please help if anyone has a solution.2.5KViews0likes3CommentsHas OneDrive changed the way it handles conflict issues? Because it's losing my data this way...
In the past, when OD had trouble syncing a file due to conflicts (it wasn't sure what was really the most recent), it would leave the original file intact and create a "-machinename" version of the file as well. So, if I have a file voice1.mp3, and, on one of the computers (say, "pc1"), it couldn't figure out whether the version I was saving was the latest, I'd end up with this: voice1.mp3 voice1-pc1.mp3 Which is fine. I'd have to resolve the conflict. Recently, what it seems to do is create the "-machinename" file and DELETE the original file. So, I end up with this: voice1-pc1.mp3 The first time it happened, I thought it must be something I had done, so I pulled back the original file from my backups (this is one of MANY reasons when MS should NOT bill OD as a "backup". "Backups" are copies that are INDEPENDENT of the original file. But, I digress...). But now I'm seeing it all over the place. It seems that whenever it finds a conflict, it creates the -machinename file and NUKES the original file. Anybody else seen this or know how to stop it? Thanks!89Views0likes1CommentFile Type Version Limits
Hi all, In trying to solve an old issue I stumbled across this new feature currently in preview and am wondering if the file type arrays will be editable or if new arrays could be or will be added? I have a handful of file types which do not need 100 versions, let alone a version every 2-5 minutes, requiring frequent culling... Ling. https://learn.microsoft.com/en-us/sharepoint/file-type-version-limits26Views0likes0CommentsOnedrive LOSES my data!
So I spent time adding lots of entries to a stock management spreadsheet, saved it to my onedrive and made sure it said 'saved' at the top of the excel window. Opened the sheet again today to see that all of my changes are gone and I have effectively lost my stock because the absolute imbeciles at Microsoft can't code. How do I get my work back? When are microsoft going to sort their sloperating system out?64Views0likes1CommentRenaming a folder with too many files
One of our teams has a Team/SharePoint site with an archive folder. Everything in there is old files, and they'd like to rename the folder. However, we get the error that it exceeds the list view threshold. I've spent the afternoon trying to find out how to get this folder renamed and so far nothing has worked. The general consensus is to create a filtered view, but I'm not sure what to filter it based on, as all of the files have been there and untouched for some time, causing most of the columns I could index be fairly similar (they were moved to SharePoint 3 years ago from an on-prem fileshare). One of the options I'd seen was to sync it using OneDrive and rename it locally but that still gave me the same error. I also tried renaming the folder from within Teams without success. If someone could provide some guidance for how to get this done, I'd appreciate it. Right now, I'm thinking I'll just have to move a bunch of stuff out of some of the folders to temporary locations, but even that is challenging as I'm not aware of a good way to get a count of items in folders and subfolders in SharePoint to know which are the best ones to move out.69Views1like0CommentsTrimming SharePoint Version History - Minor Versions
Hello, I am a SharePoint Admin at my organization and I have been asked to reduce our total storage usage by reducing the number of versions and minor versions in our environment on all SharePoint sites. I have written a simple PowerShell script that loops through a csv file with site addresses, and runs this command per site -> New-SPOSiteFileVersionBatchDeleteJob -Identity $site.siteURL -MajorVersionLimit 100 -MajorWithMinorVersionsLimit 5 It was my understanding that for all sites in the csv file, for all document libraries on the site, and for all files in the libraries this command will reduce the file to the last 100 Major versions, and the last 5 minor versions of each major version. Unfortunately, this command is not actually reducing the minor versions. It is working with the Major versions just fine, but all minor versions are being retained for each major version retained. Is my understanding of this command wrong, or is it not working? Are there other factors to consider? Does anyone know of an alternative that can fit my needs? The overall plan is to trim the current version history, then apply the automatic version setting to each library in our tenant. Here is the MS guide I referenced, maybe I missed something -> https://learn.microsoft.com/en-us/sharepoint/tutorial-queue-a-trim-job Any help is greatly appreciated, Cam96Views1like1Comment