Windows Power shell 을 열고


Type null > 로그파일명




PS c:\logs > Type null > ./error.log



블로그 이미지

엘로드넷

,

Windows Power shell 에서


Get-Content 로그파일명 -Wait




PS C:\logs > Get-Content ./error.log -Wait



블로그 이미지

엘로드넷

,

2. 최대 전송가능 용량 설정


기본적으로는 : 30M

1G로 늘리기

커맨드 모드에서 

c:\windows\system32\inetsrv\appcmd set config /section:requestfiltering /requestlimits.maxallowedcontentlength:1073741824

블로그 이미지

엘로드넷

,

ASP에러메세지 출력(Windows Server 2008)


커맨드에서

%windir%\system32\inetsrv\appcmd set config -section:asp -scriptErrorSentToBrowser:true
구성 커밋 경로 "MACHINE/WEBROOT/APPHOST"에서  "MACHINE/WEBROOT/APPHOST"의 "system.webServer/asp"섹션에 구성 변경을 적용했습니다.




블로그 이미지

엘로드넷

,