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 IamaSherpa 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. Mediocer

    Case from text file.

    '*********************************************************************************** ' Exporting 'Setting Variables Const ForReading = 1 Const ForWriting = 2 Const ForAppending = 8 ' Get Drivers and Export to TXT FIles strComputer = "." Set objFSO = CreateObject("Scripting.FileSystemObject")...
  2. Mediocer

    Case from text file.

    This is my script, just need to added the CASE portion of it to add it to the main script ( i work in pieces) . '*********************************************************************************** ' Exporting 'Setting Variables Const ForReading = 1 Const ForWriting = 2 Const ForAppending = 8...
  3. Mediocer

    Case from text file.

    This is going to run on a desktop computer, how would it be modified for NON html settings?
  4. Mediocer

    Case from text file.

    I am trying to create a VBS script that will prompt the user with a select from list (SELECT CASE). The text file is generated and can have 2-10 lines of data. Besides doing a prompt for each line with a Yes/No question. Is there a way users can select it from a list and from that a variable is...
  5. Mediocer

    Delete User Folders and SID in registry

    I simplified this by using: sPath = "reg delete " & """HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\" & getSID & """ /f" CMDRegistry = sPath ' redundant objShell.Run CMDRegistry
  6. Mediocer

    Delete User Folders and SID in registry

    We are trying to clean up student computers by removing User Profiles and the associated Registry entry. I started with this: http://www.tek-tips.com/viewthread.cfm?qid=674375 When I entry the full path, it works great. "SOFTWARE\Microsoft\Windows...
  7. Mediocer

    Resetting home profile permissions for windows 7 and XP users

    I am looking for a way to export errors if the user does not exist, i.e. cannot set owner to userName. Any thoughts?
  8. Mediocer

    Resetting home profile permissions for windows 7 and XP users

    Here is the script that I am using. It works for me in a testing environment. Any input or suggestions is helpful. I am not a programmer by any means, but can Google pretty well =D We now have windows 7 and our current bat script is not working due to the fact the Vista and 7 tag a .V2 at the...

Part and Inventory Search

Back
Top