-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathWifiTools.psd1
44 lines (34 loc) · 1.92 KB
/
WifiTools.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@{
RootModule="WifiTools.psm1"
GUID="488127aa-8772-4319-9a62-31c726c09d1a"
Author="Krisztian Buscsei"
ModuleVersion="1.8.4"
Description="A set of tools that can simplify handle Wi-Fi profiles, connection. Also additional tools that closely related to networking and Wi-Fi."
# Private data to pass to the module specified in RootModule/ModuleToProcess
PrivateData = @{
# PSData is module packaging and gallery metadata embedded in PrivateData
# It's for rebuilding PowerShellGet (and PoshCode) NuGet-style packages
# We had to do this because it's the only place we're allowed to extend the manifest
# https://connect.microsoft.com/PowerShell/feedback/details/421837
PSData = @{
# The primary categorization of this module (from the TechNet Gallery tech tree).
#Category = ""
RequiredAssemblies = @('ManagedWifi.dll', 'WIFI-WPS.exe', 'Windows.winmd', 'System.Runtime.WindowsRuntime.dll')
# RequiredAssemblies = @('ManagedWifi.dll')
# Keyword tags to help users find this module via navigations and search.
Tags = @("PowerShell", "WiFi")
# The web address of an icon which can be used in galleries to represent this module
#IconUri = "http://pesterbdd.com/images/Pester.png"
# The web address of this module's project or support homepage.
ProjectUri = "https://github.com/buscseik/WifiTools/"
# The web address of this module's license. Points to a page that's embeddable and linkable.
LicenseUri = "https://github.com/buscseik/WifiTools/blob/master/LICENSE"
# Release notes for this particular version of the module
#ReleaseNotes = $True
# If true, the LicenseUrl points to an end-user license (not just a source license) which requires the user agreement before use.
# RequireLicenseAcceptance = ""
# Indicates this is a pre-release/testing version of the module.
IsPrerelease = 'False'
}
}
}