이벤트 로그 의 내용 을 파워쉘로 긁어 오려면
get-eventlog -log Application -source MSSQLSERVER -newest 1
처럼 해야 하며,
해당 내용중 특정 필드 값만 을 가져오려면.. 이렇게...
$a=get-eventlog -log Application -source MSSQLSERVER -newest 1
$a | format-list -property message
근데
해당 값에 대한 속성값을 다 보고싶을땐.
$a | format-list -property *
요렇게.. 하면 된다..
다른 참고는 아래내용 참조..
http://technet.microsoft.com/ko-KR/library/dd315250.aspx
해당 변수를 txt 파일에 넣기.
처럼 해야 하며,
해당 내용중 특정 필드 값만 을 가져오려면.. 이렇게...
$a=get-eventlog -log Application -source MSSQLSERVER -newest 1
$a | format-list -property message
근데
해당 값에 대한 속성값을 다 보고싶을땐.
$a | format-list -property *
요렇게.. 하면 된다..
다른 참고는 아래내용 참조..
http://technet.microsoft.com/ko-KR/library/dd315250.aspx
C:\Users\Administrator>PowerShell.exe "set-executionpolicy remotesigned ; $a=get
-eventlog -log Application -source MSSQLSERVER -newest 1 ;$b=$a | format-list -p
roperty eventid ; $b|format-list > c:\1.txt"해당 변수를 txt 파일에 넣기.
'Server Story.... > Windows Server' 카테고리의 다른 글
80 port used but not found and 80 port pid 4 (0) | 2012.06.07 |
---|---|
Usb 파티션 조작 안될때. 사용툴 diskpart (0) | 2012.03.28 |
Windows 실행 창 명령어 모음 (0) | 2012.02.13 |
Windows Teamming 랜카드 이중화 (0) | 2011.12.29 |
windows backup script (0) | 2011.11.08 |