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 gkittelson 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. OhMyGodJanice

    Script halts at "System Volume Information" folder

    The variable ObjDir contains the full path (including driveletter), so if you change the sub GoSubFolders(objDIR) to the following, everything will work fine... Sub GoSubFolders (objDIR) If objDIR <> sDIR & &quot;\System Volume Information&quot; Then for each eFolder in objDIR.Subfolders...
  2. OhMyGodJanice

    Maximize Windows Explorer Window

    This piece of code can solve your problem: Dim WshShell Set WshShell=Wscript.CreateObject(&quot;wscript.Shell&quot;) 'The &quot;3&quot; parameter in the following line opens it maximised WshShell.Run &quot;explorer.exe /e,c:\&quot;,3,TRUE WshShell=Nothing Wscript.Quit

Part and Inventory Search

Back
Top