Sign in
|
Join
|
Help
Don Hite at myITforum.com
Select Distinct
DateAdd
(D,+1,
GetDate
())
'Be Sure To Come Back Then too!'
This Blog
Home
Contact
About
Syndication
RSS
Atom
Comments RSS
Search
Go
Tags
Break Time
By Request
Client Health Monitoring
ConfigMgr 2007
HTML Applications
Microsoft SQL Server
MOM 2005
MOSS 2007
myITforum Community
Odds & Ends
Odds & Ends
OpsMgr 2007
Origins
PowerShell
SCE 2007
Server Technologies
SMS 2003
SQL Queries
Vbs Scripts
News
Sign Up For E-Mail Alerts When New Content Is Added To This Blog
Tag Categories:
Break Time
By Request
Client Health Monitoring
ConfigMgr 2007
HTML Applications
Microsoft SQL Server
MOM 2005
MOSS 2007
myITforum Community
Odds & Ends
Origins
OpsMgr 2007
PowerShell
Server Technologies
SMS 2003
SQL Queries
SCE 2007
VBS Scripts
Navigation
Site Home
Home
Bloggers List
Blogs
Photos
Downloads
Archives
June 2009 (5)
March 2009 (4)
February 2009 (12)
December 2008 (44)
November 2008 (48)
October 2008 (61)
September 2008 (57)
August 2008 (56)
July 2008 (49)
June 2008 (50)
May 2008 (56)
April 2008 (44)
March 2008 (71)
February 2008 (52)
January 2008 (33)
December 2007 (123)
November 2007 (68)
October 2007 (71)
September 2007 (68)
August 2007 (80)
July 2007 (87)
June 2007 (72)
May 2007 (89)
April 2007 (75)
March 2007 (62)
February 2007 (51)
January 2007 (61)
December 2006 (48)
November 2006 (51)
October 2006 (58)
September 2006 (49)
August 2006 (21)
July 2006 (43)
June 2006 (18)
May 2006 (14)
April 2006 (5)
Don's Links
E-Mail Don Hite
Don's myITforum Articles
Kansas City Regional Systems Management Users Group
RSS (Really Simple Syndication) Syndication Feed
Don Hite's Blog Catalog Page
Kansas City Regional Systems Management Users Group Blog
Visuals
I Want You
Visit myITforum
Bart Simpson Chalkboard
myITforum Links
Rod Trent's Blog
myITforum Downloads
myITforum Home Page
myITforum News Blog
myITforum User Blogs
myITforum Book Store
myITforum Columnists
myITforum Forums Page
myITforum User Groups
myITforum Wiki Service
myITforum Site News Blog
myITforum Daily Newsletter
myITforum Gear And Apparel
myITforum Newsletters Blog
myITforum Web Browser Toolbar
myITforum Branded News Reader
myITforum E-Mail Discussion Lists
myITforum Home Page Search
myITforum.com Polls
External Links
1E
Faqshop
LabMice
LearnSMS
SMS Utils
SMS Expert
Extended Tools
System Center Tools
Personal Pages
Phil Wilcock's - Farmer Phil's Diary
Duncan McAlynn's Destination: Ireland
Jarvis Davis
Don The Baptist
Blog To Blog
Anthony Clendenen
Dan Thomson
Garth Jones
Michael Mott
Rod Trent
Ron Crumbaker
Ying Li
Jason Scheffelmaer
Scott Moss
Mike Lucero
Matt Broadstock
John Nelson
Brian Tucker
Steve Thompson
Ronni Pedersen
Jason Sandys
Roger Zander
David Stein
myITforum Live Search Engines
myITforum Live Blog's Search
myITforum Live Home Search
myITforum Live Forum's Search
myITforum Live Articles Search
Browse by Tags
All Tags
»
By Request
(
RSS
)
HTML Applications
PowerShell
SMS 2003
SQL Queries
Vbs Scripts
Thursday, February 05, 2009 12:54 PM
By Request VBS Script To Delete All Files From A Specified Folder
VBS Script: strDirectory = "C:\DirectoryFolderName" Set FSO = CreateObject( "Scripting.FileSystemObject" ) Set objFolder = fso.GetFolder(strDirectory) For Each objFile in objFolder...
Posted by
dhite
| with
no comments
Filed under:
By Request
Monday, December 22, 2008 9:36 AM
By Request VBS Script Query User Terminal Server
This By Request VBS script is provided as an example of how to query the user(s) logged onto a remote terminal server. VBS Script: strComputer = InputBox( "Enter Terminal Server Name" ) Set objShell...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, December 14, 2008 3:38 PM
By Request Net Send VBS Script
This By Request VBS script will allow you to send a message to a remote machine. Note: The messenger service on Windows XP SP 2 or later machines needs to be modified so that the service is not disabled...
Posted by
dhite
| with
no comments
Filed under:
By Request
Saturday, December 06, 2008 8:16 AM
By Request VBS Script To Enumerate A Local Machine Name For Help Desk Personnel
This By Request VBS script was written to be sent or set as a desktop shortcut to allow local machine users to get their machine name and current time for help desk troubleshooting when a user does not...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, November 23, 2008 2:56 PM
By Request VBS Script To Run A Local Executable
This By Request VBS script will start the Hearts Game form a Local machine. VBS Script: Set objShell = createobject( "wscript.shell" ) strCommand = "MsHearts.Exe" objShell.run strCommand...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, November 16, 2008 7:42 PM
By Request VBS Script To Open The ConfigMgr 2007 Console Using A Switch
This By Request VBS Script will provide you with an example of how to open the ConfigMgr 2007 console using a specified command line switch. The switch used in this example is the No Restore (sms:NoRestore...
Posted by
dhite
| with
no comments
Filed under:
By Request
Monday, November 10, 2008 5:46 PM
By Request VBS Script To Copy A File To A Multiple Machines
This By Request VBS Script will copy a specified file to a list of machine names taken from an input file called “MachineList.Txt”. VBS Script: InputFile = "MachineList.Txt" strFileName...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, November 02, 2008 3:15 PM
By Request VBS Script To Delete IE 7 History
This By Request VBS script will provide you with an example of how to use the Internet Explorer (IE) 7.0 newly introduced “ClearMyTracksByProcess” Internet Options control panel command line...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, November 02, 2008 3:15 PM
By Request VBS Script To Copy A File To A Remote Machine
This By Request VBS Script will copy a specified file to a remote machine taken from an input dialog box. VBS Script: strComputer = InputBox ( "Enter Machine Name" ) strFileName = "C:\FileName...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, October 26, 2008 2:31 PM
By Request VBS Script To Replace A WMI String Result Set With A Substituted String
This VBS script was written as an example of how to replace the results from a WMI string results set to remove unwanted characters. The BootDirectory value of \WINDOWS has the \ removed or trimmed from...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, October 12, 2008 3:18 PM
By Request VBS Script To Retrieve Your Micorosft Word Version
This By Request VBS scripot will give you your Micorosaft Word Version Number VBS Script: Set objWord = CreateObject( "Word.Application" ) Set objOptions = objWord.Options MsgBox objWord.Name...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, October 05, 2008 2:41 PM
By Request Script To Return The Next Available Drive From A Remote Machine
This By Request VBS Script will allow you to find the next available drive letter on a remote or local machine. VBS Script: strComputer = InputBox ( "Enter Machine Name" ) strFirstDrive = "A"...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, September 28, 2008 1:46 PM
By Request VBS Script To Split Forward Space Separated Stings
This By Request VBS Script will provide you with an example of how to separate WMI Class stings that are separated by forward spaces (\). The user also requested a simple way to reverse the output and...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, September 21, 2008 3:00 PM
By Request VBS Script To Release And Renew A Local IP Address
This VBS script will allow you to release and then renew the IP address for a local machine. VBS Script: strComputer = "LocalHost" Set objWMIService = GetObject( "winmgmts:\\" &...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, September 14, 2008 3:50 PM
By Request VBS Script To Determine How Many Days Have Passed Since A Specified Date
This By Request VBS Script will allow you to enter a date into an input dialog box and will determine how many days have passed since that date. VBS Script: strMmDdYyyy = InputBox ( "Enter Date As...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, September 14, 2008 3:50 PM
By Request Script To Send Excel Headers To A Column Rather Than A Row
This By Request VBS Script will provide you with an example of how to send the results from a VBS script to an excel spreadsheets column rather than a row. VBS Script: strComputer = InputBox ( "Enter...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, September 07, 2008 12:22 PM
By Request VBS Script To Add To Do Tasks To Outlook
This By Request VBS Script will allow you to enter to do tasks for outlook using dialog boxes. VBS Script: Const olTaskItem = 3 Set objOutlook = CreateObject( "Outlook.Application" ) Set objTask...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, August 24, 2008 1:03 PM
By Request Script To Send Service Display Name And Path Name To A Text File
This By Request VBS script will send service display names and paths to a text file. VBS Script: strComputer = InputBox ( "Enter Machine Name" ) Const ForAppending = 8 Set objFSO = CreateObject...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, August 17, 2008 3:26 PM
By Request Script To Retrieve A Remote Machines Registry Install Date Timestamp
This By Request VBS script will allow you to enter a remote machine name or a local machine name to retrieve the registries install or rebuild date. VBS Script: strComputer = InputBox ( "Enter Machine...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, August 10, 2008 8:31 AM
By Request Script Get Owner Of An OU
This by request script will allow you to retrieve the owner or the NT Security Descriptor of an Organization Unit (OU) . VBS Script: Set objContainer = GetObject( "LDAP://OU = OuName,dc=Domain,dc...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, August 03, 2008 3:08 PM
By Request VBS Script To Show Mapped Drives For A Specified Machine
This VBS script will allow you to enter a remote machine name into an input dialog box. The script will then read the device ID for each assigned provider and will show you the mapped drive letter and...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, July 20, 2008 8:20 AM
VBS Script To Perform An Nslookup Request And Open The Results In A Dialog Box
This by request VBS script will perform an NsLookup request for a remote machine and open the results in a dialog box for easier reading. VBS Script: strComputer = InputBox ( "Enter Machine Name"...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, July 13, 2008 8:17 AM
VBS Script To Send IP Configuration Information To Text File And Display It
This By Request VBS script will allow you to get your local machines IP configuration (IpConfig /All) information and send to a text file called IpConfigResults.Txt. The file will then be opened and displayed...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, June 01, 2008 7:33 AM
By Request Script To Retrieve A Remote Machines Domain Role
This By Request VBS Script will allow you to retrieve the domain role for a specified machine name. VBS Script: strComputer = InputBox ( "Enter Machine Name" ) Set objWMIService = GetObject(...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, May 18, 2008 7:23 AM
By Request VBS Script To Trap Error Numbers And Their Equivalent HEX Value
This By Request VBS script was created as an example of how you can trap or see both the error number and its Hex equivalent for a specified error. I also added the Error description as well. VBS Script...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, May 11, 2008 7:57 AM
By Request VBS Script To Get A Specified Client Machines Resource ID
This By Request VBS script will allow you to retrieve the Resource ID for a specified Resource name. VBS Script: strComputer = InputBox( "Enter Site Server Name" ) strSiteCode = InputBox( "Enter...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, April 13, 2008 7:40 AM
Disabling The Windows XP Firewall On A Local Machine
This By Request VBS script will allow you to disable the Windows XP firewall on a local machine via a Group Policy or thorough a logon script. Disable The Local Windows XP Firewall: Set objFirewall = CreateObject...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, April 06, 2008 7:49 AM
VBS Script To Open Microsoft System Information Applet On A Remote Machine
This By Request VBS script will allow you to open the Microsoft System Information applet on a remote machine taken from an input dialog box. This script is based on a previous By Request VBS post listed...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, March 30, 2008 7:39 AM
VBS Script To Open A Remote Clients CcmSetup Folder
This by request VBS script will allow you to enter a remote client machine name and will open the clients CcmSetup directory folder. VBS Script: strcomputer = InputBox ( "Enter Client Machine Name"...
Posted by
dhite
| with
no comments
Filed under:
By Request
Saturday, March 22, 2008 6:16 PM
Script To Get A Local Machines Adapter Link Speed
This By Request VBS script will allow you to see your local machines Adapter Link Speed. VBS Script: strComputer = "." Set objWMIService = GetObject( "winmgmts:\\" & strComputer...
Posted by
dhite
| with
no comments
Filed under:
By Request
More Posts
Next page »