Microsoft C5 åbner og lukker med det samme igen
Wednesday, March 23rd, 2011 Posted in Windows | No Comments »Hvis du har problemer med at C5 2010 bare lukker med det samme nå du åbner det, så skyldtes det sikkert at der i ini filen er en linie med -usupervisor Slet denne linie
Active Sync – Unexpected Exchange mailbox Server (Exchange 2003)
Tuesday, February 15th, 2011 Posted in Exchange, Windows | No Comments »Unexpected Exchange mailbox Server error: Server: [server01.XXXX.XX] User: [XXX@XXXX.XX] HTTP status code: [503]. Verify that the Exchange mailbox Server is working correctly. If you got this error, please follow this steps: Try disabling the firewall Reset Exchange Folder in IIS - http://support.microsoft.com/kb/883380 (Dont ...
Give all users access to all mailbox calendar
Monday, February 14th, 2011 Posted in Exchange, Powershell | No Comments »foreach ($Mailbox in (Get-Mailbox -ResultSize Unlimited)) { Add-MailboxFolderPermission -identity "$($Mailbox.Name):\calendar" -AccessRights Author -User default }
Exchange Room Mailbox automatic deletes calendar appointments
Monday, February 14th, 2011 Posted in Exchange | No Comments »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 Set the password of the user Log on to a workstation with that ...
Problems making call with Snom phones after upgraded to 8.4.18 (Firmware 8)
Friday, February 11th, 2011 Posted in Computer | No Comments »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 the webpage of the phone, click on identity 1, click RTP and ...
Howto to Push local administrators into domain member computers with GPO
Friday, February 4th, 2011 Posted in Andet, Windows | No Comments »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 member computers. Group Policy Create a GPO in the OU where you member computers ...
Backup of Exchange 2010 database level and document level with Ahsay
Friday, February 4th, 2011 Posted in Ahsay, Exchange, Windows | 4 Comments »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\ Disable Continous Backup services Database level: To backup the database level, just select Exchange Database Level, and ...
Powershell – Get all Security Groups from AD
Thursday, January 27th, 2011 Posted in Powershell | No Comments »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 $_.description } | out-File $File
Powershell – Export user/mailboxes to CSV file
Thursday, January 27th, 2011 Posted in Powershell | No Comments »get-mailbox | select name, alias, samaccountname, RecipientType, RecipientTypeDetails, displayname | export-csv C:\ITA\usersexport.csv -encoding unicode
Powershell – Import users from CSV file
Thursday, January 27th, 2011 Posted in Powershell | No Comments »import-csv user.csv | foreach-object { echo $_.Displayname New-Mailbox -name ( $_.Name)` -Alias $_.Alias` -SamAccountName $_.SamAccountName` -RecipientType $_.RecipientType` -RecipientTypeDetails $_.RecipientTypeDetails` -Displayname $_.Displayname` }