-
Windows10 파일공유기능 켜기컴퓨터/윈도우설치 2018. 4. 5. 11:39
http://eddiejackson.net/wp/?p=14163
SMB (Server Message Block)
RS3이하 버전에서는 기본으로 설치되었지만, RS4에서는 이전버전에서의 랜섬웨어 취약점으로 인한 문제 발생으로 설정이 변경됨
제어판 =>프로그램 및 기능 => windows 기능 켜기 / 끄기 항목에서 'SMB 1.0/CiFS 파일 공유지원' 선택하셔서 '확인' ( C:\Windows\System32\OptionalFeatures.exe )
(SMB1 상태확인)
Dism /online /Get-Features /format:table | find "SMB1Protocol"
(Disable SMB1)
Dism /online /Disable-Feature /FeatureName:"SMB1Protocol"
(Enable SMB1)
Dism /online /Enable-Feature /FeatureName:"SMB1Protocol" -All
(SMB1 상태확인)
Get-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"
(Disable SMB1)
Disable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol"
(Enable SMB1)
Enable-WindowsOptionalFeature -Online -FeatureName "SMB1Protocol" -All
댓글