Search found 11 matches

by mssbusybee
Thu Jun 03, 2010 3:16 pm
Forum: Other Scripting Languages
Topic: File splitting using Command line
Replies: 2
Views: 4292

File splitting using Command line


Hi
I have a wrf file (wrf file extension when recorded using webex) and I need to split it using command line without downloading any additional software. How could I do it ?
by mssbusybee
Thu Jun 03, 2010 3:16 pm
Forum: Other Scripting Languages
Topic: File splitting using Command line
Replies: 2
Views: 4292

File splitting using Command line


Hi
I have a wrf file (wrf file extension when recorded using webex) and I need to split it using command line without downloading any additional software. How could I do it ?
by mssbusybee
Sat Apr 17, 2010 11:14 pm
Forum: VBScript
Topic: Changing priority of Notepad via VBScript
Replies: 3
Views: 1821

Changing priority of Notepad via VBScript

Jvierra you are the BOSS :-D
by mssbusybee
Wed Apr 14, 2010 8:46 pm
Forum: VBScript
Topic: Changing priority of Notepad via VBScript
Replies: 3
Views: 1821

Changing priority of Notepad via VBScript

Can some one tell me what is wrong with the line "For Each objProcess in colProcesses" in the script. Const BELOW_NORMAL = 16384Const ABOVE_NORMAL = 32768 strComputer = "mssbusybee"Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!&q...
by mssbusybee
Wed Apr 14, 2010 8:46 pm
Forum: VBScript
Topic: Changing priority of Notepad via VBScript
Replies: 3
Views: 1821

Changing priority of Notepad via VBScript

Can some one tell me what is wrong with the line "For Each objProcess in colProcesses" in the script. Const BELOW_NORMAL = 16384Const ABOVE_NORMAL = 32768 strComputer = "mssbusybee"Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!&q...
by mssbusybee
Mon Feb 15, 2010 9:21 pm
Forum: VBScript
Topic: VBScript to check Web Proxy
Replies: 10
Views: 16470

VBScript to check Web Proxy

Hi I am back with the code. I have added one more IP to the list of Proxies which is 10.0.0.4. Just rename the Mail Server IP with your mailserver and change the from and TO address on the mails. WOLA you are done. ' This piece of code will check to see if it is able to access the Google's page via ...
by mssbusybee
Thu Feb 11, 2010 2:42 pm
Forum: VBScript
Topic: VBScript to check Web Proxy
Replies: 10
Views: 16470

VBScript to check Web Proxy

JVIERRA you ROCK !!!!! :-)
by mssbusybee
Wed Feb 10, 2010 10:32 pm
Forum: VBScript
Topic: VBScript to check Web Proxy
Replies: 10
Views: 16470

VBScript to check Web Proxy

Now this is the code I am going to use to check all the three HTTP Proxy server, Kindly let me know if I will face any issue with this. On Error Resume NextSet WinHttpReq = CreateObject("WinHttp.WinHttpRequest.5.1")WinHttpReq.SetTimeouts 30000,9000,15000,15000For i = 1 To 3 If i = 1 Then W...
by mssbusybee
Wed Feb 10, 2010 9:50 pm
Forum: VBScript
Topic: VBScript to check Web Proxy
Replies: 10
Views: 16470

VBScript to check Web Proxy

Thanks to all your help Jvierra I am not a scripting Guru; However I found this piece of Code on the link http://services.scala.com/training/?p=27, which taught me how to set Proxy addresses by using VBScripting and I have modified it to check on my Proxy servers, Other two links which helped me ar...
by mssbusybee
Mon Feb 08, 2010 8:37 pm
Forum: VBScript
Topic: VBScript to check Web Proxy
Replies: 10
Views: 16470

VBScript to check Web Proxy

After banging my head a lot I was finally able to write this small piece of Code as shown below. In this code I will test to see that if Google page is loading, provided it loads I am just logging it on C Drive on the file called log.txt, If it does not load it will shoot out an email. Now I want to...