删除PowerShell脚本模块时如何运行自定义方法(自行清理后)

时间:2016-03-09 15:51:41

标签: powershell

PowerShell脚本模块在删除代码时是否有办法运行某些代码?

示例:

Import-Module my-module.psm1
Remove-Module my-module
# At this point I want my-module.psm1 to be notified
# that it is being unloaded so it can run some clean up code.

我当前的用例是一个添加断点的模块,我希望它在删除模块时调用Remove-PSBreakpoint,这样就不会在范围内留下杂乱。

1 个答案:

答案 0 :(得分:3)

看看将这一行放入你的模块。

$MyInvocation.MyCommand.ScriptBlock.Module.OnRemove = { ## Some code }