Category Archives: Uncategorized

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

How to update the web part properties at the runtime in SharePoint 2010?

1) SharePoint 2010 page have the SPLimitedWEbPartManager which manages the web part instances in particular page. 2) You have get the instance of the SPLimitedWebpart manager from a page and traverse all the web part. 3) Find the web part, … Continue reading

Posted in Uncategorized | Tagged , | 5 Comments

Join a Community of Technology Professionals

Microsoft myTechEd is a social networking and technical education resource developed for the technology professionals that attend TechEd North America, both in-person or virtually online. Year-round access to like-minded professionals provides myTechEd members with opportunities to LEARN and help advance … Continue reading

Posted in Uncategorized | 2 Comments