First  |  Prev |  Next  |  Last
Pages: 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
shell.application throw error on asp file
Hi i try to run tis code on asp file : Dim objApp Dim objWindows, objWindow Dim objIE Set objApp = CreateObject("shell.application") Set objWindows = objApp.Windows() For i=0 to objWindows.Count - 1 Set objIEWnd = objWindows.Item(i) If objIEWnd.LocationURL = "http://www.url.com Then Set objIE = objIEWnd... 22 Sep 2009 18:36
Eliminating duplicate lines - with a twist
Hello all. I've used this script before to eliminate duplicate lines in a text file, or in an array: http://blogs.technet.com/heyscriptingguy/archive/2005/04/13/how-can-i-eliminate-duplicate-names-in-a-text-file.aspx Now I need to eliminate duplicate lines in a comma separated file. The contents of the CSV f... 22 Sep 2009 20:49
ADSystemInfo and ComputerName
Set objSysInfo = CreateObject("ADSystemInfo") sTmp = objSysInfo.ComputerName If err <> 0 Then wsh.echo err.description End If This script echos a "Permission Denied" on some machines. I have been unable to determine the cause or a fix. I have re-registered the activeds.dll. Not sure what else to try. Anyone ... 22 Sep 2009 21:54
passwords about to expire
Hi, Has anybody a script that will list all users whose passwords are about to expire in n days. Then e-mails the user? Ta Mark. ... 18 Sep 2009 10:00
how to make my vb script files in windows 2008 server 64 bit
Hi, I have some script files to execute build. I am using interop.clearcase dll programming in that. I have the following lines in the code ApplicationClass CCApp = new ApplicationClass(); CCVOB vob = CCApp.get_VOB(path);//here it is returning null object the same piece of code is getting executed pr... 14 Sep 2009 08:34
WMI ExecQuery from Win32_NTEventLogFile in a Workgroup environment
Scenario: - a number of PCs running Windows XP Pro - all have "Domain" set to "Workgroup" (windows installation default) - all are logged in as Windows default "Administrator" account - none of the nodes have Windows Firewall enabled I have a script that runs on one node and copies files from all the remote PC... 10 Sep 2009 14:44
Add ip route to a computer.
Is it possible to add a ip route to a remote computer? I know it is possible by using WScript.Shell with the route add command. But is there a better way of doing this? Thanks. ... 10 Sep 2009 10:15
End of Line
Hi everyone, I have a .csv file where certain fields have carriage returns/new line feeds. Because of such, I cannot properly import my file. Hence, I wrote the following script and while it removes the carriage returns/ new line feeds through the file, it ALSO removes the END OF LINE carriage return/line feed. ... 9 Sep 2009 10:50
Script problem with Windows 7
I use this standard code at the beginning of my script to log in to the Comcast forums: With WScript.CreateObject("InternetExplorer.Application") .Visible = True .Navigate "http://forums.comcast.net/comcastsupport/" Do Until .ReadyState = 4 : WScript.Sleep 50 : Loop End With At this point I use SendKeys t... 8 Sep 2009 11:26
Hidding a Div using VBscript
Hi I have been trying to hide a Div using vbscript and I can't get it to work, I have been trying with the code blow. if MarqueeContainer.visible then MarqueeContainer.visibility=Hidden else MarqueeContainer.visibility=visible end if <div class="MarqueeContainer"> I have a Marquee inside a div and... 3 Sep 2009 05:22
First  |  Prev |  Next  |  Last
Pages: 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66