Working ICA File for starting published application

October 22nd, 2008 by René No comments »

Sometimes you want to start a published application from another Citrix server within your current session. One way to this is to create an .ica file of the application on the other server and start from your current session.

You could use the following .ica as an example.

» Read more: Working ICA File for starting published application

Add a New E-Mail Address to a Mailbox User with PowerShell

August 12th, 2008 by René No comments »

This is how you can add an extra e-mail address to an Exchange Mailbox User using a little Powershell script. The script below uses two ways of adding an address to a mailbox.
[sourcecode lang="powershell"]
$Temp = Get-Mailbox -Identity
$Temp.EmailAddresses.Add(‘smtp:john@secondaddress.contoso.com’)
$Temp.EmailAddresses += (‘smtp:john@thirdaddress.contoso.com’)
Set-Mailbox -Instance $Temp

[/sourcecode]
Check out the full procedure in this Technet article.