Sunday, 2 June 2013

Microsoft.Crm.Setup.Server.GrantConfigDBDatabaseAccessAction failed. Windows NT user or group 'MYDOMAIN\SQLAccessGroup' not found. Check the name again. - Pablo Peralta's Blog

Microsoft.Crm.Setup.Server.GrantConfigDBDatabaseAccessAction failed. Windows NT user or group 'MYDOMAIN\SQLAccessGroup' not found. Check the name again. - Pablo Peralta's Blog:

'via Blog this'

Sunday, 5 May 2013

Web Resources for Microsoft Dynamics CRM

 

File File extensions Type
Webpage (HTML)
.htm, .html
1
Style Sheet (CSS)
.css
2
Script (JScript)
.js
3
Data (XML)
.xml
4
Image (PNG)
.png
5
Image (JPG)
.jpg
6
Image (GIF)
.gif
7
Silverlight (XAP)
.xap
8
StyleSheet (XSL)
.xsl, .xslt
9
Image (ICO)
.ico
10

http://msdn.microsoft.com/en-us/library/gg309473.aspx

Monday, 18 March 2013

Apache2 setting to exclude .svn

<DirectoryMatch .*\.svn/.*>
    Deny From All
    Satisfy all
</DirectoryMatch>

Monday, 7 January 2013

Windows server 2008 - internet time sync

w32tm /config /syncfromflags:MANUAL /manualpeerlist:machine1

w32tm /config /update

Tuesday, 1 January 2013

CRM 2011: IFD Session Timeout


  1. run powershell.exe (as administrator)
    Windows PowerShell
    Copyright (C) 2009 Microsoft Corporation. All rights reserved.
  2. PS C:\Users\Administrator>
          add-pssnapin microsoft.adfs.powershell
  3. PS C:\Users\Administrator>
          Get-ADFSRelyingPartyTrust | select -property name
    Name
    ----
    auth.<something>
  4. PS >
       Set-ADFSRelyingPartyTrust -TargetName:"auth.<something>"
                                 -TokenLifetime 480
  5. Check
    PS C:\Users\Administrator>
       Get-ADFSRelyingPartyTrust | select                             -property name,tokenlifetime

       Name               TokenLifetime
       ----               -------------   auth.<something>   480


'via Blog this'