Remote Admin automation





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

3
Date Submitted Thu. Mar. 2nd, 2006 9:59 AM
Revision 1
Syntax Master dannyboy
Tags File | info | VBSCRIPT
Comments 0 comments
Retrieve information about a file
3
Date Submitted Thu. Mar. 2nd, 2006 10:05 AM
Revision 1
Syntax Master dannyboy
Tags File | Folder | VBSCRIPT
Comments 1 comments
Check the attributes of a file or folde
3
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.
0
Date Submitted Thu. Mar. 2nd, 2006 10:11 AM
Revision 1
Syntax Master dannyboy
Tags Ping | VBSCRIPT
Comments 0 comments
check if host is pingable or not
2
Date Submitted Thu. Mar. 2nd, 2006 10:23 AM
Revision 1
Syntax Master dannyboy
Tags KILL | PROCESS | VBSCRIPT
Comments 0 comments
terminate a named process on computers in a given IP address range
3
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
2
Date Submitted Thu. Mar. 2nd, 2006 10:38 AM
Revision 1
Syntax Master dannyboy
Tags Hostname | VBSCRIPT | WMI
Comments 0 comments
Get computername with wmi
2
Date Submitted Thu. Mar. 2nd, 2006 10:39 AM
Revision 1
Syntax Master dannyboy
Tags DOMAIN | VBSCRIPT | WMI
Comments 0 comments
Get the computer domain with wmi
-5
Date Submitted Thu. Mar. 2nd, 2006 10:56 AM
Revision 1
Syntax Master dannyboy
Tags Password | VBSCRIPT
Comments 1 comments
Create a random password:


usage: CreatePasswd( 8,True,False)
-4
Date Submitted Thu. Mar. 2nd, 2006 11:02 AM
Revision 1
Syntax Master dannyboy
Tags Password | VBSCRIPT
Comments 1 comments
Usage: cscript //nologo RandPass.vbs [password_length]|[?] [complexity] [uniqueness]

This script will generate a random password of X length. It will build the password from seed 'strings of increasing complexity.
1 - simple is the lower case alphabet, numbers 2-9 and !@#$%^&*() all randomly interspersed.
2 - complex is the same as the previous with the addition of UPPER case letters.
3 - insane is the same as the previous with the additional symbols of ,./?>;'[]}{\|~`:
The numbers 0 and 1 have been removed to avoid confusion with the letters O and L.

password_length should be a number between 4 and 127, although a limit of 14 is recommended for Win9x clients. Default is 7
complexity must be 1,2 or 3
uniqueness value of 0 will make each password character unique. A value of 1 [default] will allow repeated characters.

If you don't pass values at the command prompt, you will be prompted for each value.