Showing tag results for Scripting Guy!

Mar 11, 2005
Post comments count0
Post likes count0

How Can I Delete a Table from a Jet Database?

ScriptingGuy1

Hey, Scripting Guy! Can I delete a table from a Jet database using a script?-- AK Hey, AK. Of course you can delete a table from a Jet database using a script; after all, you can do anything using a script! Well, OK, maybe not DHCP server stuff. And maybe you can’t change the display resolution of your computer. And maybe not - well, let’s just ...

Scripting Guy!VBScriptdatabases
Mar 10, 2005
Post comments count0
Post likes count0

How Can I Temporarily Add a Group to Another Active Directory Group?

ScriptingGuy1

Hey, Scripting Guy! I’d like to add an Active Directory group to a second group, but only for an hour; after an hour, I’d like remove that group from the second group. Can I do that with a script?-- JW Hey, JW. Well, this is definitely one of the more interesting questions we’ve received. As far as we know, there’s no way to put a time limit on ...

Scripting Guy!scripting techniquesVBScript
Mar 9, 2005
Post comments count0
Post likes count0

How Can I Determine Which Version of Internet Explorer is Installed on a Computer?

ScriptingGuy1

Hey, Scripting Guy! How can I determine which version of Internet Explorer is installed on a computer?-- MG Hey, MG. Probably the best (and definitely the easiest) way to do this is to use WMI; after all, using WMI makes it as easy to get this information from remote computers as it is to get it from the local machine. Here’s a sample script tha...

Scripting Guy!VBScriptWMI
Mar 8, 2005
Post comments count0
Post likes count0

How Can I Get a List of All the Domains in a Forest?

ScriptingGuy1

Hey, Scripting Guy! How can I get a list of all the domains in a forest?-- NS Hey, NS. Any time you want information about Active Directory your best bet is to go right to the source: simply ask Active Directory to provide you with this information. Here’s a sample script that binds to the global catalog for the domain Fabrikam.com and searches ...

Scripting Guy!VBScriptActive Directory
Mar 7, 2005
Post comments count0
Post likes count0

How Can I Tell If a File Exists on a CD or DVD Drive?

ScriptingGuy1

Hey, Scripting Guy! How can I tell whether a file exists on any CD or DVD drive connected to a computer?-- GH Hey, GH. Well, one way to do this would be to search the entire file system - including any mapped network drives - and check to see if a file (let’s call it Budget.xls) can be found anywhere. Assuming you find such a file, you can then ...

Scripting Guy!VBScriptstorage