How to: export all Outlook Singantures from User Profiles to specified Folder

This Script will export your Outlook Signatures from a User Pprofile Management Share (like Citrix UPM) and create a folder on a specified Path were it stores the Signatures so that you can import it on a new share or sth like that.


$UserFolders = Get-ChildItem \\Example$\XAProfile (Path to your User files)

$path2 = "exampleFolder\AppData\Roaming\Microsoft\Signatures" (Path to Signatures in your Userfolder)

$Destination = "C:\Signatures" (your export path)

foreach ($Item in $UserFolders)

{robocopy /copy:DAT \\Example$\XAProfile\$item\examplefolder\AppData\Roaming\Microsoft\Signatures  $Destination\$Item

}


Comments

Popular posts from this blog

Export a list of all XenApp 7.x published applications via Powershell

Implementing Single Sign On with NetScaler and Kerberos Constrained Delegation (KCD)

How to: Create a Client Certificate for LDAPS with OpenSSL