Any help is appreciated
I attempted to remove smb1 via Programs & Features, reboot, then re-add. I was able to re-add it but it still didn't work.
Then I used Powershell commands I found on link below. It worked for me on 2 of my workstations.
https://docs.microsoft.com/en-us/windows-server/storage/file-server/troubleshoot/detect-enable-and-disable-smbv1-v2-v3
Perhaps the "on-line" featureset is newer than the local feature set.
Here are the commands. Run Powershell as administrator.
Get-WindowsOptionalFeature -Online -FeatureName smb1protocol
Disable-WindowsOptionalFeature -Online -FeatureName smb1protocol
Enable-WindowsOptionalFeature -Online -FeatureName smb1protocol