I am creating a form and I need to know which computer the form request comes from so I need to capture the ComputerID. I also want to capture the UserID from the loging. I don’t want them to type in their name. Not sure how to enter this in the vb script.
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Capture Computer ID – Forms (MS Outlook 2000)
Home » Forums » AskWoody support » Productivity software by function » MS Outlook and email programs » Capture Computer ID – Forms (MS Outlook 2000)
- This topic has 12 replies, 3 voices, and was last updated 21 years, 1 month ago.
Viewing 3 reply threadsAuthorReplies-
WSJohnBF
AskWoody LoungerApril 29, 2004 at 7:35 pm #821581The easiest way, if IS always sets these parameters per machine in your entity, is to get them from the environment space:
strUserID = Environ(“username”)
strComputerID = Environ(“computername”)Adjust the environment names as applicable (to see them, at the command line, type SET). (This works in VBA, I assume it’ll be fine in VBS).
If this doesn’t work, there are API ways to get UserID, search the VBA forum, not sure about ComputerID.
-
WSJohnBF
AskWoody LoungerApril 29, 2004 at 7:35 pm #821582The easiest way, if IS always sets these parameters per machine in your entity, is to get them from the environment space:
strUserID = Environ(“username”)
strComputerID = Environ(“computername”)Adjust the environment names as applicable (to see them, at the command line, type SET). (This works in VBA, I assume it’ll be fine in VBS).
If this doesn’t work, there are API ways to get UserID, search the VBA forum, not sure about ComputerID.
-
WSjscher2000
AskWoody LoungerApril 29, 2004 at 8:02 pm #821607(Edited by jscher2000 on 29-Apr-04 14:02. On second thought.)
In a pure VBScript environment, you’d have to go out to the Windows Script Host for this information. Assuming the Outlook Forms security model lets you do that, see post 130373 for some sample code.
Added: Actually, if you can get this information from the Office or Outlook object model instead of Windows Script Host, that might work better. However, I haven’t trawled the object browser to see if it’s there. Please post whatever solution you end up using, as I suspect others might be interested in the same thing in the future.
-
WSJohnBF
AskWoody Lounger -
WSJohnBF
AskWoody Lounger -
WSjscher2000
AskWoody LoungerApril 30, 2004 at 1:51 am #821699VBS doesn’t have much intelligence about the system without invoking other objects. There is a way to access the environment through the Shell, but I haven’t tried to code it up. This page gives an overview of the WSH objects and collections, which can be scripted: Windows Script Host Object Model.
-
WSdreyes
AskWoody Lounger -
WSdreyes
AskWoody Lounger -
WSJohnBF
AskWoody LoungerMay 4, 2004 at 5:39 pm #823241Resurrecting this older thread, I guess I didn’t look far enough for the Outlook User; it’s a Property of NameSpace:
Function GetCurrentUser() As String
Dim objOLApp As Outlook.Application
Dim nsNS As NameSpace
Set objOLApp = CreateObject(“Outlook.Application”)
Set nsNS = objOLApp.GetNamespace(“MAPI”)
GetCurrentUser = vbNullString
On Error Resume Next
GetCurrentUser = nsNS.CurrentUser.Name
Set objOLApp = Nothing
Set nsNS = Nothing
End Function -
WSJohnBF
AskWoody LoungerMay 4, 2004 at 5:39 pm #823242Resurrecting this older thread, I guess I didn’t look far enough for the Outlook User; it’s a Property of NameSpace:
Function GetCurrentUser() As String
Dim objOLApp As Outlook.Application
Dim nsNS As NameSpace
Set objOLApp = CreateObject(“Outlook.Application”)
Set nsNS = objOLApp.GetNamespace(“MAPI”)
GetCurrentUser = vbNullString
On Error Resume Next
GetCurrentUser = nsNS.CurrentUser.Name
Set objOLApp = Nothing
Set nsNS = Nothing
End Function
-
-
WSjscher2000
AskWoody LoungerApril 30, 2004 at 1:51 am #821700VBS doesn’t have much intelligence about the system without invoking other objects. There is a way to access the environment through the Shell, but I haven’t tried to code it up. This page gives an overview of the WSH objects and collections, which can be scripted: Windows Script Host Object Model.
-
-
-
WSjscher2000
AskWoody LoungerApril 29, 2004 at 8:02 pm #821608(Edited by jscher2000 on 29-Apr-04 14:02. On second thought.)
In a pure VBScript environment, you’d have to go out to the Windows Script Host for this information. Assuming the Outlook Forms security model lets you do that, see post 130373 for some sample code.
Added: Actually, if you can get this information from the Office or Outlook object model instead of Windows Script Host, that might work better. However, I haven’t trawled the object browser to see if it’s there. Please post whatever solution you end up using, as I suspect others might be interested in the same thing in the future.
Viewing 3 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
WhatsApp banned on House staffers’ devices
by
Alex5723
36 minutes ago -
Is your device eligible?
by
Susan Bradley
2 hours, 20 minutes ago -
Windows 11 Insider Preview build 26200.5661 released to DEV
by
joep517
8 hours, 31 minutes ago -
Windows 11 Insider Preview build 26120.4452 (24H2) released to BETA
by
joep517
8 hours, 33 minutes ago -
Hello Windows…My Problem is Windows Hello…
by
rdleib
9 hours, 48 minutes ago -
New Canon Printer Wants Data Sent
by
Win7and10
10 hours, 6 minutes ago -
I set up passkeys for my Microsoft account
by
Lance Whitney
2 hours, 36 minutes ago -
AI is for everyone
by
Peter Deegan
9 hours, 39 minutes ago -
Terabyte update 2025
by
Will Fastie
3 hours, 42 minutes ago -
Migrating from Windows 10 to Windows 11
by
Susan Bradley
4 hours, 43 minutes ago -
Lost sound after the upgrade to 24H2?
by
Susan Bradley
1 day, 8 hours ago -
How to move 10GB of data in C:\ProgramData\Package Cache ?
by
Alex5723
6 hours, 21 minutes ago -
Plugged in 24-7
by
CWBillow
18 hours, 51 minutes ago -
Netflix, Apple, BofA websites hijacked with fake help-desk numbers
by
Nibbled To Death By Ducks
1 day, 22 hours ago -
Have Copilot there but not taking over the screen in Word
by
CWBillow
1 day, 19 hours ago -
Windows 11 blocks Chrome 137.0.7151.68, 137.0.7151.69
by
Alex5723
3 days, 13 hours ago -
Are Macs immune?
by
Susan Bradley
4 hours, 42 minutes ago -
HP Envy and the Function keys
by
CWBillow
2 days, 20 hours ago -
Microsoft : Removal of unwanted drivers from Windows Update
by
Alex5723
14 hours, 11 minutes ago -
MacOS 26 beta 1 dropped support for Firewire 400/800
by
Alex5723
4 days ago -
Unable to update to version 22h2
by
04om
1 day, 8 hours ago -
Windows 11 Insider Preview Build 26100.4482 (24H2) released to Release Preview
by
joep517
4 days, 8 hours ago -
Windows 11 Insider Preview build 27881 released to Canary
by
joep517
4 days, 8 hours ago -
Very Quarrelsome Taskbar!
by
CWBillow
3 days, 18 hours ago -
Move OneNote Notebook OFF OneDrive and make it local
by
CWBillow
4 days, 21 hours ago -
Microsoft 365 to block file access via legacy auth protocols by default
by
Alex5723
4 days, 9 hours ago -
Is your battery draining?
by
Susan Bradley
15 hours, 50 minutes ago -
The 16-billion-record data breach that no one’s ever heard of
by
Alex5723
1 day, 9 hours ago -
Weasel Words Rule Too Many Data Breach Notifications
by
Nibbled To Death By Ducks
5 days, 1 hour ago -
Windows Command Prompt and Powershell will not open as Administrator
by
Gordski
1 day, 3 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.