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 strongm 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. pxm148

    VBS script won't start (schedule task)

    Hey guys, The user has admin right for sure. The script starts it just hang until I unlock the machine. When I unlock the machine I can see that the script is started but it's only then that it resume his task. The script opens 2 browser windows, one for loging activity and the other to get...
  2. pxm148

    VBS script won't start (schedule task)

    Here is the exact line: cscript GetLogFile.vbs //b //nologo I did check on the property of the task but "Wake the computer to run this task" doesn't seem to be any where. The security context is fine as I can run the task by right clicking it.
  3. pxm148

    VBS script won't start (schedule task)

    This is exactly what I have put in: cscript GetLogFile.vbs //b //nologo I did look into the task property but there is no "wake the computer to run this task" option..
  4. pxm148

    VBS script won't start (schedule task)

    hey guys, it doesn't work. The script starts and doesn't do nothing until I get on the machine hit ctrl-Alt-del and login. Then I can see it start running... The script access a web site that need authentification through an Apache popup. Everything works fine when I lauch the vbs buy right...
  5. pxm148

    VBS script won't start (schedule task)

    Hi, I have a problem with my VBS. It's a vbs that goes and get a web page download the content and save it in a file. It's working great when I run it manually, but when I use task manager on WinNT4 the VBS starts but then hang until I un lock the machine and login. It seem that when the machine...
  6. pxm148

    Downloading a specific file on a web page.

    Oups I didn't see your reply when I posted mine, Thanks for the help anyway...
  7. pxm148

    Downloading a specific file on a web page.

    I found how to do it: PageContain = objExplorer.document.body.innerText
  8. pxm148

    Downloading a specific file on a web page.

    I would like to be able to download a file on a website. Here what I'm trying to use: Set objExplorer = WScript.CreateObject _ ("InternetExplorer.Application", "IE_") objExplorer.Navigate "http://www.google.com/file.txt" But that only displays the page on the IE window. I would like to...
  9. pxm148

    Log onto Authenticated Website

    Ok I finnally figured it out. You don't need to sendkey everything, anyway it worked for me: objShell.SendKeys "Username" objShell.SendKeys "Password"
  10. pxm148

    Sending input to an HTML form when controlling IE from VBscript

    I also want to do that but, the user and password need to be input in a popup windows that opens when I access the page. How do I send the user and password to the window popup?
  11. pxm148

    Log onto Authenticated Website

    Well this doesn't work for me. when I run it from the commande line: c:\> cscript filename.vbs the focus is not on the user/pass popup window. If I execute the script and one the popup appears I click on it then I can see the use and password been pass the the popup. But I have to click on it...
  12. pxm148

    VBScript and HourGlass

    Hi cdavidsn , you said that you solved the problem using cscript rahter then wscript. Can you provide the code you have put in? Does CScript runs on every windows machine like vbs? Thanks

Part and Inventory Search

Back
Top