Initial commit. Working and linked on PSGallery

This commit is contained in:
2026-05-15 08:53:21 +08:00
commit 7c77363885
17 changed files with 1109 additions and 0 deletions

33
UnifiCLI.psd1 Normal file
View File

@@ -0,0 +1,33 @@
@{
ModuleVersion = '1.0.0'
GUID = '7b2e4f1a-3c8d-4e9b-a5f2-1d6c8e3b0f4a'
Author = 'Bailey Taylor'
CompanyName = ''
Copyright = ''
Description = 'PowerShell module for managing Unifi Network Controller'
PowerShellVersion = '7.0'
RootModule = 'UnifiCLI.psm1'
FunctionsToExport = @(
'Connect-UnifiController'
'Disconnect-UnifiController'
'Get-UnifiConnectionStatus'
'Get-UnifiSite'
'Get-UnifiDevice'
'Get-UnifiClient'
'Get-UnifiWlan'
'Set-UnifiWlanPassword'
'Set-UnifiDefaultSite'
'Invoke-UnifiCli'
)
AliasesToExport = @('unifi-cli')
PrivateData = @{
PSData = @{
Tags = @('Unifi', 'Network', 'CLI', 'Controller')
ProjectUri = ''
ReleaseNotes = '1.0.0 - Initial release'
}
}
}