WELCOME
Feel free to browse and possibly find what your looking for. If you find what you are looking for please leave a comment or if you have a better solution I will be happy to post it.
Please leave any suggestions, comments, or any other input. More the marrier.
Space Invaders - PREVIEW
If your in IT you know coffee is almost as important as the air we breath. Show your support and add to the coffee fund. SHOW YOUR SUPPORT… Add to the coffee fundVN:F [1.6.9_936]please wait…Rating: 0.0/5 (0 votes cast)
READ ENTIRE POSTwho – linux command - PREVIEW
This command allows use to view who is logged on either interactively at the console or via an SSH session. The who command without parameters gives us the basics.
[root@esx1host firewall]# who
root tty1 Jul 25 10:30
root tty2 [...]
VMware ESX Server 3.x – Alternate Location for VM Snapshots - PREVIEW
To specify a new directory or datastore for snapshot files, follow this procedure.
When you specify a new working directory for a VM, the vswp file that is created when the VM is powered on is also stored in that location. If your VM is on a shared storage, and you specify local storage [...]
VBScript – Enumerates all SamAccounts in you current Domain - PREVIEW
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112′==========================================================================
‘ NAME: List_AD_SamAccounts.vbs
‘
‘ COMMENT: Enumerates all SamAccounts with department and descriptions
‘
‘==========================================================================
Option Explicit
Dim adoCommand, adoConnection, strBase, strFilter, strAttributes
Dim objRootDSE, strDNSDomain, strQuery, adoRecordset, strName
Dim strDept, arrDescript, strDescript, strItem
‘ Setup ADO objects.
Set adoCommand = CreateObject("ADODB.Command")
Set adoConnection = CreateObject("ADODB.Connection")
adoConnection.Provider = "ADsDSOObject"
adoConnection.Open "Active Directory Provider"
adoCommand.ActiveConnection = adoConnection
‘ Search entire Active [...]
READ ENTIRE POSTsu / sudo - PREVIEW
su
//
The command “su” stands for “switch user”. And it does just that, it switches users.
When it used without parameters, we are specifying to switch to the user root. However, we can use the su command to switch shell to any user account that we know the password of. In the first example, we are [...]