HostsFile.psd1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
@{ RootModule = 'HostsFile.psm1' ModuleVersion = '4.7.1.99' GUID = '8dc3dd5c-5ae8-4198-a8f2-2157ab6b725c' Author = 'Raimund Andree, Per Pedersen' CompanyName = 'AutomatedLab Team' Copyright = '2018' Description = 'This module provides management of hosts file content' PowerShellVersion = '3.0' DotNetFrameworkVersion = '4.0' ModuleList = @('HostsFile') FunctionsToExport = 'Add-HostEntry', 'Clear-HostFile', 'Get-HostEntry', 'Open-HostFile', 'Remove-HostEntry', 'Save-HostFile' FileList = @('HostsFile.psm1', 'HostsFile.psd1') } |