1. 개요 System.Net.HttpListener는 .NET Framework 2.0에서 도입된 클래스인데, 파워셸과 닷넷만 설치되어 있으면(대부분 Windows 7 이상에서) 사용할 수 있습니다. 이 클래스를 이용해서 현재 디렉터리에 있는 파일을 Plaintext로 보여주는 간단한 웹 서버를 만들 수 있습니다. 2. 예제 $listener = New-Object System.Net.HttpListener $listener.Prefixes.Add("http://localhost:8080/") $directoryroot = (pwd).Path try { $listener.Start() } catch { "Unable to start listener." exit 1 } while ($listener.Is..