Prasad Bolla's SharePoint Blog

Click Here to go through the Interesting posts within my Blog.

Click Here to go through the new posts in my blog.

Wednesday, May 25, 2016

How to make IE as a Default Browser in Windows 10 OS.



  1. Click on start menu
  2. Type default programs and click on it.
  3. Now in the default apps window.
  4. Go to section - Web Browser.
  5. Now change it from Microsoft Edge to Internet Explorer.

Wednesday, April 20, 2016

Internet Disconnecting Frequently while working on Battery with Hp Pro Book 430 Laptop

The below steps had fixed the issue.


  1.  Click the Start button.
  2. Type Power Options and press Enter.
  3. Click Continue if prompted.
  4. Click “Change plan settings” under the power plan that is currently selected.
  5. Click “Change advanced power settings”.
  6. In the Power Options box, click the + next to “Wireless Adapter Settings” to expand it.
  7. Then click the + next to “Power Saving Mode”.
  8. In the list that appears next to On battery, select “Maximum Performance”.
  9. Click OK.

Monday, April 11, 2016

Powershell Script to Install a DLL into GAC on Windows Server 2012/ Windows Server 2012 R2 OS when there is no Visual Studio Installed on Web Server



Set-location "DLL Source Path"           
[System.Reflection.Assembly]::Load("System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")           
$publish = New-Object System.EnterpriseServices.Internal.Publish           
$publish.GacInstall("DLL Source Path\FileName.dll")           
iisreset

Example for Source Paths:-
            C:\DLLS