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 Mike Lewis 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. boostaz1

    contact your Customer Service Representative now for service 812C

    Please contact your Customer Service Representative now for service 812C What does this error mean and how do i get rid of it
  2. boostaz1

    Date Part help needed.

    Kind of Simple but it works great Paste into ASP Page: <% td = now() select case month(td) Case 1 md =&quot;January&quot; Case 2 md =&quot;February&quot; Case 3 md =&quot;March&quot; Case 4 md =&quot;April&quot; Case 5 md =&quot;May&quot; Case 6 md =&quot;June&quot; Case...
  3. boostaz1

    install hotfix on remote computers

    i use this as a vbs file works like a champ: Const HKEY_CLASSES_ROOT = &H80000000 Const HKEY_CURRENT_USER = &H80000001 Const HKEY_LOCAL_MACHINE = &H80000002 Const HKEY_USERS = &H80000003 Const HKEY_CURRENT_CONFIG = &H80000005 On Error Resume Next '=================== '| Create IE Object...
  4. boostaz1

    starting a VBS script server side from a asp page

    I have a script which monitors the free disk space on all my w2k servers and outputs the data to my sql server. I currently have it set up on a schedule. However I would also like to start the script server side from a web page any ideas. As always here is my code use it freely. Dim strStatus...
  5. boostaz1

    Question Do While Statements

    My script just exits and never continues on. If i remove the do while from the function it works fine.... here is the full script: Const HKEY_CLASSES_ROOT = &H80000000 Const HKEY_CURRENT_USER = &H80000001 Const HKEY_LOCAL_MACHINE = &H80000002 Const HKEY_USERS = &H80000003 Const...
  6. boostaz1

    Question Do While Statements

    Why can't I run a do while statement from within a function? Example: Function pse() objExplorer.Document.Body.All.IPAddress.setfocus Do While objExplorer.Document.Body.All.scan.value = &quot;Scan&quot; wscript.sleep 1000 Loop End Function
  7. boostaz1

    Microsoft Installed patches?

    Any one have any ideas on how to identify reliably which microsoft patches are installed. I am using the following code but have found it unreliable. Dim objWMIService, objSystem IPaddress = inputbox(&quot;Enter IPAddress&quot;) Call pingcheck(ipaddress) Function pingcheck(IPAddress) Set...

Part and Inventory Search

Back
Top