mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-16 23:51:18 +02:00
Rename folder Docs to docs
This commit is contained in:
108
docs/list-fritzbox-devices.md
Normal file
108
docs/list-fritzbox-devices.md
Normal file
@ -0,0 +1,108 @@
|
||||
*list-fritzbox-devices.ps1*
|
||||
================
|
||||
|
||||
This PowerShell script lists FRITZ!Box's known devices.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
```powershell
|
||||
PS> ./list-fritzbox-devices.ps1 [[-Username] <String>] [[-Password] <String>] [<CommonParameters>]
|
||||
|
||||
-Username <String>
|
||||
Specifies the user name to FRITZ!Box
|
||||
|
||||
Required? false
|
||||
Position? 1
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
|
||||
-Password <String>
|
||||
Specifies the password to FRITZ!Box
|
||||
|
||||
Required? false
|
||||
Position? 2
|
||||
Default value
|
||||
Accept pipeline input? false
|
||||
Accept wildcard characters? false
|
||||
|
||||
[<CommonParameters>]
|
||||
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||
```
|
||||
|
||||
Example
|
||||
-------
|
||||
```powershell
|
||||
PS> ./list-fritzbox-devices.ps1
|
||||
|
||||
```
|
||||
|
||||
Notes
|
||||
-----
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
|
||||
Related Links
|
||||
-------------
|
||||
https://github.com/fleschutz/PowerShell
|
||||
|
||||
Script Content
|
||||
--------------
|
||||
```powershell
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Lists FRITZ!Box's known devices
|
||||
.DESCRIPTION
|
||||
This PowerShell script lists FRITZ!Box's known devices.
|
||||
.PARAMETER Username
|
||||
Specifies the user name to FRITZ!Box
|
||||
.PARAMETER Password
|
||||
Specifies the password to FRITZ!Box
|
||||
.EXAMPLE
|
||||
PS> ./list-fritzbox-devices.ps1
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz | License: CC0
|
||||
#>
|
||||
|
||||
#Requires -Version 3
|
||||
|
||||
param([string]$Username = "", [string]$Password = "")
|
||||
|
||||
if ($Username -eq "") { $Username = read-host "Enter username for FRITZ!Box" }
|
||||
if ($Password -eq "") { $Password = read-host "Enter password for FRITZ!Box" }
|
||||
|
||||
write-progress "Contacting FRITZ!Box ..."
|
||||
[string]$HostURL = "https://fritz.box:49443"
|
||||
[string]$SOAPAction="urn:dslforum-org:service:Hosts:1#X_AVM-DE_GetHostListPath"
|
||||
[string]$SOAPrequest = @"
|
||||
<?xml version="1.0"?>
|
||||
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" s:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
||||
<s:Body>
|
||||
<u:X_AVM-DE_GetHostListPath xmlns:u="urn:dslforum-org:service:Hosts:1" />
|
||||
</s:Body>
|
||||
</s:Envelope>
|
||||
"@
|
||||
|
||||
$SecurePassword = $Password | ConvertTo-SecureString -AsPlainText -Force
|
||||
$Credentials = New-Object System.Management.Automation.PSCredential -ArgumentList $Username, $SecurePassword
|
||||
|
||||
$XmlResult = invoke-restMethod `
|
||||
-Method POST `
|
||||
-Headers @{'SOAPAction'=($SOAPAction)} `
|
||||
-Uri ($HostURL+"/upnp/control/hosts") `
|
||||
-Credential $Credentials `
|
||||
-ContentType 'text/xml' `
|
||||
-Body $SOAPrequest
|
||||
|
||||
$HostList = invoke-restMethod -Uri ($HostURL+($XmlResult.Envelope.Body.'X_AVM-DE_GetHostListPathResponse'.'NewX_AVM-DE_HostListPath'))
|
||||
|
||||
$HostTable = $HostList.List.Item.GetEnumerator()
|
||||
|
||||
$HostTable | format-table -property Active,IPAddress,MACAddress,HostName,InterfaceType,X_AVM-DE_Speed
|
||||
|
||||
exit 0 # success
|
||||
```
|
||||
|
||||
*(generated by convert-ps2md.ps1 using the comment-based help of list-fritzbox-devices.ps1 as of 10/19/2023 08:11:39)*
|
Reference in New Issue
Block a user