I am trying to extract name and path for each System login item. From the MBS Documentation I have found the code quoted below, which gives the name. But I have not been able to find out have to obtain the path.
l=new MyLSSharedFileListMBS(6)
if l.Handle=0 then
MsgBox “Failed to get list.”
else
dim a(-1) as LSSharedFileListItemMBS = l.Snapshot
dim lines(-1) as string
for each x as LSSharedFileListItemMBS in a
lines.append x.DisplayName
next
MsgBox Join(lines, EndOfLine)
end if
Any help will be greatly appreciated.
Strange