Showing tag results for Scripting Guy!

Jan 28, 2005
Post comments count0
Post likes count0

How Can I Show Users a Dialog Box for Selecting Files?

ScriptingGuy1

Hey, Scripting Guy! Is there any way I can use a script to present a user with a dialog box and let him or her select a file?-- BF Hey, BF. If you’re using Windows 2000, we don’t know of a way to do this, at least not a way that’s built into the operating system. That’s not the case with Windows XP, however. On Windows XP, you can use the UserAc...

Scripting Guy!scripting techniquesVBScript
Jan 27, 2005
Post comments count0
Post likes count0

How Can I Determine the System Time on a Computer?

ScriptingGuy1

Hey, Scripting Guy! Is there any way to retrieve the system time as configured on a remote computer?-- JJ Hey, JJ. There are at least two ways to do this, both using WMI. If you’re running Windows XP or Windows Server 2003, you can use the WMI class Win32_LocalTime. As you can see, that makes it pretty easy to get the system time: you simply con...

Scripting Guy!scripting techniquesVBScript
Jan 26, 2005
Post comments count0
Post likes count0

How Can I Retrieve Information From My Event Logs Regarding Unsuccessful Logons?

ScriptingGuy1

Hey, Scripting Guy! How can I scan the event logs of my servers and return only information about unsuccessful logons?-- LC Hey, LC. We’ll assume that you have enabled security auditing on your servers. If you haven’t, that’s step one. What you’ll want to do is - at a minimum - audit for logon event failures. That way every time someone tries - ...

Scripting Guy!VBScriptLogs and monitoring
Jan 25, 2005
Post comments count0
Post likes count0

How Can I Read Just a Single, Specified Line from a Text File?

ScriptingGuy1

Hey, Scripting Guy! How can I read only a specific line in a text file? For example, how can I write a script that reads only line 16 in a text file and then stores the value of that line in a variable?-- DL Hey, DL. You know we haven’t answered a question about text files in awhile, and that’s not something we should brag about; after all, it s...

Scripting Guy!scripting techniquesVBScript
Jan 24, 2005
Post comments count0
Post likes count0

How Can I Determine the Next Available Drive Letter on a Computer?

ScriptingGuy1

Hey, Scripting Guy! How can I determine the next available drive letter on a computer?-- TW Hey, TW. Interesting question, and one that crops up from time-to-time. In the old days, when users only had drives A, B, and C, this was easy; you could pretty much guess that any drive letter other than those three would be available. Nowadays, though, ...

Scripting Guy!scripting techniquesVBScript