Skip to main content

Unable to find a default server with Active Directory Web Services running




  1. Install .Net Framework 3.5 Sp1
  2. Need to install hotfix:   http://support.microsoft.com/kb/969429
  3. http://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=20556
  4. Install Active directory management gateway service (Windows6.0-KB968934) from http://www.microsoft.com/en-us/download/details.aspx?id=2852 





Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...