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
| import vs | |
| def vs_iter(container: vs.HandleContainer): | |
| child = container.first | |
| while child: | |
| yield child | |
| child = child.next | |
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
| # Либо эти 2 команды в Административном Powershell терминале | |
| Set-SmbClientConfiguration -EnableInsecureGuestLogons $True -Force | |
| Set-SmbClientConfiguration -RequireSecuritySignature $False -Force |