Author Archives: Navdeep Madan

About Navdeep Madan

Working as a sharepoint, web solution consultant

How to login to azure through Powershell?

Go to start Search for the powershell. Click on “Windows Powershell”. Type the command “Add-AzureAccount” 4. Enter the username and password. 5. Once validated, you will see the following screen on the powershell :-

Posted in Uncategorized | Leave a comment

My daughter’s channel

Please subscribe to my daughter’s video.

Posted in Uncategorized | Leave a comment

Active Directory : How to get IP address from DNS ?

$Zones = @(Get-DnsServerZone) ForEach ($Zone in $Zones) { If ($Zone.ZoneName -eq “xxx.domain.xxx”) { $Record = $Zone | Get-DnsServerResourceRecord | Where {$_.HostName -Match “intranet”} $Record.RecordData | Out-File “c:\dns.txt” Write-Host $Record.RecordData.Ipv4Address } }

Posted in Uncategorized | Leave a comment

Upload data from multiple xml files to SharePoint

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml;using System.IO;using System.Data; namespace XML.Migration{    class Program    {        static void Main(string[] args)        {            //Provide the path of the lotus notes xml files            string directoryPath = @”C:\Path”;             //It cheque if the folder exisits            if (Directory.Exists(directoryPath))            … Continue reading

Posted in Uncategorized | Leave a comment

SharePoint 2010 VS SharePoint 2013

SharePoint 2010 VS SP 2013 Search Visual Upgrade – is not there SP2013 Document workspace – Is not there in SP2013 Meeting workspace -Is not there in SP2013 Group Work Site template- Is not there in SP2013 Visio process repository … Continue reading

Posted in Uncategorized | Leave a comment

29 SharePoint 2010 Visual How Tos

1. Accessing SharePoint 2010 Data with the .NET Client Object Model 2. Accessing SharePoint 2010 Data with the Silverlight Client Object Model 3. Accessing SharePoint 2010 List Data by Using LINQ to SharePoint 4. Accessing SharePoint 2010 Lists by Using … Continue reading

Posted in Uncategorized | Leave a comment

The base type ‘Microsoft.Office.Server.Search.Internal.UI.SearchAdministration’ is not allowed for this page.

Issue:- When I tried to open my Search administration Service application. I got the error message “The base ‘Microsoft.Office.Search.Internal.UI.SearchAdministration’ is not allowed for this age. The Type is not registered as safe.   Solution :- 1) Go to Central Administration … Continue reading

Posted in Uncategorized | 3 Comments

Chirpy : A Awesome visual studio Add-In

  Chirpy is used to minify the js and css file.

Posted in Uncategorized | 1 Comment

MOSS 2007 : Build numbers

SharePoint 2007 Version/Release Microsoft Support KB Reference Version Number from Central Admin MOSS 2007 or WSS 3.0 April 2010 Cumulative Update KB981042/KB981043 12.0.0.6535 MOSS 2007 or WSS 3.0 February 2010 Cumulative Update KB978395/KB978396 12.0.0.6529 MOSS 2007 or WSS 3.0 December … Continue reading

Posted in MOSS 2007 | Tagged , | Leave a comment

Sharepoint 2013/Office 15: New Apps Feature

SharePoint 2013 is coming with a new exciting feature. Apps –> Manage App CataLog Apps –> Manage App License Apps Website :  

Posted in Office 15, SharePoint 2013 | Leave a comment