User Tools

Site Tools


windows:notes:smb

Commands

"powershell.exe" -Command "Set-SmbClientConfiguration -EnableInsecureGuestLogons 0 -Force"
"powershell.exe" -Command "Set-SmbClientConfiguration -DisableCompression 1 -Force"
"powershell.exe" -Command "Set-SmbServerConfiguration -DisableCompression 1 -Force"
"powershell.exe" -Command "Set-SmbClientConfiguration -RequireEncryption  0 -Force"
"powershell.exe" -Command "Set-SmbClientConfiguration -BlockNTLM 1 -Force"
"powershell.exe" -Command "Set-SmbServerConfiguration -Smb2DialectMax "SMB311" -Smb2DialectMin "SMB311" -Force"
"powershell.exe" -Command "Set-SmbClientConfiguration -Smb2DialectMax "SMB311" -Smb2DialectMin "SMB311" -Force"

Batch File

"notepad.exe" "%UserProfile%\Downloads\SMB Tweaks.bat"
@echo off

"powershell.exe" -Command "Set-SmbClientConfiguration -DisableCompression 1 -Force"
"powershell.exe" -Command "Set-SmbClientConfiguration -Smb2DialectMax "SMB311" -Smb2DialectMin "SMB311" -Force"
"powershell.exe" -Command "Set-SmbClientConfiguration -EnableInsecureGuestLogons 0 -Force"
"powershell.exe" -Command "Set-SmbClientConfiguration -RequireEncryption  0 -Force"
"powershell.exe" -Command "Set-SmbClientConfiguration -BlockNTLM 1 -Force"

"powershell.exe" -Command "Set-SmbServerConfiguration -DisableCompression 1 -Force"
"powershell.exe" -Command "Set-SmbServerConfiguration -Smb2DialectMax "SMB311" -Smb2DialectMin "SMB311" -Force"

PAUSE

:: End
"%UserProfile%\Downloads\SMB Tweaks.bat"
/srv/www/wiki/data/pages/windows/notes/smb.txt · Last modified: by Sean Rhone