Skip to content

Commit

Permalink
Removenetscan (#55)
Browse files Browse the repository at this point in the history
* Reset Password

* Stats.

* Remove Network Scan.
  • Loading branch information
adamdriscoll authored Jul 22, 2024
1 parent 8098054 commit c073b16
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 654 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = '.\Apps.PowerShell.NetworkUtilities.psm1'

# Version number of this module.
ModuleVersion = '0.0.2'
ModuleVersion = '0.0.3'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,6 @@ function New-NetworkUtilityApp {
}
}
}
New-UDTab -Text 'Network Scanner' -Content {
New-UDForm -Children {
New-UDTextbox -Label "Start IP Address" -Id 'scanStartIp' -Value '192.168.0.1'
New-UDTextbox -Label "End IP Address" -Id 'scanEndIp' -Value '192.168.0.255'
} -OnSubmit {
$Session:NetworkScan = & "$AppRoot\IPv4NetworkScan.ps1" -StartIPv4Address $EventData.scanStartIp -EndIPv4Address $EventData.scanEndIp -IncludeInactive
Sync-UDElement -Id 'netScanOutput'
}

New-UDDynamic -Id 'netScanOutput' -Content {
New-UDTable -Data $Session:NetworkScan -ShowPagination -ShowExport
}
}
New-UDTab -Text 'Speed Test' -Content {
New-UDButton -Text 'Run Speed Test' -OnClick {
Write-Progress -Activity "Running speed test..."
Expand Down
Loading

0 comments on commit c073b16

Please sign in to comment.