Install-Service.psd1

#
# Module manifest for module 'module'
#
# Generated by: pawel.wujczyk
#
# Generated on: 2/15/2018 12:24:16 PM
#

@{

# Script module or binary module file associated with this manifest.
RootModule = 'Install-Service.psm1'

# Version number of this module.
ModuleVersion = '1.0.8'

# ID used to uniquely identify this module
GUID = 'ab4c744c-e8bd-4f61-b856-4895037eca5d'

# Author of this module
Author = 'Pawel Wujczyk'

# Description of the functionality provided by this module
Description = 'Install/uninstall Windows service using InstallUtil.exe tool.'

# Functions to export from this module
FunctionsToExport = @('Install-Service','Uninstall-Service','Install-ServiceIfNotInstalled')

# Cmdlets to export from this module
CmdletsToExport = '*'

# List of all files packaged with this module
FileList = @('InstallUtil.exe')

# HelpInfo URI of this module
HelpInfoURI = 'http://www.productivitytools.tech/install-service/'

PrivateData = @{

    PSData = @{

        # Tags applied to this module. These help with module discovery in online galleries.
        Tags = @("Uninstall","Install","Service")

        # A URL to the main website for this project.
        ProjectUri = 'http://www.productivitytools.tech/install-service/'

    } # End of PSData hashtable

} # End of PrivateData hashtable


}