我一直在研究PowerShell脚本。因为我想稍微模块化/组织我的代码,所以我决定尝试制作一些模块来分割我的脚本。
我正在运行powershell 5.1.14393.1066
现在我有一个主脚本导入了它需要的模块,但它似乎无法找到我的函数Is-Template-Name-Set
:
Is-Template-Name-Set : The term 'Is-Template-Name-Set' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At C:\Users\niels\test1\TemplateScript.ps1:6 char:5
+ If (Is-Template-Name-Set) {
+ ~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Is-Template-Name-Set:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Is-Template-Name-Set
在UtilityTemplateModule中定义。模块文件(UtilityTemplateModule.psm1
):
Function Get-ScriptDirectory() {
return Split-Path $script:MyInvocation.MyCommand.Path
}
Function Is-Template-Name-Set($templateName) {
$templateName -And $templateName -is [String] -And -Not $templateName -eq ""
}
Export-ModuleMember -Function 'Get-*'
Export-ModuleMember -Function 'Is-*'
UtilityTemplateModule说明(UtilityTemplateModule.psd1
文件):
@{
ModuleVersion = '1.0'
GUID = '082fc8f7-4c7f-4d9f-84a8-b36c3610cdfe'
Author = 'Niels Bokmans'
CompanyName = 'Bluenotion'
Copyright = 'Copyright (c) 2017'
Description = 'General utilities used by the other template modules.'
# Functions to export from this module
FunctionsToExport = '*'
# Cmdlets to export from this module
CmdletsToExport = '*'
# Variables to export from this module
VariablesToExport = '*'
# Aliases to export from this module
AliasesToExport = '*'
}
我的主要剧本:
param([String]$templateName="")
Import-Module BuildTemplateModule
Import-Module CdnTemplateModule
Import-Module UtilityTemplateModule
If (Is-TemplateNameSet -templateName $templateName) {
echo "Template name is set!"
$templateId = GetTemplateId -templateName $templateName
if (-Not $templateId -eq -1) {
Restore-Packages
Run-Build-Tasks
Minify-Require-Js
Clean-Downloaded-Dependencies
Copy-Offline-Page
#Deploy $response.templateId
}
} else {
echo "Template name not set!"
exit
}
我对任何PowerShell工作都很陌生,我不确定为什么功能无法识别。我认为我做得对,在模块本身导出函数,也只是导出描述文件中的所有内容(?,.psd1文件)。
任何建议都将不胜感激。
答案 0 :(得分:0)
根据你对system32 powershell modules目录的评论,我想你可能会把你的模块放在错误的目录中。
Per:https://msdn.microsoft.com/en-us/library/dd878350(v=vs.85).aspx
$PSHome\Modules (%Windir%\System32\WindowsPowerShell\v1.0\Modules)
此位置保留给Windows附带的模块。不要将模块安装到此位置。
我建议将模块移到:
$Home\Documents\WindowsPowerShell\Modules (%UserProfile%\Documents\WindowsPowerShell\Modules)
或者
$Env:ProgramFiles\WindowsPowerShell\Modules (%ProgramFiles%\WindowsPowerShell\Modules)
在任何缺少的路径中创建任何目录(例如,Documents
下\WindowsPowerShell\Modules
文件夹通常不存在。
或者,您可以将模块放在自定义路径中,并将该路径添加到PSModulePath
环境变量中。