PowerShell – Using the WordPress Rest API

I just found out that meanwhile (since October last year) the Rest API for wordpress now also works on self-hosted wordpress sites. So i can now access the content of my blog through PowerShell. $posts = Invoke-RestMethod -uri “https://public-api.wordpress.com/rest/v1/sites/www.verboon.info/posts/?number=50” $posts.posts Read More …

ConfigMgr OSD – Enable .NET Framework 3.5 on Windows 8.1

Windows 8.1 has the .NET Framework 4.5.1 enabled by default. If you need .NET Framework 3.5 which also includes support for .NET 3.0, and 2.0, then you must enable the feature as it is not enabled by default.However to enable Read More …