⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sol12-2.vbs

📁 Apress - Managing Enterprise Systems With The Windows Script Host Source Code
💻 VBS
字号:
Dim objSession, objShell, strProf

Set objShell = CreateObject("WScript.Shell")
' create a MAPI session 
Set objSession = CreateObject("MAPI.Session")

If InStr(objSession.OperatingSystem, "NT") > 0 Then
  strProf = "HKCU\Software\Microsoft\Windows NT\CurrentVersion\" & _
         "Windows Messaging Subsystem\Profiles\DefaultProfile"
Else
  strProf = "HKCU\Software\Microsoft\Windows Messaging Subsystem" & _
        "\Profiles\DefaultProfile"
End If
'logon using the default profile name
objSession.Logon objShell.RegRead(strProf)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -