page432.vbs
来自「Apress - Managing Enterprise Systems Wit」· VBS 代码 · 共 13 行
VBS
13 行
Set objSession = CreateObject("MAPI.Session")
objSession.Logon
'loop through an
For Each objInfoStore In objSession.Infostores
WScript.Echo objInfoStore.Name
Next
'reference the Personal Folder Infostore by name..
Set objInfoStore = objSession.InfoStores.Item("Personal Folder")
'reference the first Infostore object in the InfoStores collection
Set objInfoStore = objSession.InfoStores.Item(1)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?