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 Chris Miller 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. jlinebaugh

    Finding Flash Version via VBS

    Thanks, I finally decided to just write out the registry value for the machine to a file. Here is the code: 'Author: Jake Linebaugh Const ForAppending = 8 Const HKEY_LOCAL_MACHINE = &H80000002 Set objNet = CreateObject("WScript.Network") Set objComputer = CreateObject("Shell.LocalMachine")...
  2. jlinebaugh

    Finding Flash Version via VBS

    I am familiar with the FSO aspect of VB scripting, but I have been asked to generate a text based report on what version of the flash plugin all the computers in our domain are running. Does anyone know what the Active X controls stings are or maybe have a sample script? Thanks Jake
  3. jlinebaugh

    VB Script for selective file moves

    I am an idiot, that is sort of the same code that I had before and it was doing the same thing...NOTHING. No errors, no file moves...nada. Well, I decided after it didnt work to look at the files and none of the files were being moved because the dates were today! DUH!!!! Thansk for the...
  4. jlinebaugh

    VB Script for selective file moves

    I am going to give it a try and let you know Thanks Jake
  5. jlinebaugh

    VB Script to retrieve Disk Information

    Do you want this information written to a text file? Jake
  6. jlinebaugh

    Using logon script to launch IE through GPO

    Make it easy on yourself. Configure a GPO IF you have AD and use the regWrite statement Jake
  7. jlinebaugh

    Page File

    You can use computer management for that and possibly a GPO is you are using Active Directory See if you can do anything with this code strComputer = "." Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colPageFiles =...
  8. jlinebaugh

    Using logon script to launch IE through GPO

    I build Kiosks for my company also. I use a software that's $40 and is a time saver. Its called PWB 2.0 (Public Web Browser). Very programmable and nice security and tools. Here is the link: http://www.teamsoftwaresolutions.com/ Jake
  9. jlinebaugh

    VB Script for selective file moves

    Here is what I am doing: 1 - Enumerate all subfolders in "C:\DirectMail" and if the folder does not exist in "C:\Archive" then create it 2 - Enumerate all files in all subfolders of "C:\DirectMail" and if the file is older than 14 days then move it to its respective folder in "C:\Archive"...

Part and Inventory Search

Back
Top