I get an error if I run it on line 18, Char 3
Error: Object required: 'objComputer'
Code:800A01A8
I have only modified "\\servername\folder\"
Thanks!!
Main Topics
Browse All TopicsHi
I want to run a VBSCRIPT at login for my users that accomplishes the following.
1 I want to check if a folder exist on a workstation.
2 If folder exists, I want it to output to the "Acrobat9Installed.txt": username and computername
3 If folder exists, I also want it to run the code that modifies the registry.
4 If the folder does not exist, I want it only to output: username and computername to a diffrent txt file "Acrobat9NOTInstalled.txt"
I only want "UN and CompName" which are these two in the file and not all the other obj.
objTextFile.WriteLine objComputer.Name & vbtab & _
objComputer.Username & vbtab & _
Its giving me many errors if i reduce the codes ect. I have snippets that work independently, i just cannot get them to work together for my purpose. The snippets are sectioned below.
Thank you!!!
Regards /Dabosa
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Yes sirbounty, that did it!
Its working ive been testing it with many test scenarios.
I would like to have the timeand date also printed in txt file.
I cant seem to find a objcomputer.time&date. How do one actually find these properties or is it methods?
Its difficult to know what to use, is there a list somewhere to check what X is and what it can do for obj.Computer.X?
For Each objComputer in colComputer
strComputer = objComputer.Name
TimeDate = objComputer.Time
Thanks!!
Yes sirbounty, that did it!
Its working ive been testing it with many test scenarios.
I would like to have the timeand date also printed in txt file.
I cant seem to find a objcomputer.time&date. How do one actually find these properties or is it methods?
Its difficult to know what to use, is there a list somewhere to check what X do for obj.Computer.X?
For Each objComputer in colComputer
strComputer = objComputer.Name
TimeDate = objComputer.Time
Thanks very much! /D
Business Accounts
Answer for Membership
by: sirbountyPosted on 2009-04-22 at 10:23:00ID: 24207292
This should do it..
Select allOpen in new window