新しい Desired 状態の構成を試して、新しいクラス リソースを操作しようとしています。プロセスに関係するすべてのサーバーに WMF 5.0 の運用前プレビューをインストールしました。
クラス リソースをデプロイした Http プル サーバーのセットアップがあります。
ターゲットノードは、このサーバーからリソースを取得するように構成されているようです。
ただし、このクラス リソースを使用するターゲット ノードに構成をプッシュしようとすると、次のエラーが発生します。
モジュール ファイルModuleNameには、必要なバージョン 1.0 のモジュールが含まれていませんでした。構成に必要なモジュールの依存関係をインストールできませんでした。
誰かがこのエラーに遭遇したことがありますか、それが何を意味するのか知っていますか?
SxSecurity.psm1 ファイルには、必要なバージョン番号を与える次のものが含まれています。
@{
# Script module or binary module file associated with this manifest.
RootModule = 'SxSecurity.psm1'
# Version number of this module.
ModuleVersion = '1.0'
# ID used to uniquely identify this module
GUID = '00293be8-be0b-4902-9b49-12e32533a414'
# Author of this module
Author = 'Alexis.Coles'
# Company or vendor of this module
CompanyName = '****'
# Copyright statement for this module
Copyright = '(c) 2015 ****. All rights reserved.'
# Description of the functionality provided by this module
Description = 'Security dsc resources'
# 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 = '*'
# DSC resources to export from this module
DscResourcesToExport = @('SxPfxImport')
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{
PSData = @{
} # End of PSData hashtable
}
}