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 Shaun E 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: *

  • Users: lauraSatellite
  • Order by date
  1. lauraSatellite

    PHPDev install on win 2k server

    Hey, Im trying to install phpdev423 on a windows 2000 server with no connection to the internet. I get as far as installing phpdev but when i go to run the batch file (for windows 2000, as there is none for windows 2000 server) i get a dos screen message saying apache1.3.27 win32 php4.2.3 is...
  2. lauraSatellite

    CreateObject("WScript.Shell") wont work on Windows 2000 Server

    I just installed windows scripting host v 5.6 and its working away now. Thanks, -Laura
  3. lauraSatellite

    CreateObject("WScript.Shell") wont work on Windows 2000 Server

    Hi, I have a script that contains: set shell = CreateObject("WScript.Shell") currentDir = shell.CurrentDirectory I tested this script on a server at work, and it ran fine. I have just installed Windows 2000 server on my own computer, and am trying to get the same script to run on this server...
  4. lauraSatellite

    Active Directory Client Machines - Do they need specific OS?

    Hi, Im brand new to networking. I have a windows 2000 server which I need setup as Active Directory. The server will be connected to other client machines. I have been reading some "how to's" in this area, and am constantly coming accross references to windows 2000. Thats where my...
  5. lauraSatellite

    InternetExplorer.Application - dynamic ahref problem

    Thanks for your reply PHV, this did help, although the links cannot be followed. When i click a link, there seems to be no effort made to open the target folder. I do need a folder to be opened, however I tried specifying a file, rather than a folder, just to check if this was the problem, but...
  6. lauraSatellite

    InternetExplorer.Application - dynamic ahref problem

    Hi, I have the following .vbs file: '=====================Get Current Folder Location Set sh = CreateObject("WScript.Shell") currentLocation = sh.CurrentDirectory Set objExplorer = WScript.CreateObject("InternetExplorer.Application") DisplayInterface '=====================Internet Explorer...
  7. lauraSatellite

    Create folder named according to date & time

    That worked perfectly. Thanks PHV :)
  8. lauraSatellite

    Create folder named according to date & time

    Hi, im altering a script that creates a specifically named folder: Sub CreateFolders(strPath) Dim objFso Dim arrFolders Dim strDrive Dim strFolder Set objFso = CreateObject("Scripting.FileSystemObject") ' Format path (remove leading and trailing spaces, and final backslash) strPath =...
  9. lauraSatellite

    Form validation producing an error

    thanks a million for your helpful comments on the code. its working now :)
  10. lauraSatellite

    Form validation producing an error

    hi, i have the following page: <?php session_start(); header("Cache-control: private"); // IE 6 Fix. ?> <html> <head> <title>Page 1</title> </head> <body> <p>Please select one of the following:</P> Options: <br><br> <form method="POST" action="page2.php"> <input type=radio name=option...
  11. lauraSatellite

    Running vbscript from server

    ok ill give the echos a shot, thanks.
  12. lauraSatellite

    Running vbscript from server

    mrmovie the script should create a file and write information to it. this file isnt created when i run on the server. i do need wmi for the script to work, does this pose a problem for the server?
  13. lauraSatellite

    Running vbscript from server

    I have a script that im using to collect information on clients and/or servers on an active directory setup. when i run the script from a client machine it works fine, when i run from a server it doesnt work. any ideas?
  14. lauraSatellite

    Passing Variables further than one php page

    excellent thanks a million, this works with what you suggested. I didnt realise that sessions were the only way of doing this, I had wanted to reassign variable values, but sessions seem much cleaner, although im new to them. Thanks again. -laura
  15. lauraSatellite

    Passing Variables further than one php page

    Hi, I am trying to pass a variable ($textfileURL) from one 1.php page, to 2.php, and then on to 3.php. While i know how to get the variable to the 2.php, i have been unable to place the value of this variable within a form, and onto 3.php. Within 3.php I have tried things like: <input...
  16. lauraSatellite

    Calling *.vbs file from html onClick event

    The code works :) yay Thanks a million to all those that offered comments. Dilettante you were more than helpful. <html> <head> <title>test</title> </head> <script language="vbscript"> Public Sub RunScript() Set objWSH = CreateObject("WScript.Shell") strCMD = "cscript.exe c:\test.vbs"...
  17. lauraSatellite

    Calling *.vbs file from html onClick event

    i have tried the following in html to run the script: <html> <head> <title>test</title> </head> <script language="vbscript"> strDel = "test.vbs" dim scriptname Public Sub RunScript(scriptname) Set objWSH = CreateObject("WScript.Shell") strCMD = "cmd /c cscript.exe C:\"&...
  18. lauraSatellite

    Calling *.vbs file from html onClick event

    I am trying to run an external script from the html file. Is this not possible? The file i want to run (test.vbs) is a script that collectss information on the computer its connected to. I want this file to run when a user clicks a button on a html file. The code you gave works perfectly for...
  19. lauraSatellite

    Calling *.vbs file from html onClick event

    hey, i tried what you suggested: <HTML> <HEAD> <SCRIPT LANGUAGE="vbscript"> <!-- Sub cmdButton1_OnClick WshShell.Run "C:\test.vbs", 1, True End Sub --> </SCRIPT> </HEAD> <BODY BGCOLOR="white"> <INPUT TYPE="button" NAME="cmdButton1" VALUE="Run Script"> </BODY>...
  20. lauraSatellite

    Calling *.vbs file from html onClick event

    thanks, i will try that and see how it goes. yeah there is definately a smarter way to go about what i am trying to do, but unfortunately im not that read-up or practiced on vbscript, so something that works will do me just fine for now :)

Part and Inventory Search

Back
Top