Two different ways to retrieve the uptime of your system. $time = (get-date) - (gcim Win32_OperatingSystem).LastBootUpTime $time Function Get-Uptime { $os = Get-WmiObject win32_operatingsystem -ErrorAction SilentlyContinue $uptime = (Get-Date) - $os.ConvertToDateTime($os.LastBootUpTime) Write-Output ("Last boot: " + $os.ConvertToDateTime($os.LastBootUpTime) ) Write-Output ("Uptime...
Categorie: Development
Using XRDP to allow windows RDP to connect to Ubuntu 22.04.
You can use XRDP to connect to a linux session from Windows RDP. One remark though: You cannot be logged on in a session on the machine, and simultaniously login via RDP. If you do so, you will find your...
SSL certificaten vervangen
Met de verkorte levensduur van website SSL certificaten, moet je ze dus ook vaker vervangen. En dan moet je toch eens uitzoeken hoe je dat eenvoudiger kan doen. Vanaf 1 september 2020 hebben de grote browsermakers (Google, Apple, Microsoft en...
Nav 2016 RTC Crash
Suddenly the RTC stopped working at our client site... the app crashed when starting it was the initial support request we got. But asking further, the problems started a few days earlier, and not all at once for all computers....
Windows Server 2022, Network Discovery
Want to enable network discovery in windows server 2022, and every time you switch it on and save it, it stays disabled? For network discovery, it's a common issue. Open services.msc and make sure the following services are all running:...
Webservice to Business Central – Challenge
Offering business central webservices to the world is made easy in this ERP system. Offering fast, reliable webservices is somewhat more challenging.When you first start with webservices, and a customer ask the question: 'I have and android app with which...
30+ year programming experience, and still…
Creating a programming error still is simple, and AI isn't helping me yet. I develop software for Microsoft Business Central, in a programming language called C/AL (and in de current version this is changed to AL). Today in a hurry,...
Business Central Error
We are trying to deploy a mega app to Business Central 16 (spring 2020) and get an 'Object reference not set to an instance of an object' in Microsoft.Dynamics.Nav.Management.dll. With some help of the mibuso forum and the poster of...
C# en Web Reference vs. Service Reference
Er zijn nog steeds verschillende mensen die verward raken door het verschil van deze 2 manieren om een webservice te gebruiken in een visual studio C# applicatie. Add Web Reference: de 'oude' manier van werken, gebruik makende van de XmlSerializer....