Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. SeniorGuru

    Script to count fields in an sql 2000 database TABLE

    If you've got more that 5000 columns in a table, you've got issues. :)
  2. SeniorGuru

    Keep script's focus where it's should be?

    If the script launches the program via the Exec method you might be able to, but I can't say that I've ever tried. Another approach you might try is to use the AppActivate method. This method allows you to pull an application back into focus. But then, it would probably annoy the dog out of...
  3. SeniorGuru

    Variable scope with .wsf scripts

    If the include scripts have code encapsulated in procedures or functions then variable scope shouldn't be an issue. In your example, the </script><script language="VBScript"> in the middle effectively isn't there. When you run the script you get two message boxes which is what you would expect...
  4. SeniorGuru

    Can I execute more than 1 .vbs file from an .wsh file???

    GPO, or Group Policy Object, is accessed through Active Directory Users & Computers. Since you are talking about logon scripts and such I'm assuming you have a Windows 2000/2003 domain. In ADU&C you can right click on the domain at the top, select properties, go to the Group Policy tab, and...
  5. SeniorGuru

    Can I execute more than 1 .vbs file from an .wsh file???

    You should be able to use either the Run Method (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wsmthrun.asp) or the Exec Method (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/wslrfexecmethod.asp) to do what you are looking for...
  6. SeniorGuru

    Pass Variable to 2nd script, process and return

    If ScriptB needs to be completely stand alone, then what you are asking for could be tough to do. However, if all that ScriptB contains is a function which proceesses whatever is passed to it and then returns the apropriate value then that is definatley doable. ScriptB.VBS would contain...
  7. SeniorGuru

    Need to edit a registry entry. Help Please.

    The best way to modifiy this value is actually through the Group Policy Object which defines that value. Under Win2k3 you can find them under Computer Configuration\Windows Settings\Security Settings\Local Policies\Security Options and they are called "Interactive Logon: Message title for users...
  8. SeniorGuru

    Can I execute more than 1 .vbs file from an .wsh file???

    Sure. How depends on exactly what you are attempting to do. Could you explain exactly what you are wanting to do?
  9. SeniorGuru

    NEWBIE Question on FTP and VBScript

    Yeah...I've got them separated out because the module I'm using to handle the d/l's doesn't allow restrictions on a per file basis.
  10. SeniorGuru

    NEWBIE Question on FTP and VBScript

    It is available for download, but you have to register on the site first. It is It's actually a ActiveX EXE. The installer should register it automatically. If it does not, then just double click on it in Windows Explorer and it will take care of the rest automagically.
  11. SeniorGuru

    NEWBIE Question on FTP and VBScript

    I have a scriptable FTP object that I wrote a while back because I couldn't find one that worked or wasn't extremely expensive. You can find it on www.pcsupport.net It supports the following Properties & Methods: Methods...

Part and Inventory Search

Back
Top