Windows 10 Notification
Install-Module BurntToast
Install-Module BurntToast
Hi !
Roualin.fr is now PowershellTips.fr !
Same site, same kinds of tips, infos, scripts, don’t worry !
Hope you will still enjoy !
Hello,
For those who are starting to work on O365 using powershell, here below are some short lines to help you.
Prerequisites :
https://technet.microsoft.com/en-us/library/dn975125.aspx
Connect to O365 :
$cred=get-credential -Message "Please provide an O365 admin account" connect-msolservice -credential $cred $O365Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell -Credential $cred -Authentication Basic -AllowRedirection Import-PSSession $O365Session -AllowClobber
Add a licence to a user :
The last few posts I’ve talked a LOT about configuring diagnostics. Much of that comes not because I love pretty graphs, but because I end up working with customers who are troubleshooting problems with applications running on Windows Azure.
Here is MY list of recommendations to help things run a little smoother:
While writing the series of posts, I kept running into more best practices. So here are a few more items you should consider in securing your Windows Azureapplication.
Here are some tools, coding tips, and best practices:
(source : msexchange.org)
Let’s face it: it is getting difficult to find tips that can improve overall system performance, when it matters for Exchange Server 2007. This last version of Exchange Server outperforms all its predecessors, since it can now take advantage of the x64 architecture in all its glory.
When you create a scheduled task, sometimes and old task is still running or already launched even if the task is stopped. To stop all previous process, I created a little function 🙂 :
function stopprocess($processname){
$wpids=$null
$pids=$null
$a=(Get-WmiObject -class win32_process | where{$_.ProcessName -eq $processname})
$a|foreach-object{
Exchange Server 2007 introduced a new GUI management console (Exchange Management Console) to replace the Exchange System Manager (ESM) of previous versions. This earlier blog post The new Exchange 2007 Management Console overview gives an overview of the console. In this blog post I’ll show some tips and tricks of the console.
(From : http://technet.microsoft.com/en-us/library/aa996011(v=exchg.65).aspx)
Topic Last Modified: 2006-10-20
With Microsoft Exchange Server 2007, deployment is easier than it’s ever been. Take a look at some of the major improvements to Exchange 2007 Setup:
You must be logged in to post a comment.