나는 당신이이 질문을 처음했을 때를 기억하지만, 마침내 그것을 알아 내기 위해 나왔습니다. 그것이 여전히 당신이나 다른 사람에게 사용되기를 바랍니다!
WLAN / WAN 연결 (예 : SSID) 인 ConnectionProfile 객체 의 GetLocalUsage 메서드를 호출하여이 데이터에 액세스 할 수 있습니다 . GetLocalUsage는 두 개의 DateTime 매개 변수를 사용하며 지정된 간격 동안 보내고받은 데이터 양을 포함 하는 DataUsage 개체를 반환 합니다. NetworkInformation 의 GetConnectionProfiles 메소드를 호출하여 ConnectionProfile 오브젝트 목록을 얻을 수 있습니다 .
데이터를 검색하고 객체를 반환하는 다음 함수를 작성했습니다. 하나 이상의 SSID를 전달하고 선택적으로 DateTime을 시작 및 중지하십시오.
function Get-EstimatedDataUsage()
{
Param(
[Parameter(Position=0, Mandatory=$true, ValueFromPipeline=$true, ValueFromPipelineByPropertyName=$true)]
[ValidateNotNullOrEmpty()]
[String]$ProfileName,
[Parameter(Position=1, Mandatory=$false)]
[ValidateNotNullOrEmpty()]
[DateTime]$From,
[Parameter(Position=2, Mandatory=$false)]
[ValidateNotNullOrEmpty()]
[DateTime]$To
)
Process
{
foreach($profile in $ProfileName)
{
try
{
[void][Windows.Networking.Connectivity.NetworkInformation,Windows,ContentType=WindowsRuntime]
$ConnectionProfiles = [Windows.Networking.Connectivity.NetworkInformation]::GetConnectionProfiles() | Where-Object ProfileName -EQ $profile
}
catch
{
Write-Error 'Unable to create instance of Windows.Networking.Connectivity.NetworkInformation.'
continue
}
foreach($ConnectionProfile in $ConnectionProfiles)
{
$ProfileName = $ConnectionProfile.ProfileName
if($From -eq $null)
{
try
{
$ResetTime = Get-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Network\DataUsage\Wlan\$ProfileName -Name ResetTime -ErrorAction Stop | Select-Object -ExpandProperty ResetTime
$From_determined = [datetime]::FromFileTime($ResetTime)
}
catch
{
$From_determined = [datetime]::FromFileTime(0)
}
}
else
{
$From_determined = $From
}
if($To -eq $null)
{
$To_determined = Get-Date
}
else
{
$To_determined = $To
}
$usage = $ConnectionProfile.GetLocalUsage($From_determined, $To_determined)
$op = '' | select Name,Received,Sent,From,To
$op.Name = $ProfileName
$op.Received = $usage.BytesReceived
$op.Sent = $usage.BytesSent
$op.From = $From_determined
$op.To = $To_determined
$op
}
}
}
}