'Create the FileSystemObject
Set objFSO = Createobject("Scripting.FileSystemObject")
'Specify the folder that will be the root
strFolder = "C:\dell" 'using dell directory is just example
'This script is designed to run from the command line and will write out all files
'Here we call the subroutine
GetFiles strFolder
'Here is the sub
Sub GetFiles(ByVal strDirectory)
Set objFolder = objFSO.GetFolder(strDirectory)
'This gets the files from the root directory
For Each objFile in objFolder.Files
Wscript.Echo objFile.Path
Next
'This is the recursion - it gets all subfolders and files within
For Each objFolder in objFolder.SubFolders
GetFiles objFolder.Path
Next
End Sub
Subscribe to:
Post Comments (Atom)
New beginner's guide to PowerShell on my GitHub page
I created a beginner's guide to PowerShell here: https://github.com/aamjohns/Powershell_Guide/blob/main/README.md I hope it helps someo...
-
Downloads MSI-Installer or Zip of Executable Instruction Manual PDF Description I started creating instructions similar to: Acc...
-
I encountered this error using Office 2016 (32-bit) on Windows 7 x64. Logged on to the system as a User, I opened Control Panel>Mail...
-
This is an annoying issue that occurs in an inconsistent manner. Fortunately the fix is easy. The fix involves deleting some keys from the r...
No comments:
Post a Comment