Endian Firewall Failed to join domain error

There isn’t a lot of information about connecting endian firewall community to windows server 2022 and I kept getting the same “Failed to join domain” but it worked on my  2008R2 server with near identical settings after many, many, many hours I found that endian uses SMBv1 to authenticate and guess what is turned off by default on server 2022. Turned it on and it immediately authenticated.

Fix basestation on windows 10

On windows 10 basestation the plane tracking software needs a copy of ftd2xx.dll (32bit) in the same directory as basestation.exe and try running it as administrator ideally right clicking on basestation.exe and changing the properties to force it to run as administrator on each run

Computercraft automatic enchantment sorter

local chest = peripheral.wrap("front")
print("Radcom's Enchantment sorter V1.2")
while true do
    sleep(1)
    for i = 1, chest.getInventorySize() do
        local item = chest.getStackInSlot(i)
        if item and item.ench then
            print("Found a ", item.name, " with an enchantment")
            print("Moving")
            chest.pushItem("south",i,1)
        else
            if item then
                print("moving: ",item.qty, " ",item.name)
                chest.pushItem("east",i,item.qty)
            end
        end
     end
end

 

Batch extract zip files

At work I needed to extract the contents from 600+ zip files to one place and select all, right click extract all did not work.
7-zip to the rescue, I used the command line version of 7-zip in a simple batch comand to loop through the files and extract each one
this code is written to be run from the same dir as the files to be extracted,
“C:\Program Files (x86)\7-Zip\7z” needs to be the location of the commandline version of 7-zip
“%CD%Backup files %x.zip” this the format of the files to be extracted in this case it was a series of sequentially numbered files all called “Backup files 1,2,3,etc”

It is run straight from the command prompt not as a batch script

“C:\extracted” is the destination of the extracted filesfor /l %x in (1, 1, 100) do "C:\Program Files (x86)\7-Zip\7z" x "%CD%Backup files %x.zip" -o C:\extracted

all in all about 20 mins work to write and test