Hello All. I desperately need help. I moved a perfectly working project from an old Win 10 laptop (Pro) to a new Win 10 laptop (Home). It's code is simple enough, it registers a path watcher on a directory (nothing special, something like c:\folder, to which I have opened all permissions). See the following code: Path path = Paths.get(dirDTO.getPath()); path.register(watcher, new WatchEvent.Kind<?>[]{ ExtendedWatchEventKind.ENTRY_RENAME_FROM, ExtendedWatchEventKind.ENTRY_RENAME_TO, StandardWatchEventKind.ENTRY_CREATE,...