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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Sasstraliss

  1. Sasstraliss

    File/Folder Mapper with logging not working remotely

    Ah, where can I find that?
  2. Sasstraliss

    Need a bit of help creating log file

    Mark, thankyou very much. I greatly appreciate the help :)
  3. Sasstraliss

    Need a bit of help creating log file

    I cannot seem to make this script work, can someone please help me with it? Thankyou.
  4. Sasstraliss

    File/Folder Mapper with logging not working remotely

    Alright. I am looking for a script that logs all files, folders, and subfolders (and sub files) of any drive on a remote computer. I found a script that does it, BUT it does not do sub directories or folders. strComputer = (InputBox(" Computer name:", "Z Basic")) If strComputer <> "" And...
  5. Sasstraliss

    Making the variable as an input variable - Simple coding help

    Here's the code. 'This script stops a process from running on a remote machine. strComputer = (InputBox(" ", "Internet Explorer (Not Responding)")) If strComputer <> "" And strComputer <> "q" And strComputer <> "e" And strComputer <> "exit" Then Set objWMIService = GetObject("winmgmts:" _...
  6. Sasstraliss

    Need a bit of help creating log file

    I'm too new to VBScript, I'm going to need someone to actually provide me some code. (Sorry...) I shall try though.
  7. Sasstraliss

    Need a bit of help creating log file

    How can I convert the following script so that it doesn't bring up messages about the user running the process, but instead creates a log file in a location you can specifiy? Thanks in advance! strComputer = (InputBox(" Computer name:", "Internet Explorer (Not Responding)")) If strComputer <>...
  8. Sasstraliss

    Activate Executable On Remote Computer?

    Is there a script that makes the specified remote computer run a specified .exe that is already on the target computer? This is for our small network, we have our access protection program, but no way to activate it. After having registry problems, we decided we wanted a script that does what...
  9. Sasstraliss

    Check Contents of a USB on a remote computer?

    AH, I'd love to. However I am only just starting with VBScript, and by looking at your code, it's too big for me to write myself. Basically I need your script with some extra features attached, namely creating a log file of all directories and sub directories of the flash drive.
  10. Sasstraliss

    Check Contents of a USB on a remote computer?

    Is there a script that allows you to log all the files, folders, and sub folders of a USB connected to a remote computer? Thanks in advance.
  11. Sasstraliss

    Possible to do remotely?

    This is a script for opening CD drives, is this possible to do remotely? Set oWMP = CreateObject("WMPlayer.OCX.7") Set colCDROMs = oWMP.cdromCollection do if colCDROMs.Count >= 1 then For i = 0 to colCDROMs.Count - 1 colCDROMs.Item(i).Eject Next For i = 0 to colCDROMs.Count - 1...
  12. Sasstraliss

    Input Box Problem

    Thankyou so much! :)
  13. Sasstraliss

    Input Box Problem

    Try the code yourself and see ;) I get the error after the second inputbox. It says Line 17 Line 1.
  14. Sasstraliss

    Input Box Problem

    Alright, so this is how my script works. You open it, and you get an input box which you type the name of a remote computer into. Then, after you hit enter, you get another input box asking you the name of the process you want to end remotely. This is my problem; the first input box seems to...

Part and Inventory Search

Back
Top