Skip to content

Instantly share code, notes, and snippets.

@torgro
Created January 30, 2017 23:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save torgro/ded148cd689b150168fe34e24f2030d6 to your computer and use it in GitHub Desktop.
Save torgro/ded148cd689b150168fe34e24f2030d6 to your computer and use it in GitHub Desktop.
@{
# Script module or binary module file associated with this manifest
ModuleToProcess = 'Microsoft.ResourceManagement.Automation.dll'
# Version number of this module.
ModuleVersion = '1.0'
# ID used to uniquely identify this module
GUID = '73fec12a-fd2a-4ffc-a9e3-9ad6f78bf78b'
# Author of this module
Author = 'someone'
# Company or vendor of this module
CompanyName = 'Firstpoint'
# Copyright statement for this module
Copyright = 'NA'
# Description of the functionality provided by this module
Description = 'FIMmodule'
# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '2.0'
# Minimum version of the common language runtime (CLR) required by this module
CLRVersion = '2.0'
# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @()
# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = "Microsoft.ResourceManagement.Automation.dll","Microsoft.ResourceManagement.dll","Microsoft.IdentityManagement.Logging.dll"
# Type files (.ps1xml) to be loaded when importing this module
#TypesToProcess = ''
# Format files (.ps1xml) to be loaded when importing this module
#FormatsToProcess = ''
# Modules to import as nested modules of the module specified in ModuleToProcess
#NestedModules = ''
# 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 = '*'
# List of all modules packaged with this module
#ModuleList = @()
# List of all files packaged with this module
#FileList = ''
# Private data to pass to the module specified in ModuleToProcess
#PrivateData = ''
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment