Finnish web guy blogging from Denmark.
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…
I haven’t seen many posts about Continuous Integration. Perhaps this is because Umbraco Cloud option offers this feature off the shelf but I have some…
Sometimes you may have publicly facing website, which you don’t want it indexed by the major search engines. Easy way is to add robots.txt or meta…