SharePoint 2019 CORS Requests
In SharePoint 2019 (or 2016), when someone is trying to access REST API from other domain, it is usually blocked by browsers CORS policy. To avoid these blocking, you must […]
Personal Blog of Marek Mihalech
In SharePoint 2019 (or 2016), when someone is trying to access REST API from other domain, it is usually blocked by browsers CORS policy. To avoid these blocking, you must […]
On one of my SharePoint 2019 farms a strange error occurred while trying to convert DOCX to PDF using Word Automation Services: ErrorMessage : The file could not be converted; […]
SharePoint has nice feature, that allows you to open document libraries in classic Windows File Explorer. This lets you upload, move, copy files or folders in document libraries from File […]
If you are running your C# code in different thread (e.g.: async EventReceivers or TimerJob), sometimes you may notice, that your SPWeb object is initialized in different language. You can […]
Recently, I have set up Developer DashBoard in SharePoint Foundation 2013 via powershell like always. The strange problem was, when I opened the dashboard, there was only blank page staring […]
When you are creating New Folder in SharePoint list through UI, SharePoint automatically trims white-space from folder names. But, if you attempt to create New Folder programatically, an Exception can […]
Almost every SharePoint developer knows popular SPFile.MoveTo method. But, in certain cases, you have only SPListItem, and you need to move it to new destination. One of the possible solutions is to make a […]
When you have your SharePoint application enabled with Anonymous access, often can occur the exception: This is, because some Rest methods can be disabled on web application scope. You can […]
Here is a simple powershell script, that creates Lookup column on targetList from sourceList.
In migration process from SharePoint 2007 to SharePoint 2013 content databases are growing enormously on size. I have encountered growth about 70% (And that is really big problem, when you […]