Hello,
I found this script in this article that I like to use to cycle through multiplue document libraries for a web application.
There is PowerShell code that sets the properties for versioning (see below). If I wanted to just see what the settings are, what would the code look like?
...
$list.EnableVersioning = $true;
$list.EnableMinorVersions = $false;
$list.MajorWithMinorVersionsLimit = 0;
$list.MajorVersionLimit = 0;
...
How would I run the whole script?
Thanks.
Paul