전체 글 (354) 썸네일형 리스트형 변수 콘솔로그 보기 window._satellite = { track : function( msg ){ console.log(msg) } }; input box, popup #input box[void][Reflection.Assembly]::LoadWithPartialName('Microsoft.VisualBasic')$title = 'Genesis Rollout Config'$msg = '[Genesis] 확산할 국가 코드를 입력하십시오:'$text = [Microsoft.VisualBasic.Interaction]::InputBox($msg, $title) echo $text #popup$wshell = New-Object -ComObject Wscript.Shell$wshell.Popup($text,0,"Done",0x1246) $wshell.Popup($text,0,"Done",0x1246) Popup Methodhttps://msdn.microsoft.com/en.. PowerShell 기본문법 기본명령형식 : cmdlet(command-let)정규식 표현, 파이프 연결가능 명령어의 도움말 : Get-Help 명령어 // o : -full = 도움말 전체 스크립트실행 보안해제 PS > Set-ExecutionPolicy RemoteSignedPS > Set-ExecutionPolicy Unrestricted // 공유폴더에 위치한 서명안된 스크립트 실행 변수지정PS > $변수명 = 내용PS > [변수타입]$변수명 = 내용 // 변수타입 지정 : xml, int, char, string ...변수명은 영문 및 한글, 숫자로만 된 이름도 가능 배열사용@으로 배열을 표현. 변수에 저장해야 함. 참조는[참조]형식PS > $ar = @(1,1,1,1,)PS >echo $ar[0] PS > $ar = @(.. wake on lan http://msi.waycos.co.kr/bbs/board.php?bo_table=fnq&wr_id=88 참고 예제 링크 특정파일들을 여러 폴더에 복사하는 PowerShell Script http://simmanix.tistory.com/39 배치 파일(Batch File), 주석문/주석 처리 방법; 코멘트,설명 문 달기; Comment http://mwultong.blogspot.com/2006/07/batch-file-comment.html 파워쉘 실용예제 http://blog.naver.com/h2d2002/220488184488 about_If https://technet.microsoft.com/ko-kr/library/dd315286.aspx Powershell 에서의 정규 표현식 (Regular Expressions) https://talsu.net/?p=1016 Powershell로 텍스트 치환하기 http:.. AEM 6 SP2 - View (Tail) CQ Log Files http://experience-aem.blogspot.kr/2015/03/aem-6-sp2-view-tail-cq-log-files.html AEM 6 SP2 - View (Tail) CQ Log FilesGoal Quick post on creating a Tail Log servlet for examining the logs on remote CQ instances; if you are debugging issues on a friend's CQ instance or QA, deploying this servlet could be helpful. Ootb, logs can be viewed by logging into felix console (http://localhost:4502/system/c.. isNumeric - 문자인지 숫자인지 구분 문자인지 숫자인지 구분 public static boolean isNumeric(String str) { try { double d = Double.parseDouble(str); } catch(NumberFormatException nfe) { return false; } return true; } 도커(Docker) 도커 무작정 따라하기 http://www.slideshare.net/pyrasis/docker-fordummies-44424016 가장 빨리 만나는 도커(Docker) - 책http://www.pyrasis.com/private/2014/11/30/publish-docker-for-the-really-impatient-book 이전 1 ··· 21 22 23 24 25 26 27 ··· 45 다음