Exchange Room Mailbox automatic deletes calendar appointments
If you have created a room mailbox, and want to create appointments directly in the calendar of the room mailbox, then you need to: Enable the user in Active Directory…
If you have created a room mailbox, and want to create appointments directly in the calendar of the room mailbox, then you need to: Enable the user in Active Directory…
After a little research i found that disables RTP Encryption make my outgoing call work again. The problems with dialing a number was happen after upgraded to 8.4.18. Go to…
Security Groups First create a Security groups in you Active directory. I call it IT-Admins. And add members to it. There members hive will be granted locally administrators rights on…
Installation of the Ashay Client: Download the Ahsay Client: http://eval.ahsay.com/obs/download/obm-win.exe After the installation please apply the latest hotfix. http://download.ahsay.com/support/hot-fixes/55/obm-win-hotfix.zip Put the content of the hotfix into the folder: c:\program files\ahsayobm\…
If you get this warning: W: GPG error: http://extras.ubuntu.com maverick Release: The following signatures couldn’t be verified because the public key is not available: NO_PUBKEY 16126D3A3E5C1192 You just need to…
First install http://www.quest.com/powershell/activeroles-server.aspx Add-PSSnapin Quest.ActiveRoles.ADManagement -ErrorAction SilentlyContinue $File = “C:\ita\securitygroups.txt” $AllGroups = get-qadgroup -grouptype “Security” | select name, Description $AllGroups | Foreach { echo “” echo “” echo $_.name echo…
get-mailbox | select name, alias, samaccountname, RecipientType, RecipientTypeDetails, displayname | export-csv C:\ITA\usersexport.csv -encoding unicode
import-csv user.csv | foreach-object { echo $_.Displayname New-Mailbox -name ( $_.Name) -Alias $_.Alias -SamAccountName $_.SamAccountName -RecipientType $_.RecipientType -RecipientTypeDetails $_.RecipientTypeDetails -Displayname $_.Displayname }
$File = “C:\ita\groupslog.txt” $Mailboxes = Get-DistributionGroup | select name , alias ,displayname,EmailAddresses $Mailboxes | ForEach { echo “” echo “” echo $_.name Get-DistributionGroupMember -id $_.alias } | out-File $File
$file = “C:\ita\fulladgang.txt” $AllUsers = get-mailbox | select SamAccountName, name, alias $AllUsers | Foreach { echo “” echo “” echo “” echo $_.name get-mailboxfolderpermission -identity $Mailbox } | out-File $File