为什么我的 PowerShell 搜索没有 Return 来自我的 DLNA 服务器的任何结果?
Why does my PowerShell Search Not Return Any Results From My DLNA Server?
我正在尝试使用 PowerShell 在我的 DLNA 设备中搜索视频列表。我的代码是:
InvokeAction 执行成功,但没有return任何数据。
if ($service.Id -like "*ContentDirectory*")
{
$objectID="0"
$browseFlag= "upnp:class='object.item.videoItem.movie'"
$filter = ""
$startingIndex = 0
$requestedCount = 0
$sortCriteria=""
$myInObject = @($objectID, $browseFlag, $filter, $startingIndex, $requestedCount, $sortCriteria)
$result=""
$numberReturned=0
$totalMatches=0
$updateId=0
$outArgs = @($result, $numberReturned, $totalMatches, $updateId)
$response = $service.InvokeAction("Search", $myInObject, [ref]$outArgs)
Write-Host $outArgs[0]
Write-Host $outArgs[1]
Write-Host $outArgs[2]
Write-Host $outArgs[3]
}
任何人都可以向我解释我的代码有什么问题吗?我想知道它是否是 $browseFlag 变量的格式,但我已经尝试了我能想到的每一种单引号和双引号的组合,并且 none 它们起作用了。
像往常一样,我在发布问题后不久就偶然发现了答案。
我所做的只是改变
$outArgs = @($result, $numberReturned, $totalMatches, $updateId)
至
$outArgs = $null
我正在尝试使用 PowerShell 在我的 DLNA 设备中搜索视频列表。我的代码是:
InvokeAction 执行成功,但没有return任何数据。
if ($service.Id -like "*ContentDirectory*")
{
$objectID="0"
$browseFlag= "upnp:class='object.item.videoItem.movie'"
$filter = ""
$startingIndex = 0
$requestedCount = 0
$sortCriteria=""
$myInObject = @($objectID, $browseFlag, $filter, $startingIndex, $requestedCount, $sortCriteria)
$result=""
$numberReturned=0
$totalMatches=0
$updateId=0
$outArgs = @($result, $numberReturned, $totalMatches, $updateId)
$response = $service.InvokeAction("Search", $myInObject, [ref]$outArgs)
Write-Host $outArgs[0]
Write-Host $outArgs[1]
Write-Host $outArgs[2]
Write-Host $outArgs[3]
}
任何人都可以向我解释我的代码有什么问题吗?我想知道它是否是 $browseFlag 变量的格式,但我已经尝试了我能想到的每一种单引号和双引号的组合,并且 none 它们起作用了。
像往常一样,我在发布问题后不久就偶然发现了答案。
我所做的只是改变
$outArgs = @($result, $numberReturned, $totalMatches, $updateId)
至
$outArgs = $null