Posted by: krsna on: February 4, 2006
A ferry carrying more than 1,400 passengers and crew, most of them Egyptian laborers returning from Saudi Arabia, sank Friday about 40 miles off the coast of Egypt (in Red Sea), and by late evening, only about 300 people had been rescued.
Egyptian Officials said most of the survivors had escaped on lifeboats, with a few [...]
Posted by: krsna on: February 4, 2006
Submitted By: Jesse Riley
Language: VBScript
Description: Determines the user logged on to a computer. I added in the Ping command so that the script wouldn’t fail if the computer didn’t exist or wasn’t turned on.
Script Code
strcomputer = inputbox(“Enter Computer Name or IP”)
if strcomputer = “” then
wscript.quit
else
‘ping it!
Set objPing = GetObject(“winmgmts:{impersonationLevel=impersonate}”).ExecQuery _
(“select * from Win32_PingStatus [...]
Posted by: krsna on: February 4, 2006
Language: VBScript
Description: Opens Internet Explorer and navigates to a specific Web site.
Script Code:
Dim objIE
Set objIE = WScript.CreateObject (“InternetExplorer.Application”)
objIE.Toolbar = false
objIE.statusbar=false
objIE.Navigate “http://www.microsoft.com”
objIE.Visible = true
Change the link to the desired website and it opens the same.