
|
Manage Email Signatures centrally from your Desktop - For All Users extend your brand and promote your products, services, special events and news
|
| View previous topic :: View next topic |
| Author |
Message |
Sander Kuilman Just popping in
Joined: 05 Mar 2008 Posts: 3 Location: Groningen
|
| Posted: Wed Mar 05, 2008 9:57 am Post subject: Deleting custom user signatures |
|
|
I made a vbs script that removes the custom user signatures.
Copy paste the script into a file and name it signaturedelete.vbs for example.
U can than run the script during logon using a GPO.
U can also run it with a batch file. U than have to add: "cscript //nologo \\servername\SYSVOL\domain.local\scripts\signaturedelete.vbs"
to the batch file (without the quotes and the correct server and domain name)
For English Outlook:
------------------------------------
Dim FSO, Folder
set FSO=CreateObject("Scripting.FileSystemObject")
Set objNetwork = WScript.CreateObject("WScript.Network")
strUserName = objNetwork.UserName
Folder="C:\Documents and Settings\" & strUserName & "\Application Data\Microsoft\Signatures"
FSO.DeleteFolder(Folder)
------------------------------------
For Dutch Outlook:
------------------------------------
Dim FSO, Folder
set FSO=CreateObject("Scripting.FileSystemObject")
Set objNetwork = WScript.CreateObject("WScript.Network")
strUserName = objNetwork.UserName
Folder="C:\Documents and Settings\" & strUserName & "\Application Data\Microsoft\Handtekeningen"
FSO.DeleteFolder(Folder)
------------------------------------ |
|
| Back to top |
|
 |
Jesper Frier Certified Professional


Joined: 09 Sep 2006 Posts: 1925 Location: Stoevring, Denmark
|
| Posted: Sun Mar 23, 2008 1:45 pm Post subject: Deleting custom user signatures |
|
|
| This feature is included in version 5. |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|