batch remove periods from files

I had a user that had a folder of files that had a lot of .’s in the names.  As an example:
I.like.kayaking.txt
This.is.a.sample.file.txt

They needed all of the .’s replaced with a space.  Here is the contents of the batch file that I created to fix the issue:


@echo off
 setlocal enableextensions disabledelayedexpansion

for %%a in (*) do (
 set "filename=%%~na"
 setlocal enabledelayedexpansion
 for %%f in ("!filename:.= !") do (
 endlocal
 ren "%%~fa" "%%~f%%~xa"
 )
 )

All the user has to do is copy the .bat file into the directory that has the problem files and then run the .bat file.

This is a slightly modified version of the script found at: https://stackoverflow.com/questions/28558996/batch-file-for-replacing-dots-with-spaces-in-file-names

Siding updates

I haven’t posted about the siding project for awhile.

All of the old siding is off and new sheathing is in place.

I did discover that the ceiling above our dining room had no insulation on it.

So I learned how to use an insulation blower (not hard) to blow insulation 16+ feet in (challenging) I attached the blower nozzle to the end of a pool pole and then used a long 1×6 to move the insulation into place. It was a bit messy as I got closer to the opening, but not too bad.

With the sheathing up, I was able to get the house wrap on. There is much debate online as to of house wrap should go above or below polystyrene insulation. I chose below as it would be easier to secure around windows.

I worked from the bottom up, over lapping each layer by a foot.

I am now in the process of getting the polystyrene up.

So much of it is now up that I had to remove the scaffolding. I’m hoping that I will be able to get all the siding up without it. I do still have my hoist in place to help with the heavier lifting up high.