#SharePointProblems | Koskila.net

Solutions are worthless unless shared! Antti K. Koskela's Personal Professional Blog

All Posts

Browse all blog posts and archives

All Posts (543)

Showing 276 to 300 of 543 posts (Page 12 of 22)
  • Cover image for How to change printer paper size using PowerShell?
    Published on
    Authors
    koskila

    How to change printer paper size using PowerShell?

    This article explains (with conveniently copy-pasteable code samples) how you can query your printers using PowerShell and modify properties, such as paper size, for one or more of them. This is very useful if you have multiple printers and multiple computers that you use.
  • Cover image for Guide: How to take over and kill a viral AAD tenant?
    Published on
    Authors
    koskila

    Guide: How to take over and kill a viral AAD tenant?

    Rogue Azure Active Directories don't sound like a huge and widespread problem, but Microsoft's approach of generating unmanaged, viral AAD tenants whenever they encounter the tiniest reason to do so MUST be driven by some weird internal scorecard where "number of tenants" has a lot of weight, because you do get an Azure AD tenant really easily, and getting rid of one is surprisingly laborious. This guide aims to explain what's the quickest way to remove one.
  • Cover image for Listing all of the assemblies loaded in a PowerShell session?
    Published on
    Authors
    koskila

    Listing all of the assemblies loaded in a PowerShell session?

    In this article, I'll do my best to explain how to list all loaded assemblies in a PowerShell session. You see, PowerShell is great at caching assemblies in the weirdest possible way, so ending up with all kinds of mismatches in loaded DLL versions is pretty common. Or just being plainly blocked from loading a new one as you already have a cached reference. I mean, I've run into all kinds of issues even if I only use PowerShell occasionally. Maybe that's the reason.
  • Cover image for Of Course I Still #ValoLove You
    Published on
    Authors
    koskila

    Of Course I Still #ValoLove You

    Long story short: My 6-year career with Valo is now coming to an end. Today was my last day at Valo. This is the longest I've ever worked at a company, and I've had the time of my life in the many positions I've held within Valo / Blue Meteorite. Rarely does a company offer you so many different possibilities and options - and let you grow into the role that you're looking to fill, with any support you might need.
  • Cover image for How to fix "No database provider has been configured for this DbContext" in EF Core?
    Published on
    Authors
    koskila

    How to fix "No database provider has been configured for this DbContext" in EF Core?

    I'm using Entity Framework in most of the projects that I'm working on - and for the most part, it's a pleasure to work with. But as always, there are plenty of chances to run into issues... So obviously, I stumbled into all of the rare stuff that IS broken! This one I hadn't really seen before: "No database provider has been configured for this DbContext" . This time I encountered the issue while setting up a new project and getting started working on the model.
  • Cover image for How to run Robot tests on an Azure DevOps hosted agent?
    Published on
    Authors
    koskila

    How to run Robot tests on an Azure DevOps hosted agent?

    This short article simply documents how to install the dependencies for running Robot Framework on Azure DevOps' hosted agents. This simple tip comes in handy when you need to run any UI testing for your project after build, as Robot Framework is a great and widely used tool for that. Let's quickly take a look at the background of the issue, after which I'm sharing a highly copy-pasteable piece of YAML for your convenience. Well - and mine.
  • Cover image for "Missing value for AzureWebJobsStorage in local.settings.json" when debugging Azure Functions locally?
    Published on
    Authors
    koskila

    "Missing value for AzureWebJobsStorage in local.settings.json" when debugging Azure Functions locally?

    Another day, another issue with Azure Functions ! For such a simple and powerful tool, it sure does produce a lot of topics for blog articles! 😁 So, in this article, I'm explaining a couple of possible reasons why you might get an error along the lines of " Missing value for AzureWebJobsStorage " when debugging Azure Functions locally. But before jumping into the solution(s), let's take a closer look at the issue at hand, shall we?
  • Cover image for How to copy-paste a table from Excel to WordPress without using plug-ins?
    Published on
    Authors
    koskila

    How to copy-paste a table from Excel to WordPress without using plug-ins?

    So, I tried to paste a table from Excel into WordPress, and I failed. Annoying - but not a big problem. I can just paste it into an existing table and it'll "sort itself out", right? Well, no. Exporting the Excel sheet as a html page and copy-pasting the table from there didn't work either. Actually, copy-pasting a table just didn't work at all. So... WordPress is unable to understand HTML tables. Is that really it? Well, no, again, it's not.
  • Cover image for How to create a new SharePoint list based on a List template (.stp)?
    Published on
    Authors
    koskila

    How to create a new SharePoint list based on a List template (.stp)?

    New Microsoft Lists are here!. They are awesome, and a great move by Microsoft to reap even more value from the old warhorse. Wait - old warhorse? Well, behind the scenes, they're actually "just" normal SharePoint lists with a bit of added sparkles and gizmos - namely, an app, a few automations to make users' lives easier, and an application page to display the lists. Great move by Microsoft, launch quite well done, and a pretty good user experience so far. But it's not all good.
  • Cover image for How to enable saving a list as a template on SharePoint Online?
  • Cover image for How to change Azure Functions from Consumption to Premium Elastic plan?
    Published on
    Authors
    koskila

    How to change Azure Functions from Consumption to Premium Elastic plan?

    Sometimes, you need to change the hosting model (or tier) for your resources on Azure. Maybe you've outgrown whatever you've originally selected, maybe you've got too much cash on your hands, or maybe you're like me, and you get absolutely and completely fed up with the cold starts for your Azure Function apps on the Consumption plan and want to use the Premium Elastic plan instead. For these situations, you have the possibility of changing the hosting tier - the plan - you're on.
  • Cover image for Azure DevOps Pipelines Caching
    Published on
    Authors
    koskila

    Azure DevOps Pipelines Caching

    Azure DevOps pipelines have a pretty handy feature called Pipeline Caching . It'll help you avoid annoyingly long NuGet package restores in your builds. And that makes sense - why would you restore packages again and again and again, if you're not updating your dependencies meanwhile?
  • Cover image for How to recover the private key of a (.pfx) certificate?
    Published on
    Authors
    koskila

    How to recover the private key of a (.pfx) certificate?

    Recently, I ran into a problem that I definitely caused myself. I had a certificate, that was created to authenticate an app against Azure AD. The encryption key for the .pfx file was, however, lost. I could just create a new certificate, configure the app service to use that, and replace the old certificate... But that's manual labor and where's the fun in that? I prefer a solution that included a bit more coding!
  • Cover image for How to fix "System.IO.FileSystem: Could not find a part of the path - - Value cannot be null. (Parameter 'provider')", when running Azure Functions locally?
    Published on
    Authors
    koskila

    How to fix "System.IO.FileSystem: Could not find a part of the path - - Value cannot be null. (Parameter 'provider')", when running Azure Functions locally?

    Well, that title is a mouthful. But it's the topic for today, so what can you do? That said, this article should be pretty topical, as the issue started popping up only a few days ago. Chances are it'll be patched soon enough, but in the meantime, it's always useful to document the fix! Problem When running or debugging Azure Functions locally, your runtime just blurts our this error and fails to compile your functions: [2021-01-11T10:28:11.
  • Cover image for How to nuke the Identity Cache in Visual Studio?
    Published on
    Authors
    koskila

    How to nuke the Identity Cache in Visual Studio?

    This article explains one easy workaround to a lot of Visual Studio authentication issues. Personally, it's helped me multiple times when Cloud Explorer has gotten into a weird authentication loop or Visual Studio stops seeing my MSDN subscription.
  • Cover image for Fixing unexpected Microsoft.AspNetCore package errors after a dependency update
    Published on
    Authors
    koskila

    Fixing unexpected Microsoft.AspNetCore package errors after a dependency update

    This was a fun one! Suddenly, while running or debugging my ASP.NET Core 3.1 application, I started getting errors about missing assemblies, along the lines of "FileNotFoundException: Could not load file or assembly Microsoft.AspNetCore.Components.Forms". These DLL files were not required a minute earlier - nor did requiring them really make much sense in my mind - but there was a nonsensical, easy fix, so in the end, it was all good! But let's go through this thing in order.
  • Cover image for 2020 - Year Review
    Published on
    Authors
    koskila

    2020 - Year Review

    Like is almost customary at this point in the year, I decided to take a look at 2020 - which goals I had set for myself if I hit them, and what happened on koskila.net during the year. And like last year, I thought I'd set myself a few new goals! In my last year review post, I commented on 2019: 2019 was borderline tumultuous – in 2020, I hope it’ll be slightly smoother sailing. Me, in my 2019 review Oof. Overall, 2020 was definitely not "smoother sailing".
  • Cover image for Graph API throws "$count is not currently supported." when you KNOW it's supported?
    Published on
    Authors
    koskila

    Graph API throws "$count is not currently supported." when you KNOW it's supported?

    Hey, another funny case. "Funny" as in "the error message is misleading and googling didn't really help", but also as in "a colleague knew the answer right off the bat because he already fixed it in another project". This time the documentation was in fact there , it just wasn't there to be found . Anyway - what have I broken this time? Problem When you're calling Graph API with both $filter and $count, for example: https://graph.microsoft.com/v1.0/users/$count?
  • Cover image for "An assembly specified in the application dependencies manifest was not found" when running Add-Migration in Entity Framework Core?
  • Cover image for How to fix Visual Studio Cloud Explorer being unable to access your subscriptions
    Published on
    Authors
    koskila

    How to fix Visual Studio Cloud Explorer being unable to access your subscriptions

    This article will describe a number of fixes to a situation, where your Visual Studio Cloud Explorer fails to show you the Azure Subscriptions you (should) have access to. Problem Your Cloud explorer might load for a long while, and finally, fail to display anything meaningful. Instead, you might see an error like the below: "Subscriptions could not be loaded. Please try reentering "Subscriptions could not be loaded.
  • Cover image for Pulumi task on Azure DevOps fails with error "azureblob.OpenBucket: accountName is required"
    Published on
    Authors
    koskila

    Pulumi task on Azure DevOps fails with error "azureblob.OpenBucket: accountName is required"

    This article explains how to fix one of the many issues you might face when configuring Pulumi deployments for your Azure DevOps Pipelines! The particular error you may run into was "azureblob.OpenBucket: accountName is required" - what a descriptive one, when there's no accountName to be specified anywhere! But first - let's get through the basics. Namely... " Pulumi ?", you ask - " What's that? " Well, let me give you a 1-line response to that. What is Pulumi?
  • Cover image for Hacktoberfest 2020
    Published on
    Authors
    koskila

    Hacktoberfest 2020

    Another year, another Hacktoberfest, another haphazard participation, and - as usual - another blog post a little bit late. Still, better late than never! And the event has become such a phenomenon that I am happy that I did finish the challenge (or like DigitalOcean calls it - the celebration)! The event has a special place in my heart, as it did (in 2017, I think?
  • Cover image for How to access the site collection app catalog in SharePoint
    Published on
    Authors
    koskila

    How to access the site collection app catalog in SharePoint

    This article explains how to access the Site Collection App Catalog in SharePoint Online. I mean - yeah, I had to google it after getting back to SPFx dev stuff after a while and realized the first few results were useless. Of course. So how did you do this now... Turned out to be pretty easy, and borderline obvious! Still, yet another thing to document. Solution So, back to basics - how do you access the Site Collection App Catalog on a SharePoint Online Site (or Site Collection)?
  • Cover image for Frequently Asked Robot Lawn Mower Questions
    Published on
    Authors
    koskila

    Frequently Asked Robot Lawn Mower Questions

    This article is my attempt at documenting my experiences with Worx Landroid L2000. It's a phenomenal little helper in your garden, but it will run into issues - and it will make your work a bit in order to get it to run efficiently! This article contains all of the gotchas I've run into so far, wrapped in a handy FAQ format for your convenience (and mine, to be fair - I'll be back to consult my notes later)!
  • Cover image for How to inject EF Core DbContext in an Azure Function
    Published on
    Authors
    koskila

    How to inject EF Core DbContext in an Azure Function

    Ah, one more on the related topics of different configurations for your Azure Function apps. In this article, I will describe how you can configure the Entity Framework Core database context to be injected into your Azure Functions App. In my experience, this is a very typical and often-needed model to structure your Azure Functions. Therefore, while tooling and templates aren't quite there, it's worthwhile to document how to do this somewhere - well, here.
Whitewater Magpie Ltd.
© 2026
Static Site Generation timestamp: 2026-05-05T05:31:42Z