Windows
-
netsh advfirewall 명령어를 이용한 윈도우 방화벽 켜기/끄기Windows/Windows 2008 , 2012 2020. 1. 28. 18:49
netsh advfirewall set currentprofile state [ on | off ] netsh advfirewall set --------------------------------------------- ( profile 별 세팅이나 전역 세팅) currentprofile ------------------------- (활성화 profile 세팅) state [ on | off ] ---- (온/오프)
-
[ PowerShell ] 윈도우 방화벽 Enable / DisableWindows/Powershell 2020. 1. 20. 18:50
Set-NetFirewallProfile -Name [ Domain | Public | Private ] -Enabled [ True | False ] 1. windows Firewall ON PS C:\> Set-NetFirewallProfile -Name Domain,Public,Private -Enabled True 2. windows Firewall OFF PS C:\> Set-NetFirewallProfile -Name Domain,Public,Private -Enabled False
-
[ Powershell ] 파워쉘 버전 보기Windows/Powershell 2019. 12. 17. 10:35
PS C:\> host | findstr "Version" Version : 2.0
-
윈도우 명령어 [ find ] - 파일에서 텍스트 찾기Windows/Windows 2008 , 2012 2019. 10. 14. 19:44
find : 파일에서 텍스트 찾는 명령어 /V 지정한 문자열을 포함하지 않는 라인을 표시 /C 지정한 문자열을 포함하는 라인 수를 표시 /N 지정한 문자열을 포함하는 맨 앞에 라인 번호를 표시 /I 대/소문자 구분하지 않고, 찾기 example.txt python is beautiful python is storng python is effective pytho is beautiful pytho is storng pytho is effective find 옵션 없이 사용. (python이라는 문자열 포함하는 라인 출력) C:\>find "python" example.txt ---------- EXAMPLE.TXT python is beautiful python is storng python is effe..