Posted on February 8 2010 Read more...

Backup Script check

We have two scripts 1. Connects to all server and check the last backup file (date) & the number of backup in the folder (should be 5), Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile0 = objFSO.OpenTextFile("D:\Script\CheckFilesOnServer\cobianServers.txt", 1) Dim Last Do Until objFile0.AtEndOfStream strComputer = objFile0.ReadLine num = 0 ' generate a filename base on the script name strOutputFile = "D:\Script\CheckFilesOnServer\" & Split(WScript.ScriptName, ".")(0) & ".log" ' Create object and file for output Set objFileSystem = CreateObject("Scripting.fileSystemObject") Set ...
Posted on December 6 2009 Read more...

Protected: Bakrid – House Warming

This post is password protected. To view it please enter your password below: Password:
Posted on December 3 2009 Read more...

Wake on LAN – Magic Packet info

All you need to know about Magic Packets.. from wireshark http://wiki.wireshark.org/WakeOnLAN
Posted on November 25 2009 Read more...

Syslog Cisco

It really painful when you cisco equipment freezes and overwrites all the logs when it reboots to tell you that the interface are back up. You have no clue why it went down or what happened 5 seconds before. That's why we need the syslogger..!! You can get a free one for one device from Syslog Watcher Personal Edition or get the personal edition or ...
Posted on November 25 2009 Read more...

test Podcast

Test Podcast with Wodpress plugin testpodcast [podcast]http://www.amagob.com/wpmu/files/2009/11/testpodcast.mp3[/podcast]
Posted on November 17 2009 Read more...

What Application Pool does this W3WP.EXE belong to?

The easiest way is to use one of the new scripts that come in the box called IISAPP.VBS. It is located in the %SystemRoot%\system32 directory. For example:
Posted on November 17 2009 Read more...

SMTP commands

Quick to send mails by telnet.. EHLO local.domain.name MAIL From : anyone@amagob.com RCPT TO : somebody@amagob.com Data Subject: test message subject hello test message .
Posted on November 2 2009 Read more...

Ubuntu 9.10 Karmic

You gotta love Ubuntu Karmic!!!! I installed the b43-fwcutter from the repository and spent a couple of minutes figuring out that d**n broadcom wireless driver only needed to be activated under SYSTEM-> Hardware Drivers (Proprietary). Sound was not working when I just installed flash for firefox, I'm not sure if I had to remove and re-add pulseaudio but its working great now. Webcam and Mic are working ...
Posted on November 2 2009 Read more...

Create or Delete Windows service

1. Run Regedit or Regedt32 2. Find the registry entry "HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services" 3. Look for the service there and delete it. You can look at the keys to know what files the service was using and delete them as well (if necessary). alternatively, you can also use command prompt and delete a service using following command: sc delete < SERVICE name> or to create, simply type sc create <SERVICE name>
Posted on October 23 2009 Read more...

## New XAMPP security concept (Apache 2.2)

hey The new version of Apache 2.2 (installed with xampplite) comes with a set of new securities and I was installing Wordpress for a friend of mind and it was a real pain in the a** to get his website published on the Internet. Eventually, (just stick with it.. you'll find the light.. initially we just get blinded by the "problem" and the problem of it being another new problem..) ...