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 dencom 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: causative
  • Content: Threads
  • Order by date
  1. causative

    ctrl + h in multiple files

    Hi This is Richard Mueller script MVP ADSI ( it replace 1 string to another 1 in multiple files in directory ) Option Explicit Dim objFSO, strFolder, objFolder, objFile Dim strOldValue, strNewValue, objRead, strContents, objWrite Const ForReading = 1 Const ForWriting = 2 strFolder =...
  2. causative

    7-zip using vbs

    Hi I have a question is it a good option to compress folders to separate archives using 7-zip in vbs? It's easy to do it in bat: FOR /D %%F IN ("*") DO ( "C:\Program Files (x86)\7-Zip\7z.exe" a -t7z -mx9 -r -y "%%F.7z" "%%F" ) I was searching for something in vbs, but codes are very long and...
  3. causative

    count files containing specific string in a filename

    Hi forum members! This code below count the number of txt files. What should be changed to count files containing specific string in a filename? Option Explicit Dim fso, count, src, folder, file Set fso = CreateObject("Scripting.FileSystemObject") src = "C:\Users\Mark\Desktop\test" Set...
  4. causative

    script to generate monthly

    Hello I need your help with the script. I want to create monthly folders for example: Jan14, Feb14, March14 and so.... for one year Is it possible to do? Thx in advice

Part and Inventory Search

Back
Top