Windows Docker – An attempt was made to access a socket in a way forbidden by its access permissions.

Published on Author JFLeave a comment

Running Docker on Windows? You might run into these errors: docker: Error response from daemon: Ports are not available: listen tcp 0.0.0.0:4449: bind: An attempt was made to access a socket in a way forbidden by its access permissions. Error starting userland proxy: listen tcp 0.0.0.0:80: bind: An attempt was made to access a socket… Continue reading Windows Docker – An attempt was made to access a socket in a way forbidden by its access permissions.

Running Docker on a Windows 10 Hyper-V

Published on Author JFLeave a comment

You are running Windows 10/11 on your machine with Hyper-V installed. You are also running a Windows 10 Hyper-V Virtual Machine. When installing Docker you will get a notification that WSL is having issues so you will update it. Run PowerShell as Administrator: And Docker will still fail so you will: It might fail because… Continue reading Running Docker on a Windows 10 Hyper-V

How to CORRECTLY install PHP 7.4.16 for IIS on Windows

Published on Author JFLeave a comment

It is easy to fall into old learnings and habits with Windows because it can be difficult to keep up with the latest methods. Also, you’re not in a position to run PHP on a linux stack, so Windows it is. If you’ve been around Windows and IIS for a long time, you might still… Continue reading How to CORRECTLY install PHP 7.4.16 for IIS on Windows

Linux tail -f replacement on Windows

Published on Author JFLeave a comment

Use Get-Content and Get-Item in Powershell Looking for the tail command on Windows? Get-Content will do the trick. Here’s a link to the command page. Open PowerShell: Show the last line/s: Get-Content C:\inetpub\logs\LogFiles\W3SVC1\u_ex200711.log -Tail 1 Or use get-item Get-Item -Path .\LineNumbers.txt | Get-Content -Tail 1 Stream the file like tail -f Get-Content path-to-file -wait Example:… Continue reading Linux tail -f replacement on Windows

How to turn on TLS 1.2 in Windows 2019

Published on Author JFLeave a comment
Windows 2019 TLS 1.2

Update the Windows Registry Start > Run > regedit Registry path: HKLM SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols Open TLS 1.2 For both Client and Server, double click Enable and set the REG_DWORD to 1. Click Ok, then reboot (but see below first). Lockdown various protocols for IIS While you’re configuring TLS, you may as well lock down IIS. The… Continue reading How to turn on TLS 1.2 in Windows 2019

Intel XTU error 0x80070643 attempted to install on an unsupported platform

Published on Author JF43 Comments
Intel XTU 0x80070643

I wanted to get the Intel® Extreme Tuning Utility installed and play around with some overclocking on my 2017 HP Spectre X360 13″, which I’m currently running with an HP Omen e-gpu and an Nvidia GTX-1060Ti. I downloaded the software from Intel (version 6.5.1.321) and it would not install: error 0x80070643 attempted to install on… Continue reading Intel XTU error 0x80070643 attempted to install on an unsupported platform

How to search the Microsoft SQL Full Text Search index

Published on Author JFLeave a comment

Use this query in SQL Management Studio to directly search the Full Text Search index. select * from sys.dm_fts_parser(‘”search term”‘, 1033, NULL, 0) Note that there are upcoming changes to FTI, including many deprecated functions, so if you’re using it extensively you probably have some work to do.

How to use Tail in Windows Powershell

Published on Author JFLeave a comment

Windows is slowly, but surely, catching up to the hundreds of useful utilities for reading file content that *nix have had for forever. As you know, opening a 1 gig log file in notepad is impossible. Even using Notepad++, which can open some pretty large files, will not open a 1 gig file. Thank you,… Continue reading How to use Tail in Windows Powershell

How to get what version of Powershell you are using

Published on Author JFLeave a comment

Microsoft Windows Powershell is a very useful tool that brought some sanity to managing Windows outside the GUI. To find the version you are running, open Powershell, paste and hit enter: $PSVersionTable.PSVersion Result: Windows PowerShell Copyright (C) 2015 Microsoft Corporation. All rights reserved. PS C:\Users\username> $PSVersionTable.PSVersion Major Minor Build Revision —– —– —– ——– 5 0… Continue reading How to get what version of Powershell you are using