This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public enum Plan { | |
| FREE, EXPRESS, PROFESSIONAL, ENTERPRISE | |
| } | |
| public class Customer { | |
| long id; | |
| String name; | |
| Plan plan; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Diagnoses common Windows 11 SMB / network-sharing problems and prints a | |
| color-coded TUI report with pass/fail checks and recommendations. | |
| .DESCRIPTION | |
| Run this on the PC that is SHARING the folder (e.g. DELL-MICRO). | |
| Optionally run it again on the CLIENT PC that gets the error, using | |
| -TargetComputer to also test connectivity to the host. |