On Powershell in administrator mode Run the following:
Set-SmbClientConfiguration -RequireSecuritySignature $falseAnd then this one
Set-SmbClientConfiguration -EnableInsecureGuestLogons $true
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Must run as root (or via sudo) | |
| if [[ "${EUID}" -ne 0 ]]; then | |
| echo "Please run as root (e.g., sudo $0)" | |
| exit 1 | |
| fi | |
| echo "==> Flushing iptables (filter/nat/mangle/raw) and resetting policies to ACCEPT..." |
On Powershell in administrator mode Run the following:
Set-SmbClientConfiguration -RequireSecuritySignature $falseAnd then this one
Set-SmbClientConfiguration -EnableInsecureGuestLogons $true
| Get-ChildItem "." | ForEach-Object { Compress-Archive -path $_.Name -destinationPath "$($_.Basename).zip"} |