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 derfloh 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
  • Order by date
  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

    ...& strComputer & "\root\cimv2") Set colMonitoredProcesses = objWMIService. _ ExecNotificationQuery("select * from __instancecreationevent " _ & " within 1 where TargetInstance isa 'Win32_Process'") i = 0 Do While i = 0 Set objLatestProcess =...
  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

    ..._ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colProcessList = objWMIService.ExecQuery _ ("SELECT * FROM Win32_Process") For Each objProcess in colProcessList colProperties = objProcess.GetOwner(strNameOfUser,strUserDomain) Wscript.Echo "Process " &...
  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

    ...= GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" _ & strComputer & "\root\cimv2") Set colProcess = objWMIService.ExecQuery _ ("Select * from Win32_Process Where Name = " & strProcessKill ) For Each objProcess in colProcess objProcess.Terminate() Next End if End if WScript.Quit
  15. Sasstraliss

    Need more then one input box on remote shutdown tool

    Thanks, I'll test it tomorrow.
  16. Sasstraliss

    Need more then one input box on remote shutdown tool

    That sounds like something good, how can I do that?
  17. Sasstraliss

    Need more then one input box on remote shutdown tool

    It's possible, but I'd like the original dialog box to have all 3 text windows, so that one button will do all three.
  18. 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...
  19. Sasstraliss

    Window Won't Go Away - Simple Problem

    Thanks, looks like it's working!

Part and Inventory Search

Back
Top