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!

Search results for query: *

  • Users: Sasstraliss
  • Content: Threads
  • Order by date
  1. 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...
  2. 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:" _...
  3. 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 <>...
  4. 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...
  5. 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.
  6. 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...
  7. 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...
  8. Sasstraliss

    Need more then one input box on remote shutdown tool

    Here's my code so far, and what is does is limited because it only has one dialog box, meaning that to shutdown multiple computers, you need to open up more then one instance of the program. What I'd like to do is change the code so that you have 3 input box's, so that by filling in the...
  9. Sasstraliss

    Window Won't Go Away - Simple Problem

    My problem is a simple one. When I open the .vbe file, a windows pops up with an Ok and Cancel button as well as a text box. The function of the program is to shutdown local network computers, and this is done through shutdown.exe after you type in the computer's name and then hit enter...

Part and Inventory Search

Back
Top