Import-Module - 파워쉘 모듈
- 공통 모듈에 해당하는 파일
CommonFunction.psm1 파일
Function TestExecuteFunction {
param([string]$Str);
Write-Host $Str;
}
- 공통 모듈을 이용하는 파일
CommonFunctionTest.ps1 파일
Import-Module "D:\myScript\CommonFunction.psm1"; <- 이 부분에서 로드하려는 모듈을 지정한다.
Get-Command -Module CommonFunction
# 로드된 모듈의 Function을 실행한다.
TestExecuteFunction 'Test message!'
# 모듈의 Function을 사용하지 않으면 모듈 해제 한다.
Remove-Module CommonFunction
파워쉘을 편집시 ISE 모드로 실행하면 위와 같이 화면에서 편리하게 사용할 수 있다.
'기타' 카테고리의 다른 글
SMTPDiag Util - Exchange 메일 점검 프로그램 (0) | 2013.11.05 |
---|---|
Pentaho Mondrian - Open source analysis OLAP server (0) | 2013.10.25 |
[PowerShell] Invoke-Command를 통해서 실행 후 결과값 받아 오기와 변수로 실행 구문 넘기기 (0) | 2013.10.16 |
내컴에선 잘되던데? - vagrant로 서버와 동일한 개발환경 꾸미기 (0) | 2013.09.30 |
Windows 8.1 RTM and Windows 2012 R2 RTM (0) | 2013.09.11 |