Jump to content

Pauldg

Members
  • Posts

    2
  • Joined

  • Last visited

Reputation

0 Neutral

About Pauldg

Personal Information

  • Occupation
    Sys Admin
  • Location
    Queensland
  1. Thanks for the ideas & advise, I will add the site you mentioned to my group of growing reference sites.
  2. Hi, I am trying to create a VBScript to delete a spcific folder once I have gained the information from the registry. I have been able to create a script to identify the specific location of the folder (this different for every user) but I just don't know how to delete the folder once I have the information. I am wanting to delete the Outlook securetemp folder, several users seem to be having a problem with these folders filling up and then they are unable to view images in emails sent to them. Because each user has a slightly different secure temp folder location (microsoft thing) I need to create the script where it identifies the location first and then deletes the folder and recreates it after being deleted. is this possible and could anyone give me a suggestion on how to create this. To call for the inforamtion on the location this is what I have so far; Option Explicit Dim objShell Dim regSecureTempFolder Dim SecureTempFolder on error resume next regSecureTempFolder = "HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Security\OutlookSecureTempFolder" Set objshell = CreateObject("Wscript.Shell") SecureTempFolder = objshell.RegRead(regSecureTempFolder) Thanks for you ideas
×
×
  • Create New...