Sign in
|
Join
|
Help
Don Hite
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
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
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
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
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
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
Sunday, March 16, 2008 8:38 AM
By Request VBS Script To Count Bad DDRs And Bad Mifs And Send To Excel
This By Request VBS script will allow you to hard code a Universal Naming Convention (UNC) path to your Bad DDRs and Bad Mifs directory folders and count the number of root files in each and send the results...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, March 09, 2008 8:22 AM
VBS Script To Return The Full User Name Of A Specified Logon Name
This By Request VBS Script will allow you to enter a Domain name and a logon user name into input dialog boxes and will return the users full name. VBS Script: strDomain = InputBox ( "Enter Domain...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, March 02, 2008 8:14 AM
By Request VBS Script To Use The Registry To Track SMS Software Installs
Here you will find scripts that can be added to your existing VBS install scripts to get you started tracking your SMS advertised software installs. First you need to create the repository on your SMS...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, February 10, 2008 7:04 AM
VBS Script To Count Items In A Specified Outlook Folder
This By Request VBS script will allow you to get a count of how many items are in a specified Outlook folder on the local machine. VBS Script: Const olFolderDeletedItems = 3 Const olFolderOutbox = 4 Const...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, January 27, 2008 12:53 PM
VBS Script To Cancel All Active Print Jobs On A Local Machine
This By Request Vbs script will cancel all of the active print jobs on the computer from which the script is executed on. VBS Script: strComputer = "LocalHost" Set objWMIService = GetObject(...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, January 20, 2008 8:32 AM
By Request Script To Show How Many Days Are Left In The Year
This VBS script will echo back the Day number of the year and how many days are remaining or left in the year. VBS Script: DateTime = Date MsgBox "Today Is Day Number: " & (Day( Date )) MsgBox...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, December 30, 2007 1:49 PM
By Request VBS Script To Retrieve A Remote Machines Time Zone Name
This VBS script will allow you to enter a remote machine name into an input dialog box and will return the specified machines Daylight (DST) and Standard time zone setting. VBS Script: strComputer = InputBox...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, December 23, 2007 9:00 AM
By Request Script To List Home Share Files Accessed Today
This By Request script is a script that I was asked to modify to use “Today” as a date instead of a hard coded date such as 12-25-07. VBS Script: dtDate = Now() strSearchFolder = "H:\"...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, December 16, 2007 8:23 AM
By Request VBS Script To Count Items From A WMI Class
Here you will find two VBS script to show you how to count specified WMI class items. The first VBS script will count and display the number of services that are stopped and then will count and display...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, December 09, 2007 10:13 AM
By Request Script To Retrieve WMI Information For A Remote Machine
This By Request VBS script will allow you to enter a remote machine name and will then retrieve the machines WMI information including its WMI ersion, Database directory, Installation directory, Logs directory...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, December 02, 2007 4:00 PM
By Request Script To Verify If Outlook Pst Files Are Stored On A Remote Machine
Question: Users are to have Outlook files on their home disk and not on their PC. Can you show a script how to see if the file is on the PC. Then we want to know where it is. - Kahdir S Reply: There are...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, November 25, 2007 6:48 AM
By Request VBS Script To Return A Remote Machines Operating System And Version
This By Request VBS script will retrieve a remote machines operating system version or Caption name and display the Machine name and Caption on the same message box line. VBS Script: strComputer = InputBox...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, November 18, 2007 8:39 AM
By Request VBS Script To List All Vista Machines In Active Directory
This By Request VBS script will allow you to enter an Active Directory (AD) domain name into an input dialog box and will search AD for all machines that have Windows Vista installed as detected in AD...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, November 11, 2007 12:53 PM
By Request VBS Script To Retrieve A Remote Workstations Group Policies
This by request VBS script will allow you to enter a remote workstation name and will return the Group Policy (GPO) objects in use for the machine. VBS Script: On Error Resume Next strComputer = InputBox...
Posted by
dhite
|
1 comment(s)
Filed under:
By Request
Sunday, November 04, 2007 3:54 PM
VBS Script To Verify If A WMI Namespace Exists Using Error Handling Message Boxes
This By Request VBS script can be used to verify if a specified WMI Namespace exists on a remote machine such as the SMS Namespace. To use the script at the first dialog box enter the remote machine name...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, October 28, 2007 8:31 AM
By Request Script To Create A SkpSwi.Dat File
This By Request script was created in response to a users request for a simple way to create a SkpSwi.Dat file as mentioned in my previous post found below using a script. VBS Script: strFileName = "SkpSwi...
Posted by
dhite
| with
no comments
Filed under:
By Request
Sunday, October 21, 2007 2:25 PM
By Request Script To Copy Internet Favorites To Your Domain Users Home Share
This by request script will copy your favorites from your user profile to your defined home share. The request was to delete the favorites directory before copying the locally stored favorites however...
Posted by
dhite
| with
no comments
Filed under:
By Request
More Posts
Next page »