Sep
07
2011

Windows Phone 7 Mango Game Released

We have just released a Sudoku game for Windows Phone 7.1 Mango.  “Stay Sharp Sudoku” was translated from an earlier Silverlight design exercise in order to gain familiarity with Windows Phone 7 Mango.  The application is available in the Windows Phone Marketplace.

Permanent link to this article: http://www.edalexanderconsulting.com/archives/475

Jul
10
2011

Office365 PowerShell Script to Block Incoming Email from Specified Domain

BPOS allowed a simple UI method to maintain a block list for incoming email to your hosted Exchange service. Office365 has no such simplified implementation and instead offers full access to create transport rules in Exchange. The rules can be created either through the web management UI or via PowerShell as below:

Save the following text as “BlockDomain365.ps1″ and run … > .\BlockDomain365 webring.com


if($args.length -eq 0) {Write-Warning "You must provide a domain to block (i.e. domain.com)" ; break}
else {$domainToBlock=$args[0]}
Write-Host "Adding Transport Rule to block" $domainToBlock
$transportRuleName = "Block_" + $domainToBlock
Import-Module MSOnline
$LiveCred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
Import-PSSession $Session
New-TransportRule -Name $transportRuleName -FromAddressContainsWords $domainToBlock -RejectMessageEnhancedStatusCode "5.7.1" -RejectMessageReasonText "SPAM: all email filtered from this domain"
Get-TransportRule $transportRuleName
Remove-PSSession $Session

Permanent link to this article: http://www.edalexanderconsulting.com/archives/455

May
02
2010

Moving from Documentum to SharePoint?

EAC is uniquely positioned to assist you in every step of the way. With a decade of Documentum architecture, deployment and administrative expertise we can help assess your current infrastructure and implementation landscape and translate into a more modern SharePoint on-premise or cloud based solution.

Major hurdles are to determine in-practice application verticals (specific business process implementations) and practical taxonomy in use within the Documentum legacy environment. This information, once documented becomes the root of SharePoint design requirements and migration planning documentation. EAC recommends a limited proof of concept to help your business make user interface, branding and process translation decisions.

Please use the contacts page to request more information or a one week on-site evaluation engagement.

The EAC Team.

Permanent link to this article: http://www.edalexanderconsulting.com/archives/425

Older posts «