Import-Module - 파워쉘 모듈


참조 URL
  1. http://msdn.microsoft.com/en-us/library/windows/desktop/dd878340(v=vs.85).aspx
  2. http://msdn.microsoft.com/en-us/library/windows/desktop/dd901839(v=vs.85).aspx



- 공통 모듈에 해당하는 파일


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 모드로 실행하면 위와 같이 화면에서 편리하게 사용할 수 있다.







+ Recent posts