Hyper-V 가상 스위치 관리, PowerShell로 자동화 끝내기 윈도우 서버 Hyper-V 환경에서 가상 스위치(vSwitch)를PowerShell로 자동으로 생성하고 관리하는 실전 스크립트 예제입니다.테스트 환경 구축이나 대규모 배포 시 작업 효율을 극대화할 수 있습니다.실전 코드 예시# 1. 물리 네트워크 어댑터 확인Get-NetAdapter2. 외부 네트워크용 가상 스위치 생성New-VMSwitch -Name "External-vSwitch" -NetAdapterName "Ethernet 2" -AllowManagementOS $true3. 내부 네트워크용 가상 스위치 생성New-VMSwitch -Name "Internal-vSwitch" -SwitchType Internal4. 프라이빗 네..