Windows Sever
-
Windows Server 파일을 S3 버킷으로 카피하는 Batch 파일 작성Windows Sever 2022. 1. 5. 15:49
[목표] 특정 Windows Server 디렉토리의 파일을 S3 버킷으로 카피하는 Batch 파일을 작성한다. 본 내용의 예시는 금일 날짜(생성된 지 0일 지난)의 파일을 카피의 대상으로 한다. [내용] @set YEAR=%date:~0,4% @set MONTH=%date:~5,2% @set DAY=%date:~8,2% @set POSTFIX=%YEAR%-%MONTH%-%DAY%/ ECHO %POSTFIX% forfiles /p C:\example /s /d 0 /c "cmd /c aws s3 cp @file s3://example-bucket/%POSTFIX%" PAUSE
-
Windows Server RDP 포트번호 변경Windows Sever 2020. 5. 13. 15:39
[목표] Windows Server의 RDP 원격접속의 포트번호(3389)를 임의의 포트번호로 수정. [단계] 1. 명령 프롬프트 실행 2. regedit (레지스트리 편집기) 3. HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer\WinStations\RDP-Tcp\PortNumber 4. 10진수 5. 값 데이터 수정 6. 확인 7. 서버 재시작 [참고] https://support.microsoft.com/en-us/help/947709/how-to-use-the-netsh-advfirewall-firewall-context-instead-of-the-netsh https://support.microsoft.com/en-us/he..
-
Windows Server 임의의 포트번호 방화벽 해제Windows Sever 2020. 5. 13. 15:37
[목표] 명령어를 통해 특정 포트번호에 대한 방화벽을 해제한다. [단계] 1. 명령 프롬프트 2. netsh advfirewall 명령어 netsh advfirewall firewall add rule name="Open Port ()" dir=in action=allow protocol=TCP localport=() [참고] www.support.microsoft.com/en-us/help/947709/how-to-use-the-netsh-advfirewall-firewall-context-instead-of-the-netsh https://support.microsoft.com/en-us/help/947709/how-to-use-the-netsh-advfirewall-firewall-context-i..