我们有一组用户在其计算机中存储了Outlook模板(具有相同的名称)。 我想创建一个单击的超链接,它将从他们的机器打开.oft文件,他们可以进一步使用它。基本上我需要知道是否通过使用任何脚本,我们可以获得位置/机器名称。 这可能吗?
答案 0 :(得分:0)
环境变量提供此类信息。
http://www.slipstick.com/developer/windows-environment-variables-outlook-macros/
Sub EnumSEVars()
Dim strVar As String
Dim i As Long
For i = 1 To 255
strVar = Environ$(i)
If LenB(strVar) = 0& Then Exit For
Debug.Print strVar
Next
End Sub
http://www.askvg.com/list-of-environment-variables-in-windows-xp-vista-and-7/