검색결과 리스트
웹소스에 해당되는 글 1건
- 2011.08.17 PowerShell로 웹소스 가져오기
글
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
$objReq = [System.Net.WebRequest]::Create("http://www.google.co.kr")
$objRes = $objReq.GetResponse()
$objReqStrm = $objRes.GetResponseStream()
$objReadStrm = New-Object System.IO.StreamReader $objReqStrm
$strContents = $objReadStrm.ReadToEnd()
$objReadStrm.Close()
$objRes.Close()
Write-Host $strContents
WebSource.ps1
참고 : http://alexgorbatchev.com/SyntaxHighlighter/manual/brushes/powershell.html
'-- PowerShell' 카테고리의 다른 글
powershell로 이벤트로그와 프로세스 구하기 (0) | 2011.08.17 |
---|---|
powershell로 ping 테스트 (0) | 2011.08.17 |
zip파일 다루기 (0) | 2011.08.16 |
복수 개의 파일의 내용을 변경 (0) | 2011.08.16 |
PowerShell 선언된 변수 (0) | 2011.08.16 |
RECENT COMMENT