我正在尝试从PowerShell搜索Lotus Notes数据库并获取"Type Mismatch. (Exception from HResult: 0x80020005 (DISP_E_TYPEMISMATCH)" At line 1: char:1
。
设置代码:
$notesSession = New-Object -ComObject Lotus.NotesSession
$notesSession.Initialize()
$notesDb = $notesSession.GetDatabase(..., ...)
我在尝试时遇到错误......
$results = $notesDb.Search("text", $null, 0)
$results = $notesDb.Search("text", $(Get-Date), 0)
$results = $notesDb.Search("text", $([System.DateTime]::Now), 0)
有人能发现错误吗?我认为错误与日期参数有关,因此我多次尝试。
答案 0 :(得分:2)
错误似乎来自.Search
wants a notesDateTime
object for that parameter这一事实。所以理论上你只需要创建一个notesdatetime
对象并将其传递给搜索方法。
$searchDate = $notesSession.CreateDateTime(get-date -f "yyyy-MM-dd")
我无法测试这个,也不确定如何从$ null传递给CreateDateTime方法获得null返回。
Unsure if this is the correct reference for the COM implementation但是来自参数部分
您希望对象表示的日期和时间。如果使用空字符串(""),则日期将设置为通配符日期。 Notes日期时间表达式"今天," "明天"和"昨天"得到支持。