Jan
6
Posted by
Subhasis Padhy
comments (0)
window.fbAsyncInit = function() { FB.init({appId: '177917088908434', status: true, cookie: true, xfbml: true}); }; (function() { var e = document.createElement('script'); e.type = 'text/javascript'; e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js'; e.async = true; document.getElementById('fb-root').appendChild(e); }()); ...
Posted by
Subhasis Padhy
comments (0)
I got this error while opening Sharepoint 2010 Central admin in IE with IIS 7. I tried restarting the application pool , but no luck. In the event viewer, I found the following log entry. Application pool SharePoint Central Administration v4 has been disabled. Windows Process Activation Service (WAS) encountered a failure when it started a worker process to serve the application pool. Solution If you have changed your windows password recently and you didn't updated you managed account, then you are likely to get this error. To fix this, go to identity of the application pool, and change it giving the latest password. and restart the app pool.You are done!!! ...
Posted by
Subhasis Padhy
comments (0)
Environments like SharePoint Foundation add their own custom cmdlet library by installing a PowerShell Snap-in. When you install SharePoint Foundation, it installs its core PowerShell snap-in named Microsoft.SharePoint.PowerShell. However, you have to ensure that Microsoft.SharePoint.PowerShell is loaded before you begin to call its cmdlets. Microsoft Foundation provides a specialized version of the PowerShell console known as the SharePoint 2010 Management Shell. You can launch the SharePoint 2010 Management Shell from a shortcut that SharePoint Foundation adds to the Windows Start menu> All Programs > Microsoft SharePoint 2010 Products > SharePoint 2010 Management Shell ...
Posted by
Subhasis Padhy
comments (0)
Windows Server 2008 or Windows Server 2008 R2 includes a powerful utility named PowerShell Integrated Scripting Environment(ISE).It allows to debug PowerShell Scripts in a very efficient manner.But unfortunately it doesn’t give intellisense support. SharePoint Foundation installs the PowerShell runtime ,but does not automatically install the PowerShell ISE. You have to explicitly enable it by adding a windows ...
Posted by
Subhasis Padhy
comments (0)
Windows Server 2008 or Windows Server 2008 R2 includes a powerful utility named PowerShell Integrated Scripting Environment(ISE).It allows to debug PowerShell Scripts in a very efficient manner.But unfortunately it doesn’t give intellisense support. SharePoint Foundation installs the PowerShell runtime ,but does not automatically install the PowerShell ISE. You have to explicitly enable it by adding a windows feature ...
Posted by
Subhasis Padhy
comments (0)
PowerShell is based on reusable libraries containing functions known as cmdlets (pronounced command lets). Cmdlets have names which follow the convention of a common verb followed by a noun. For example, the built-in PowerShell libraries provide a cmdlet named Get-Process which returns a collection of objects representing the Windows processes running on the current machine. PS D:\Users\Administrator> Get-Process Handles NPM(K) PM(K) WS(K) VM(M) CPU(s) Id ProcessName ------- ------ ----- ----- ----- ------ ...
Posted by
Subhasis Padhy
comments (0)
There are two common ways in which you can use PowerShell. First, you can execute commands interactively using the PowerShell console window. Second, you can write scripts to automate administration tasks. Accessing PowerShell Console window Start > All Programs > Accessories > Windows PowerShell > Windows PowerShell Common Help Use the “exit” keyword to exit the shell Ctrl-C will interrupt the current task returning you to the prompt. A command can be spread over multiple lines and the interpreter will prompt for additional input. The line continuation character is the back-quote ‘`’ (also called the back-tick). Ctrl-C will interrupt the current ...