ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

4
Date Submitted Wed. Mar. 1st, 2006 5:07 AM
Revision 1
Syntax Master dannyboy
Tags KILL | VBSCRIPT
Comments 0 comments
Kill a running program on a wmi enabled compute
4
Date Submitted Thu. Mar. 2nd, 2006 10:08 AM
Revision 1
Syntax Master dannyboy
Tags ADSI | USERINFO | VBSCRIPT
Comments 0 comments
This small script prompts you for a user name or gets it from the command line and shows you information about a user including what groups they are in.
4
Date Submitted Thu. Mar. 2nd, 2006 10:32 AM
Revision 1
Syntax Master dannyboy
Tags Directory | Folder | MAKE | MD | VBSCRIPT
Comments 1 comments
Make a new directory
4
Date Submitted Thu. Mar. 2nd, 2006 11:09 AM
Revision 1
Syntax Master dannyboy
Tags LOGSIZE | VBSCRIPT
Comments 0 comments
This subroutine will rename the log file once it gets to be
larger than 10k. It renames it to ArchiveLog_(Date).txt, so
it is easy to track down a certain day.
4
Date Submitted Thu. Mar. 2nd, 2006 11:23 AM
Revision 1
Syntax Master dannyboy
Tags DOMAIN | REMOVE | VBSCRIPT
Comments 0 comments
function to remove a computer from a domai
4
Date Submitted Thu. Mar. 2nd, 2006 11:27 AM
Revision 1
Syntax Master dannyboy
Tags logoff | poweroff | Reboot | shutdown | VBSCRIPT
Comments 1 comments
Shutsdown, PowerOff, LogOff, Restarts a machine.
4
Date Submitted Thu. Mar. 2nd, 2006 11:33 AM
Revision 1
Syntax Master dannyboy
Tags DISTRIBUTIONLIST | exchange | VBSCRIPT
Comments 2 comments
Get all members of an Exchange Distribution List, even if the distribution list itself contains other distribution lists
4
Date Submitted Sat. Apr. 15th, 2006 12:40 AM
Revision 1
Syntax Master dannyboy
Tags admin | remote | VBSCRIPT
Comments 0 comments
enable remote admin settings
3
Date Submitted Wed. Jul. 15th, 2009 1:54 AM
Revision 1
Scripter Cloudgen
Tags address | ASP | IP | Ping | VBSCRIPT
Comments 0 comments
This VBScript provides the functionality for ping an ip address remotely by an IIS server. This file require IIS to access the ping.exe. see How can a ping an ip address remotely by ASP
3
Date Submitted Sun. Sep. 9th, 2007 12:15 PM
Revision 1
Beginner bala
Tags ASP | VBSCRIPT
Comments 0 comments

If you're using passwords of any type on your site, it is best to keep them random. That way they cannot be easily guessed at by intruders.

First, it's good to know a little about ASCII characters. Every character your keyboard can type is actually represented by a number. So the letter A is represented by 65. The letter Z is represented by 90. So all you need to do is generate a series of random numbers, each number between 65 and 90. That would give you a way to find the equivalent letters.

If you want to include numbers too, those are found between spots 48 and 57. I wouldn't use the spots between 57 and 65 - those are odd characters like colons.




So let's say you want to create a 7 character password that contains a random assortment of letters and numbers. You could do something like this: