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

    problem with a self-delete script

    i made an installation script... it is working but i have a problem with the last part. At the end of the script, i want to delete the current script after installation is complete here is the code i am using to self-delete the install: Option Explicit DeleteSelf Sub DeleteSelf()...
  2. anarchoi

    read a text file then copy content into clipboard

    Hello, Here's what i want to do : i already have a script that will list all the files inside a folder then make a text file with the infos (i posted the code below) But i want to copy the files list to the clipboard instead of writting the result in a text file.... could someone help me to...
  3. anarchoi

    delete all files except the ones created less than 30mins ago

    I'm using this script: Set objFileSys = CreateObject("Scripting.FileSystemObject") Set objFolder = objFileSys.GetFolder("C:\DVR_Media\video") For Each Folder In objFolder.SubFolders FolderCreated = Folder.DateCreated FolderAge = DateDiff("d", FolderCreated, Now) If FolderAge >= 0 Then...

Part and Inventory Search

Back
Top