Kenneth Qvistgaard Dalbjerg, IT Konsulent i århus
Citrix Certified

Archive for the ‘Computer’ Category

Limit SQL Server maximum memory SQL of WSUS

Thursday, June 16th, 2011 Posted in MSSQL | No Comments »

Start SQL Server Management Studio Connect to \\.\pipe\MSSQL$MICROSOFT##SSEE\sql\query Start a "New Query" And then put this into you SQLQuery1.sql window sp_configure ‘show advanced options’,1 reconfigure with override go sp_configure ‘max server memory’, 256 reconfigure with override go Then push the execute buttom, this will limit you SQL of WSUS to ...

TMG and Internet Explorer 9 – file:///C:/Program%20Files/Microsoft%20Forefront%20Threat%20Management%20Gateway/UI_HTMLs/Generic.htm?guid=

Tuesday, May 31st, 2011 Posted in Exchange, Windows | No Comments »

Hello If you have Internet Explorer 9 and TMG / UAG installed on the same machine you need to apply this patch, else you will get: file:///C:/Program%20Files/Microsoft%20Forefront%20Threat%20Management%20Gateway/UI_HTMLs/Generic.htm?guid=%7B1FC3773B-C941-450C-BA39-224904EFD093%7D * Open "C:\Program Files\Microsoft Forefront Threat Management Gateway\UI_HTMLs\TabsHandler\TabsHandler.htc" Search for the 3 lines which contain "paddingTop", and ...

Windows cannot print due to a problem with the current printer setup

Tuesday, May 24th, 2011 Posted in Citrix, Windows | No Comments »

I have this error on my Citrix servers, where one user cannot print to one printers, while others user could. "Windows cannot print due to a problem with the current printer setup" The Danish error: windows kan ikke udskrive pga. problemer med den ...

Get list of installed programs from dead disk ubuntu debian

Tuesday, May 24th, 2011 Posted in Debian | No Comments »

If you have a dead installation, some will not boot you can use this commands, to get the list of installed programs. [crayon-4fb7116618c28/] And this command to install it on a new installation: [crayon-4fb7116618ce7/]

Get all mailboxes that have this domain in there primary email address

Wednesday, May 11th, 2011 Posted in Exchange | No Comments »

GET-MAILBOX * | where { $_.PrimarySMTPAddress.Domain -eq 'kennethdalbjerg.dk' }

Roles to be installed before Exchange 2010 SP1

Friday, April 29th, 2011 Posted in Exchange, Windows | 1 Comment »

Start powershell and run import-module servermanager Then run Add-WindowsFeature NET-Framework,RSAT-ADDS,Web-Server,Web-Basic-Auth,Web-Windows-Auth,Web-Metabase,Web-Net-Ext,Web-Lgcy-Mgmt-Console,WAS-Process-Model,RSAT-Web-Server,Web-ISAPI-Ext,Web-Digest-Auth,Web-Dyn-Compression,NET-HTTP-Activation,RPC-Over-HTTP-Proxy -Restart

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 ...