Link to home
Start Free TrialLog in
Avatar of modest911
modest911

asked on

Restrict outlook 2003 Delegation GPO

Does anyone know how to restrict Outlook 2003 delegation in GPO or any work arounds - The guy that signs my check does not want this to happen anymore!
ASKER CERTIFIED SOLUTION
Avatar of Sembee
Sembee
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of modest911
modest911

ASKER

Oh sorry about posting here - I was thinking this was an exchange policy I could modify in GPO -

Anyway thanks for you help -

So far what I did in GPO was disable the add in manager in GPO - So no one can reinstall the delegates option - But if you dont mind, can you help me out with the scritp to delete this file


This is the default file location

C:\Program Files\Microsoft Office\OFFICE11\ADDINS

Thanks


something likes this

Delete C:\Program Files\Microsoft Office\OFFICE11\ADDINS\DLGSETP.ECF

.bat

??
or adding to the login in script

Del C:\Program Files\Microsoft Office\OFFICE11\ADDINS\DLGSETP.ECF
Something like that would do the job.
Another thing you could do is rename it. Then if anyone does need access, simply name the file back again.

Simon.
Okay I have an update I was able to delete the file via a vb script - But if the user goes back to delegates outlook automatically reinstalls it! Any ideas of how I can stop this
Here is my scrip that works - But like I said the file gets reinstalled when a user adds a delegate by Outlook

deletefile "C:\Program Files\Microsoft Office\OFFICE11\ADDINS\DLGSETP.ECF"

function DeleteFile(WhatFile)
dim fso, fh
on Error Resume Next
set fso=CreateObject("Scripting.FileSystemObject")
fso.DeleteFile(WhatFile)
Set fh = fso.CreateTextFile("C:\DeleteFile.txt")
if Err Then
  fh.WriteLine("Error while deleting '" & WhatFile & "': [" & Err.Number & "]: " & Err.Description)
Else
  fh.WriteLine("'" & WhatFile & "' was deleted successfully")
End If
fh.Close
End Function
That sounds like Outlook is repairing itself. However it is the only way I know of for blocking access.

You could try putting a pointer question in the Outlook TA.
https://www.experts-exchange.com/Applications/MS_Office/Outlook/
This is more of an Outlook issue than an Exchange issue.

Simon.