I code on a MacBook but often target Windows. My setup for many many years has been to run the Xojo IDE on the Mac and use the Remote Debugger on Windows, with both of them connected to my office LAN via wifi. Today it suddenly started taking ages (like 5-10 minutes) for Xojo to transmit the debug tarball over to Windows. It wasn’t just Xojo - I tried a manual file transfer and it was also bog slow. I rebooted the PC, then shut down and restarted the PC - no change. Both machines had fast internet, so it wasn’t a wifi issue, it was the ability to transfer files between them.
I explained the situation to Claude (AI) and its first suggestion was to run Powershell as Admin and enter
Get-SmbServerConfiguration
I showed Claude the output and it immediately spotted the parameter
RejectUnencryptedAccess : True
and suggested I disable that option with
Set-SmbServerConfiguration -RejectUnencryptedAccess $false -Force
The problem immediately went away! Apparently a recent Windows update had enabled that option - I guess Microsoft doesn’t think anyone actually transfers files between MacsOS and Windows machines over a LAN
Thanks, Claude! I would never have known about that setting or where to find it.