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.
DNS Troubleshooting Flowchart - PREVIEW
DNS can be a beast. Here is a flow chart I use and gave to our helpdesk to help troubleshoot dns issues.
Scroll Down For Diagram……
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 [...]
READ ENTIRE POSTPlace cmd in context menu via vbscipt - PREVIEW
This script place’s a “cmd prompt here” in the explorers context menu. This is a most for any one that uses the command often.
‘**************************************************************************
‘ File: CmdPromptExplorerMenu.vbs
‘**************************************************************************
Dim WSHShell
Set WSHShell = WScript.CreateObject(“WScript.Shell”)
WSHShell.RegWrite “HKCR\Folder\Shell\MenuText\Command\”, “cmd.exe /k cd ” & chr(34) & “%1″ & chr(34)
WSHShell.RegWrite “HKCR\Folder\Shell\MenuText\”, “Cmd Prompt Here”
If your in IT you know coffee is almost as important [...]
Mount ISO as cdrom in Linux - PREVIEW
To mount an ISO:
mount -o loop /path_to_iso/filename.iso /mnt/cdrom
To unmount the ISO when done:
umount /mnt/cdrom
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)
Back and Restore ESX3i Config - PREVIEW
To back up host configuration data
Start the Remote CLI (or SSH) and log in.
You do not need to type the password on the command line. If no password is specified, the tool prompts you for the password without echoing the output to the terminal. This means the password you type is not visible in the [...]
AutoIT script to check if file exist then install application - PREVIEW
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596;==========================================================================
;
; NAME: outlook_addon.au3
;
; AUTHOR: John Sorensen
;
; COMMENT:
; Install an outlook 2003 specific addon using AutoIT.
;This will first check to see if the addon
; already exists and if not will check if outlook 2003
;exexcutable exest then will install showing a
; install showing progress. Edit the script as needed
;to include your own file and [...]