Steps Involved
- Open a new Notepad.
- Copy and paste the following script in the notepad.
$site=Get-SPsite "http://serverName:11111/sites/Vijai/" $web=$site.OpenWeb() ## Get all the SPWeb properties $properties=$web.Properties ## $dictionaryEntry - Defines a dictionary key/value pair that can be set or retrieved. foreach($dictionaryEntry in $properties) { write-host -f Green "Key: " $dictionaryEntry.Key "--- Value: " $dictionaryEntry.Value } - Save the file as GetProperties.ps1.
- Open SharePoint 2010 Management Shell by going to Start | All Programs | SharePoint | Microsoft SharePoint 2010 Products | SharePoint 2010 Management Shell (Run as Administrator).
- Run the GetProperties.ps1 file by running the following command
<FilePath>\GetProperties.ps1
Where <FilePath> is the location where the GetProperties.ps1 is availableFor Example: D:\VijaiPOC\GetProperties.ps1

Join the conversation! Your thoughts help the community grow.