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. tfujitani

    recursive search

    How can I do a recursive search of a directory and return all of the files (names and modified dates) contained within all of the subdirectories?
  2. tfujitani

    Accessing files with varying number of subfolders

    How can I access files that reside in a folder that has different levels of subfolders. Some files are 4 levels deep, some are 3 levels deep etc.. Is there an easy way to do this because accessing the files one folder at a time makes for a long script. I need to be able to get all of the file...
  3. tfujitani

    How do I use a variable in place of a service name during a WMI Query

    I got the following script from Microsoft Technet. I want to modify it so that instead of having to enter the service name into the script, the user can specify the service. In other words, how do I replace 'DbService' with a variable? I've tried ...Where Name = '" & Variable &...
  4. tfujitani

    Cannot delete registry key if it has a subkey

    When I use the following to delete a registry key: Set WshShell = WScript.CreateObject("WScript.Shell") WshShell.RegDelete "HKLM\SOFTWARE\ODBC\ODBC.INI\" It won't delete the registry key if there is a subkey (for example; "HKLM\SOFTWARE\ODBC\ODBC.INI\Test"). Is...
  5. tfujitani

    Register and unRegister .dll files

    How can I unRegister a bunch of .dll files in VBScript? I have tried using regsvr32.exe but it throws up a dialog box for each file that I have to click on.
  6. tfujitani

    File properties of files in a folder and in all subfolders

    I need to get the creation dates for all files in a folder, including the files in any subfolders. I can get the creation dates for files in a folder but if there are a lot of subfolders the script gets really long.

Part and Inventory Search

Back
Top