This is a problem with the SSL (Secure Sockets Layer) protocol, which is used to establish secure connections between a web server and a browser.…
Finnish web guy blogging from Denmark.
This is a problem with the SSL (Secure Sockets Layer) protocol, which is used to establish secure connections between a web server and a browser.…
The Windows Subsystem for Linux (WSL) lets developers install a Linux distribution and run it inside Windows. I use WSL all the time when working…
Ever see The “Failed to Enumerate Objects in the Container. Access is denied.” error? I get this sometimes on Windows when pulling code from Git.…
Microsoft’s .NET Core is already several years old but I have not fully embrace it until release of .NET6 last year. Although, I was using…
Use Measure-Object to count things. In this case it would look like: Only Files Only Folders Both Specific files
I noticed that WordPress and WordPress Multisite on Azure does not perform well. It seems that anything written in PHP is not the first class…
The Az PowerShell module has been for a while the recommended PowerShell module for interacting with Azure. Here is the quick guide how to install…
How to Schedule a Reboot. This should work also on workstation. This will restart in 6 hours Invoke-Command -ComputerName NameOfServer {shutdown /r /t 21600} This…
$server = “YOURSERVERNAME”$password = “yourpassword”$username = “yourusername”Write-Host “Start reset” $SecurePassword = $password | ConvertTo-SecureString -AsPlainText -Force$cred = New-Object System.Management.Automation.PSCredential -ArgumentList $username, $SecurePassword$Session = New-PSSession -ComputerName…