**********************
Windows PowerShell Transcript Start
Start time: 20100915124020
Username : CONTOSO\sp_farm
Machine : SHAREPOINT (Microsoft Windows NT 6.1.7600.0)
**********************
Transcript started, output file is C:\Users\sp_farm\Documents\PowerShell_transc
ript.20100915124020.txt
PS C:\Users\sp_farm> notepad
PS C:\Users\sp_farm> get-command -Noun spstate*
CommandType Name Definition
———– —- ———-
Cmdlet Dismount-SPStateServiceDatabase Dismount-SPStateServiceDatab…
Cmdlet Get-SPStateServiceApplication Get-SPStateServiceApplicatio…
Cmdlet Get-SPStateServiceApplicatio… Get-SPStateServiceApplicatio…
Cmdlet Get-SPStateServiceDatabase Get-SPStateServiceDatabase […
Cmdlet Initialize-SPStateServiceDat… Initialize-SPStateServiceDat…
Cmdlet Mount-SPStateServiceDatabase Mount-SPStateServiceDatabase…
Cmdlet New-SPStateServiceApplication New-SPStateServiceApplicatio…
Cmdlet New-SPStateServiceApplicatio… New-SPStateServiceApplicatio…
Cmdlet New-SPStateServiceDatabase New-SPStateServiceDatabase […
Cmdlet Remove-SPStateServiceDatabase Remove-SPStateServiceDatabas…
Cmdlet Resume-SPStateServiceDatabase Resume-SPStateServiceDatabas…
Cmdlet Set-SPStateServiceApplication Set-SPStateServiceApplicatio…
Cmdlet Set-SPStateServiceApplicatio… Set-SPStateServiceApplicatio…
Cmdlet Set-SPStateServiceDatabase Set-SPStateServiceDatabase […
Cmdlet Suspend-SPStateServiceDatabase Suspend-SPStateServiceDataba…
PS C:\Users\sp_farm> get-command -Noun spstate* | select name
Name
—-
Dismount-SPStateServiceDatabase
Get-SPStateServiceApplication
Get-SPStateServiceApplicationProxy
Get-SPStateServiceDatabase
Initialize-SPStateServiceDatabase
Mount-SPStateServiceDatabase
New-SPStateServiceApplication
New-SPStateServiceApplicationProxy
New-SPStateServiceDatabase
Remove-SPStateServiceDatabase
Resume-SPStateServiceDatabase
Set-SPStateServiceApplication
Set-SPStateServiceApplicationProxy
Set-SPStateServiceDatabase
Suspend-SPStateServiceDatabase
PS C:\Users\sp_farm> get-command -Noun *usage*
CommandType Name Definition
———– —- ———-
Cmdlet Get-SPUsageApplication Get-SPUsageApplication [[-Id…
Cmdlet Get-SPUsageDefinition Get-SPUsageDefinition [[-Ide…
Cmdlet Get-SPUsageService Get-SPUsageService [[-Identi…
Cmdlet New-SPUsageApplication New-SPUsageApplication [[-Na…
Cmdlet New-SPUsageLogFile New-SPUsageLogFile [-Assignm…
Cmdlet Remove-SPUsageApplication Remove-SPUsageApplication [-…
Cmdlet Set-SPUsageApplication Set-SPUsageApplication [-Ide…
Cmdlet Set-SPUsageDefinition Set-SPUsageDefinition [-Iden…
Cmdlet Set-SPUsageService Set-SPUsageService [[-Identi…
PS C:\Users\sp_farm> get-help Add-SPShellAdmin
NAME
Add-SPShellAdmin
SYNOPSIS
Adds a user to the SharePoint_Shell_Access role for the specified database.
SYNTAX
Add-SPShellAdmin [-UserName] <String> [-AssignmentCollection <SPAssignmentC
ollection>] [-Confirm [<SwitchParameter>]] [-database <SPDatabasePipeBind>]
[-WhatIf [<SwitchParameter>]] [<CommonParameters>]
DESCRIPTION
Use the Add-SPShellAdmin cmdlet to add a user to the SharePoint_Shell_Acces
s role for a specified database. You must run the Add-SPShellAdmin cmdlet f
or all databases that you want to grant access to. If no database is specif
ied, the farm configuration database is used. If you do specify a database,
the farm content database will be included in addition to the farm configu
ration database you specify.
A user cannot run Windows PowerShell cmdlets in a farm unless you have used
this cmdlet to add the user to the SharePoint_Shell_Access role. When a us
er has been added to the SharePoint_Shell_Access role and is a member of th
e WSS_Admin_WPG group, then the user can run Windows PowerShell in a multip
le-server farm environment.
When you run this cmdlet to add a user to the SharePoint_Shell_Access role,
the user must have the following security permissions:
– Security_Admin role access on the SQL instance and the db_owner role in a
database.
– Administrative permission to the local computer.
The user is added to the WSS_Admin_WPG group in all front-end Web servers w
hen the user is added to the SharePoint_Shell_Access role. If the target da
tabase does not have a SharePoint_Shell_Access role, the role is automatica
lly created.
For permissions and the most current information about Windows PowerShell f
or SharePoint Products, see the online documentation (http://go.microsoft.c
om/fwlink/?LinkId=163185).
RELATED LINKS
Get-SPShellAdmin
Remove-SPShellAdmin
REMARKS
To see the examples, type: “get-help Add-SPShellAdmin -examples”.
For more information, type: “get-help Add-SPShellAdmin -detailed”.
For technical information, type: “get-help Add-SPShellAdmin -full”.
PS C:\Users\sp_farm>
PS C:\Users\sp_farm> get-help Move-SPSite
NAME
Move-SPSite
SYNOPSIS
Moves site collections from one content database to another.
SYNTAX
Move-SPSite [-Identity] <SPSitePipeBind> -DestinationDatabase <SPContentDat
abasePipeBind> [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [
<SwitchParameter>]] [-WhatIf [<SwitchParameter>]] [<CommonParameters>]
DESCRIPTION
The Move-SPSite cmdlet moves the data in the specified site collection from
its current content database to the content database specified by the Dest
inationDatabase parameter. A read-only lock is applied to the site collecti
on to prevent users from altering data within the site collection while the
move is taking place. Once the move is complete, the site collection is re
turned to its original lock state. The destination content database specif
ied must already exist, must be attached to the same SQL Server as the site
collection’s current content database, and must be attached to the site co
llection’s current Web application.
For permissions and the most current information about Windows PowerShell f
or SharePoint Products, see the online documentation (http://go.microsoft.c
om/fwlink/?LinkId=163185).
RELATED LINKS
Backup-SPSite
Get-SPSite
Restore-SPSite
Get-SPSiteAdministration
REMARKS
To see the examples, type: “get-help Move-SPSite -examples”.
For more information, type: “get-help Move-SPSite -detailed”.
For technical information, type: “get-help Move-SPSite -full”.
PS C:\Users\sp_farm> $dash = [Microsoft.SharePoint.Administration.SPWebService]::ContentService.DeveloperDashboardSettings;
PS C:\Users\sp_farm> $dash
DisplayLevel : OnDemand
TraceEnabled : True
AutoLaunchEnabled : False
RequiredPermissions : AddAndCustomizePages
MaximumSQLQueriesToTrack : 50
MaximumCriticalEventsToTrack : 50
AdditionalEventsToTrack : {}
Name :
TypeName : Microsoft.SharePoint.Administration.SPDeveloperD
ashboardSettings
DisplayName :
Id : a8f74d8f-49a2-4d98-9127-64f6d260f400
Status : Online
Parent : SPWebService
Version : 66877
Properties : {}
Farm : SPFarm Name=SharePoint_Config
UpgradedPersistedProperties : {}
PS C:\Users\sp_farm> $dash.DisplayLevel = ‘true’ -whatif
You must provide a value expression on the right-hand side of the ‘-‘ operator.
At line:1 char:30
+ $dash.DisplayLevel = ‘true’ – <<<< whatif
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordEx
ception
+ FullyQualifiedErrorId : ExpectedValueExpression
PS C:\Users\sp_farm> Get-SPsite http://sharepoint
Url
—
PS C:\Users\sp_farm> $sc = Get-SPsite http://sharepoint
PS C:\Users\sp_farm> $sc | Get-Member
TypeName: Microsoft.SharePoint.SPSite
Name MemberType Definition
—- ———- ———-
AddWorkItem Method System.Guid AddWorkItem(Sys…
BypassUseRemoteApis Method System.Void BypassUseRemote…
CheckForPermissions Method System.Void CheckForPermiss…
Close Method System.Void Close()
ConfirmUsage Method bool ConfirmUsage()
Delete Method System.Void Delete(), Syste…
Dispose Method System.Void Dispose()
DoesUserHavePermissions Method bool DoesUserHavePermission…
Equals Method bool Equals(System.Object obj)
GetAllReusableAcls Method System.Collections.Generic….
GetCatalog Method Microsoft.SharePoint.SPList…
GetChanges Method Microsoft.SharePoint.SPChan…
GetCustomListTemplates Method Microsoft.SharePoint.SPList…
GetCustomWebTemplates Method Microsoft.SharePoint.SPWebT…
GetEffectiveRightsForAcl Method Microsoft.SharePoint.SPBase…
GetHashCode Method int GetHashCode()
GetRecycleBinItems Method Microsoft.SharePoint.SPRecy…
GetRecycleBinStatistics Method System.Void GetRecycleBinSt…
GetReusableAclForScope Method Microsoft.SharePoint.SPReus…
GetSelfServiceSiteCreationSettings Method System.Void GetSelfServiceS…
GetType Method type GetType()
GetVisualReport Method System.Collections.Generic….
GetWebTemplates Method Microsoft.SharePoint.SPWebT…
GetWorkItems Method System.Void GetWorkItems(Mi…
MakeFullUrl Method string MakeFullUrl(string s…
OpenWeb Method Microsoft.SharePoint.SPWeb …
QueryFeatures Method Microsoft.SharePoint.SPFeat…
RecalculateStorageUsed Method System.Void RecalculateStor…
RefreshEmailEnabledObjects Method System.Void RefreshEmailEna…
Rename Method System.Void Rename(System.U…
SelfServiceCreateSite Method Microsoft.SharePoint.SPSite…
StorageManagementInformation Method System.Data.DataTable Stora…
ToString Method string ToString()
UpdateValidationKey Method System.Void UpdateValidatio…
VisualUpgradeWebs Method System.Void VisualUpgradeWe…
AdministrationSiteType Property Microsoft.SharePoint.SPAdmi…
AllowDesigner Property System.Boolean AllowDesigne…
AllowMasterPageEditing Property System.Boolean AllowMasterP…
AllowRevertFromTemplate Property System.Boolean AllowRevertF…
AllowRssFeeds Property System.Boolean AllowRssFeed…
AllowUnsafeUpdates Property System.Boolean AllowUnsafeU…
AllWebs Property Microsoft.SharePoint.SPWebC…
ApplicationRightsMask Property Microsoft.SharePoint.SPBase…
Audit Property Microsoft.SharePoint.SPAudi…
AuditLogTrimmingCallout Property System.String AuditLogTrimm…
AuditLogTrimmingRetention Property System.Int32 AuditLogTrimmi…
AverageResourceUsage Property System.Double AverageResour…
BrowserDocumentsEnabled Property System.Boolean BrowserDocum…
Cache Property Microsoft.SharePoint.Admini…
CatchAccessDeniedException Property System.Boolean CatchAccessD…
CertificationDate Property System.DateTime Certificati…
ContentDatabase Property Microsoft.SharePoint.Admini…
CurrentChangeToken Property Microsoft.SharePoint.SPChan…
CurrentResourceUsage Property System.Double CurrentResour…
DeadWebNotificationCount Property System.Int16 DeadWebNotific…
EventReceivers Property Microsoft.SharePoint.SPEven…
ExternalBinaryIds Property Microsoft.SharePoint.SPExte…
FeatureDefinitions Property Microsoft.SharePoint.Admini…
Features Property Microsoft.SharePoint.SPFeat…
GlobalPermMask Property Microsoft.SharePoint.SPRigh…
HostHeaderIsSiteName Property System.Boolean HostHeaderIs…
HostName Property System.String HostName {get;}
ID Property System.Guid ID {get;}
IISAllowsAnonymous Property System.Boolean IISAllowsAno…
Impersonating Property System.Boolean Impersonatin…
IsPaired Property System.Boolean IsPaired {ge…
LastContentModifiedDate Property System.DateTime LastContent…
LastSecurityModifiedDate Property System.DateTime LastSecurit…
LockIssue Property System.String LockIssue {ge…
Owner Property Microsoft.SharePoint.SPUser…
Port Property System.Int32 Port {get;}
PortalName Property System.String PortalName {g…
PortalUrl Property System.String PortalUrl {ge…
Protocol Property System.String Protocol {get;}
Quota Property Microsoft.SharePoint.Admini…
ReadLocked Property System.Boolean ReadLocked {…
ReadOnly Property System.Boolean ReadOnly {ge…
RecycleBin Property Microsoft.SharePoint.SPRecy…
ResourceQuotaExceeded Property System.Boolean ResourceQuot…
ResourceQuotaExceededNotificationSent Property System.Boolean ResourceQuot…
ResourceQuotaWarningNotificationSent Property System.Boolean ResourceQuot…
RootWeb Property Microsoft.SharePoint.SPWeb …
SearchServiceInstance Property Microsoft.SharePoint.Admini…
SecondaryContact Property Microsoft.SharePoint.SPUser…
ServerRelativeUrl Property System.String ServerRelativ…
ShowURLStructure Property System.Boolean ShowURLStruc…
SiteSubscription Property Microsoft.SharePoint.SPSite…
Solutions Property Microsoft.SharePoint.SPUser…
SyndicationEnabled Property System.Boolean SyndicationE…
SystemAccount Property Microsoft.SharePoint.SPUser…
TrimAuditLog Property System.Boolean TrimAuditLog…
UIVersionConfigurationEnabled Property System.Boolean UIVersionCon…
UpgradeRedirectUri Property System.Uri UpgradeRedirectU…
Url Property System.String Url {get;}
Usage Property Microsoft.SharePoint.SPSite…
UserAccountDirectoryPath Property System.String UserAccountDi…
UserCodeEnabled Property System.Boolean UserCodeEnab…
UserCustomActions Property Microsoft.SharePoint.SPUser…
UserDefinedWorkflowsEnabled Property System.Boolean UserDefinedW…
UserToken Property Microsoft.SharePoint.SPUser…
WarningNotificationSent Property System.Boolean WarningNotif…
WebApplication Property Microsoft.SharePoint.Admini…
WorkflowManager Property Microsoft.SharePoint.Workfl…
WriteLocked Property System.Boolean WriteLocked …
Zone Property Microsoft.SharePoint.Admini…
PS C:\Users\sp_farm> Get-SPLogEvent
WARNING: column “Message” does not fit into the display and was removed.
Timestamp Area Category EventID Level
——— —- ——– ——- —–
23:15:33.19 SharePoint Foundation Monitoring nasq Medium
23:15:33.21 SharePoint Foundation Monitoring b4ly Medium
23:15:33.22 SharePoint Foundation Unified Logging Service b9wt High
23:15:33.22 SharePoint Foundation Tracing Controller Ser… 8096 Inf…
23:15:35.13 Secure Store Service Secure Store f7vr Medium
23:15:35.20 SharePoint Foundation Monitoring nasq Medium
23:15:35.20 Web Content Management Site Management c07h High
23:15:35.20 Web Content Management Site Management c07i High
23:15:35.22 SharePoint Foundation Monitoring b4ly Medium
23:15:35.23 SharePoint Foundation Monitoring nasq Medium
23:15:35.23 Web Content Management Site Management c07h High
23:15:35.23 Web Content Management Site Management c07i High
23:15:35.24 SharePoint Foundation Monitoring b4ly Medium
23:15:35.26 SharePoint Foundation Monitoring nasq Medium
23:15:35.26 Web Content Management Site Management c07h High
23:15:35.26 Web Content Management Site Management c07i High
23:15:35.27 SharePoint Foundation Monitoring b4ly Medium
23:15:40.21 SharePoint Foundation Monitoring nasq Medium
23:15:40.22 SharePoint Foundation Monitoring b4ly Medium
23:15:40.22 SharePoint Foundation Monitoring nasq Medium
23:15:40.22 SharePoint Foundation Monitoring b4ly Medium
23:15:40.22 SharePoint Foundation Monitoring nasq Medium
23:15:40.23 SharePoint Foundation Monitoring b4ly Medium
23:15:40.23 SharePoint Foundation Monitoring nasq Medium
23:15:40.23 SharePoint Foundation Monitoring b4ly Medium
23:15:41.22 SharePoint Foundation Monitoring nasq Medium
23:15:41.22 SharePoint Foundation Monitoring nasq Medium
23:15:41.23 SharePoint Foundation Monitoring b4ly Medium
23:15:41.23 SharePoint Foundation Monitoring nasq Medium
23:15:41.23 SharePoint Foundation Monitoring nasq Medium
23:15:41.23 SharePoint Foundation Monitoring nasq Medium
23:15:41.24 SharePoint Foundation Monitoring b4ly Medium
23:15:41.24 SharePoint Foundation Monitoring b4ly Medium
23:15:41.24 SharePoint Foundation Monitoring b4ly Medium
23:15:41.24 SharePoint Foundation Monitoring b4ly Medium
23:15:41.24 SharePoint Foundation Monitoring nasq Medium
23:15:41.24 SharePoint Foundation Monitoring nasq Medium
23:15:41.25 SharePoint Foundation Monitoring b4ly Medium
23:15:41.25 SharePoint Foundation Monitoring b4ly Medium
23:15:41.25 SharePoint Foundation Monitoring nasq Medium
23:15:41.27 SharePoint Foundation Monitoring b4ly Medium
23:15:45.23 SharePoint Foundation Monitoring nasq Medium
23:15:45.24 SharePoint Foundation Monitoring nasq Medium
23:15:45.24 SharePoint Foundation Monitoring b4ly Medium
23:15:45.24 SharePoint Foundation Monitoring b4ly Medium
23:15:54.24 SharePoint Foundation Monitoring nasq Medium
23:15:54.24 Web Content Management Site Management c07h High
23:15:54.24 Web Content Management Site Management c07i High
23:15:54.24 SharePoint Foundation Monitoring nasq Medium
23:15:54.24 SharePoint Server Search Administration dj6u High
23:15:54.26 SharePoint Foundation Monitoring b4ly Medium
23:15:54.32 SharePoint Foundation Monitoring b4ly Medium
23:15:59.25 SharePoint Foundation Monitoring nasq Medium
23:15:59.27 SharePoint Foundation Monitoring b4ly Medium
23:15:59.28 SharePoint Foundation Monitoring nasq Medium
23:15:59.30 SharePoint Foundation Monitoring b4ly Medium
23:15:59.31 SharePoint Foundation Monitoring nasq Medium
23:15:59.32 SharePoint Foundation Monitoring b4ly Medium
23:16:00.27 SharePoint Foundation Monitoring nasq Medium
23:16:00.29 SharePoint Foundation Monitoring b4ly Medium
23:16:00.30 SharePoint Foundation Monitoring nasq Medium
23:16:00.30 SharePoint Foundation Monitoring nasq Medium
23:16:00.30 SharePoint Foundation Monitoring nasq Medium
23:16:00.31 SharePoint Foundation Monitoring b4ly Medium
23:16:00.32 SharePoint Foundation Monitoring b4ly Medium
23:16:00.33 SharePoint Foundation Monitoring b4ly Medium
23:16:10.31 SharePoint Foundation Monitoring nasq Medium
23:16:10.32 SharePoint Foundation Monitoring b4ly Medium
23:16:13.31 SharePoint Foundation Monitoring nasq Medium
23:16:13.31 SharePoint Foundation Monitoring b4ly Medium
23:16:14.33 SharePoint Foundation Monitoring nasq Medium
23:16:14.33 SharePoint Server Search Administration dkd5 High
23:16:14.33 SharePoint Server Search Administration eff0 High
23:16:15.32 SharePoint Foundation Monitoring nasq Medium
23:16:15.32 SharePoint Foundation Monitoring nasq Medium
23:16:15.33 SharePoint Foundation Monitoring b4ly Medium
23:16:15.33 SharePoint Foundation Monitoring b4ly Medium
23:16:15.53 SharePoint Server Search Administration dl2i Medium
23:16:15.54 SharePoint Foundation Monitoring b4ly Medium
23:16:16.32 SharePoint Foundation Monitoring nasq Medium
23:16:16.34 SharePoint Foundation Monitoring b4ly Medium
23:16:18.32 SharePoint Foundation Monitoring nasq Medium
23:16:18.33 SharePoint Foundation Topology 8xqz Medium
23:16:18.38 SharePoint Foundation Monitoring b4ly Medium
23:16:21.33 SharePoint Foundation Monitoring nasq Medium
23:16:21.33 SharePoint Foundation Monitoring b4ly Medium
23:16:21.50 SharePoint Server Search GathererSql e5bh Medium
23:16:23.33 SharePoint Foundation Monitoring nasq Medium
23:16:23.34 SharePoint Foundation Monitoring b4ly Medium
23:16:25.34 SharePoint Foundation Monitoring nasq Medium
23:16:25.34 SharePoint Foundation Monitoring b4ly Medium
23:16:25.35 SharePoint Foundation Monitoring nasq Medium
23:16:25.35 SharePoint Foundation Monitoring b4ly Medium
23:16:25.35 SharePoint Foundation Monitoring nasq Medium
23:16:25.36 SharePoint Foundation Monitoring b4ly Medium
23:16:30.34 SharePoint Foundation Monitoring nasq Medium
23:16:30.35 SharePoint Foundation Monitoring nasq Medium
23:16:30.36 SharePoint Foundation Monitoring b4ly Medium
23:16:30.36 SharePoint Foundation Monitoring b4ly Medium
23:16:35.13 Secure Store Service Secure Store f7vr Medium
23:16:41.35 SharePoint Foundation Monitoring nasq Medium
23:16:41.35 SharePoint Foundation Monitoring b4ly Medium
23:16:41.36 SharePoint Foundation Monitoring nasq Medium
23:16:41.38 SharePoint Foundation Monitoring b4ly Medium
23:16:41.40 SharePoint Foundation Monitoring nasq Medium
23:16:41.41 SharePoint Foundation Monitoring b4ly Medium
23:16:45.35 SharePoint Foundation Monitoring nasq Medium
23:16:45.36 SharePoint Foundation Monitoring nasq Medium
23:16:45.37 SharePoint Foundation Monitoring b4ly Medium
23:16:45.37 SharePoint Foundation Monitoring b4ly Medium
23:17:00.35 SharePoint Foundation Monitoring nasq Medium
23:17:00.36 SharePoint Foundation Monitoring b4ly Medium
23:17:00.37 SharePoint Foundation Monitoring nasq Medium
23:17:00.37 SharePoint Foundation Topology e5mc Medium
23:17:00.39 SharePoint Foundation Monitoring nasq Medium
23:17:00.39 SharePoint Foundation Monitoring b4ly Medium
23:17:00.39 SharePoint Foundation Topology e5mb Medium
23:17:00.39 SharePoint Foundation Monitoring nasq Medium
23:17:00.39 SharePoint Foundation Monitoring b4ly Medium
23:17:00.41 SharePoint Foundation Monitoring nasq Medium
23:17:00.42 SharePoint Foundation Monitoring b4ly Medium
23:17:00.44 SharePoint Foundation Monitoring b4ly Medium
23:17:00.97 SharePoint Server Search Query dka1 High
23:17:00.97 SharePoint Server Search Query dk8z High
23:17:00.97 SharePoint Foundation Topology e5mc Medium
23:17:00.99 SharePoint Foundation Topology e5mb Medium
23:17:00.99 SharePoint Foundation Monitoring nasq Medium
23:17:00.99 SharePoint Foundation Monitoring b4ly Medium
23:17:00.99 SharePoint Server Search Query dka2 High
23:17:10.41 SharePoint Foundation Monitoring nasq Medium
23:17:10.41 SharePoint Foundation Monitoring b4ly Medium
23:17:13.41 SharePoint Foundation Monitoring nasq Medium
23:17:13.43 SharePoint Foundation Monitoring b4ly Medium
23:17:14.42 SharePoint Foundation Monitoring nasq Medium
23:17:14.42 SharePoint Server Search Administration dkd5 High
23:17:14.42 SharePoint Server Search Administration eff0 High
23:17:15.42 SharePoint Foundation Monitoring nasq Medium
23:17:15.43 SharePoint Foundation Monitoring nasq Medium
23:17:15.44 SharePoint Foundation Monitoring b4ly Medium
23:17:15.44 SharePoint Foundation Monitoring b4ly Medium
23:17:15.64 SharePoint Server Search Administration dl2i Medium
23:17:15.66 SharePoint Foundation Monitoring b4ly Medium
23:17:16.43 SharePoint Foundation Monitoring nasq Medium
23:17:16.43 SharePoint Foundation Monitoring b4ly Medium
23:17:18.43 SharePoint Foundation Monitoring nasq Medium
23:17:18.44 SharePoint Foundation Topology 8xqz Medium
23:17:18.49 SharePoint Foundation Monitoring b4ly Medium
23:17:21.44 SharePoint Foundation Monitoring nasq Medium
23:17:21.45 SharePoint Foundation Monitoring b4ly Medium
23:17:23.44 SharePoint Foundation Monitoring nasq Medium
23:17:23.44 SharePoint Foundation Monitoring b4ly Medium
23:17:25.45 SharePoint Foundation Monitoring nasq Medium
23:17:25.46 SharePoint Foundation Monitoring b4ly Medium
23:17:25.48 SharePoint Foundation Monitoring nasq Medium
23:17:25.49 SharePoint Foundation Monitoring b4ly Medium
23:17:25.51 SharePoint Foundation Monitoring nasq Medium
23:17:25.53 SharePoint Foundation Monitoring b4ly Medium
23:17:30.45 SharePoint Foundation Monitoring nasq Medium
23:17:30.45 SharePoint Foundation Monitoring nasq Medium
23:17:30.47 SharePoint Foundation Monitoring b4ly Medium
23:17:30.50 SharePoint Foundation Monitoring b4ly Medium
23:17:35.13 Secure Store Service Secure Store f7vr Medium
23:17:41.45 SharePoint Foundation Monitoring nasq Medium
23:17:41.46 SharePoint Foundation Monitoring b4ly Medium
23:17:41.47 SharePoint Foundation Monitoring nasq Medium
23:17:41.47 SharePoint Foundation Monitoring b4ly Medium
23:17:41.48 SharePoint Foundation Monitoring nasq Medium
23:17:41.48 SharePoint Foundation Monitoring b4ly Medium
23:17:45.46 SharePoint Foundation Monitoring nasq Medium
23:17:45.46 SharePoint Foundation Monitoring nasq Medium
23:17:45.47 SharePoint Foundation Monitoring b4ly Medium
23:17:45.47 SharePoint Foundation Monitoring b4ly Medium
23:18:00.49 SharePoint Foundation Monitoring nasq Medium
23:18:00.49 SharePoint Foundation Monitoring nasq Medium
23:18:00.49 SharePoint Foundation Monitoring nasq Medium
23:18:00.50 SharePoint Foundation Monitoring b4ly Medium
23:18:00.50 SharePoint Foundation Monitoring b4ly Medium
23:18:00.51 SharePoint Foundation Monitoring nasq Medium
23:18:00.52 SharePoint Foundation Monitoring b4ly Medium
23:18:00.52 SharePoint Foundation Monitoring b4ly Medium
23:18:10.50 SharePoint Foundation Monitoring nasq Medium
23:18:10.51 SharePoint Foundation Monitoring b4ly Medium
23:18:13.50 SharePoint Foundation Monitoring nasq Medium
23:18:13.52 SharePoint Foundation Monitoring b4ly Medium
23:18:14.51 SharePoint Foundation Monitoring nasq Medium
23:18:14.51 SharePoint Server Search Administration dkd5 High
23:18:14.51 SharePoint Server Search Administration eff0 High
23:18:15.52 SharePoint Foundation Monitoring nasq Medium
23:18:15.52 SharePoint Foundation Monitoring nasq Medium
23:18:15.53 SharePoint Foundation Monitoring b4ly Medium
23:18:15.53 SharePoint Foundation Monitoring b4ly Medium
23:18:15.72 SharePoint Server Search Administration dl2i Medium
23:18:15.73 SharePoint Foundation Monitoring b4ly Medium
23:18:16.52 SharePoint Foundation Monitoring nasq Medium
23:18:16.52 SharePoint Foundation Monitoring b4ly Medium
23:18:18.52 SharePoint Foundation Monitoring nasq Medium
23:18:18.53 SharePoint Foundation Topology 8xqz Medium
23:18:18.58 SharePoint Foundation Monitoring b4ly Medium
23:18:21.53 SharePoint Foundation Monitoring nasq Medium
23:18:21.53 SharePoint Foundation Monitoring b4ly Medium
23:18:23.53 SharePoint Foundation Monitoring nasq Medium
23:18:23.54 SharePoint Foundation Monitoring b4ly Medium
23:18:25.54 SharePoint Foundation Monitoring nasq Medium
23:18:25.55 SharePoint Foundation Monitoring b4ly Medium
23:18:25.57 SharePoint Foundation Monitoring nasq Medium
23:18:25.59 SharePoint Foundation Monitoring b4ly Medium
23:18:25.60 SharePoint Foundation Monitoring nasq Medium
23:18:25.62 SharePoint Foundation Monitoring b4ly Medium
23:18:30.54 SharePoint Foundation Monitoring nasq Medium
23:18:30.54 SharePoint Foundation Monitoring nasq Medium
23:18:30.56 SharePoint Foundation Monitoring b4ly Medium
23:18:30.56 SharePoint Foundation Monitoring b4ly Medium
23:18:35.14 Secure Store Service Secure Store f7vr Medium
23:18:41.55 SharePoint Foundation Monitoring nasq Medium
23:18:41.56 SharePoint Foundation Monitoring b4ly Medium
23:18:41.58 SharePoint Foundation Monitoring nasq Medium
23:18:41.59 SharePoint Foundation Monitoring b4ly Medium
23:18:41.60 SharePoint Foundation Monitoring nasq Medium
23:18:41.62 SharePoint Foundation Monitoring b4ly Medium
23:18:45.55 SharePoint Foundation Monitoring nasq Medium
23:18:45.55 SharePoint Foundation Monitoring nasq Medium
23:18:45.56 SharePoint Foundation Monitoring b4ly Medium
23:18:45.56 SharePoint Foundation Monitoring b4ly Medium
23:18:49.55 SharePoint Foundation Monitoring nasq Medium
23:18:49.55 SharePoint Server Taxonomy 8yy0 Medium
23:18:49.55 SharePoint Foundation Database 4ohp High
23:18:49.55 SharePoint Foundation Database 4ohq Medium
23:18:49.57 SharePoint Server Taxonomy 9na3 Medium
23:18:49.57 SharePoint Foundation Monitoring b4ly Medium
23:19:00.57 SharePoint Foundation Monitoring nasq Medium
23:19:00.57 SharePoint Foundation Monitoring nasq Medium
23:19:00.60 SharePoint Foundation Monitoring nasq Medium
23:19:00.60 SharePoint Foundation Monitoring nasq Medium
23:19:00.61 SharePoint Foundation Monitoring b4ly Medium
23:19:00.62 SharePoint Foundation Monitoring b4ly Medium
PS C:\Users\sp_farm> Get-SPLogEvent | Where-Object {$_.correlation -eq “00000000-0000-0000-0000-000000000000”}
WARNING: column “Message” does not fit into the display and was removed.
Timestamp Area Category EventID Level
——— —- ——– ——- —–
23:15:33.22 SharePoint Foundation Unified Logging Service b9wt High
23:15:33.22 SharePoint Foundation Tracing Controller Ser… 8096 Inf…
23:15:35.13 Secure Store Service Secure Store f7vr Medium
23:16:21.50 SharePoint Server Search GathererSql e5bh Medium
23:16:35.13 Secure Store Service Secure Store f7vr Medium
23:17:00.37 SharePoint Foundation Topology e5mc Medium
23:17:00.97 SharePoint Server Search Query dka1 High
23:17:00.97 SharePoint Server Search Query dk8z High
23:17:00.97 SharePoint Foundation Topology e5mc Medium
23:17:00.99 SharePoint Server Search Query dka2 High
23:17:35.13 Secure Store Service Secure Store f7vr Medium
23:18:35.14 Secure Store Service Secure Store f7vr Medium
23:19:01.00 SharePoint Server Search Query dka1 High
23:19:01.00 SharePoint Server Search Query dk8z High
23:19:01.00 SharePoint Foundation Topology e5mc Medium
23:19:01.01 SharePoint Server Search Query dka2 High
23:19:35.14 Secure Store Service Secure Store f7vr Medium
23:20:16.07 Web Analytics Services Component Controller c2es Medium
23:20:16.15 Web Analytics Services Component Controller c2es Medium
23:20:16.16 Web Analytics Services Component Controller c2et Medium
23:20:17.09 Web Analytics Services Component Controller c2et Medium
23:20:35.13 Secure Store Service Secure Store f7vr Medium
23:21:00.01 SharePoint Server Search Query dka1 High
23:21:00.02 SharePoint Server Search Query dk8z High
23:21:00.02 SharePoint Foundation Topology e5mc Medium
23:21:00.06 SharePoint Server Search Query dka2 High
23:21:35.14 Secure Store Service Secure Store f7vr Medium
23:22:01.02 SharePoint Foundation Topology e5mc Medium
23:22:35.14 Secure Store Service Secure Store f7vr Medium
23:23:00.06 SharePoint Server Search Query dka1 High
23:23:00.06 SharePoint Server Search Query dk8z High
23:23:00.06 SharePoint Foundation Topology e5mc Medium
23:23:00.09 SharePoint Server Search Query dka2 High
23:23:35.15 Secure Store Service Secure Store f7vr Medium
23:24:35.15 Secure Store Service Secure Store f7vr Medium
23:25:00.10 SharePoint Server Search Query dka1 High
23:25:00.10 SharePoint Server Search Query dk8z High
23:25:00.10 SharePoint Foundation Topology e5mc Medium
23:25:00.14 SharePoint Server Search Query dka2 High
23:25:35.15 Secure Store Service Secure Store f7vr Medium
23:26:35.16 Secure Store Service Secure Store f7vr Medium
23:27:00.14 SharePoint Server Search Query dka1 High
23:27:00.14 SharePoint Server Search Query dk8z High
23:27:00.14 SharePoint Foundation Topology e5mc Medium
23:27:00.16 SharePoint Server Search Query dka2 High
23:27:35.17 Secure Store Service Secure Store f7vr Medium
23:28:00.66 SharePoint Foundation Topology e5mc Medium
23:28:35.17 Secure Store Service Secure Store f7vr Medium
23:28:49.85 SharePoint Foundation Topology e5mc Medium
23:28:49.87 SharePoint Foundation Topology e5mc Medium
23:29:00.17 SharePoint Server Search Query dka1 High
23:29:00.17 SharePoint Server Search Query dk8z High
23:29:00.17 SharePoint Foundation Topology e5mc Medium
23:29:00.20 SharePoint Server Search Query dka2 High
23:29:35.17 Secure Store Service Secure Store f7vr Medium
23:30:16.30 Web Analytics Services Component Controller c2es Medium
23:30:16.30 Web Analytics Services Component Controller c2es Medium
23:30:16.32 Web Analytics Services Component Controller c2et Medium
23:30:17.31 Web Analytics Services Component Controller c2et Medium
23:30:35.16 Secure Store Service Secure Store f7vr Medium
23:31:00.21 SharePoint Server Search Query dka1 High
23:31:00.21 SharePoint Server Search Query dk8z High
23:31:00.21 SharePoint Foundation Topology e5mc Medium
23:31:00.22 SharePoint Server Search Query dka2 High
23:31:35.17 Secure Store Service Secure Store f7vr Medium
23:32:35.17 Secure Store Service Secure Store f7vr Medium
23:33:00.23 SharePoint Server Search Query dka1 High
23:33:00.23 SharePoint Server Search Query dk8z High
23:33:00.23 SharePoint Foundation Topology e5mc Medium
23:33:00.27 SharePoint Server Search Query dka2 High
23:33:35.17 Secure Store Service Secure Store f7vr Medium
23:34:00.44 SharePoint Foundation Topology e5mc Medium
23:34:35.17 Secure Store Service Secure Store f7vr Medium
23:35:00.28 SharePoint Server Search Query dka1 High
23:35:00.28 SharePoint Server Search Query dk8z High
23:35:00.28 SharePoint Foundation Topology e5mc Medium
23:35:00.29 SharePoint Server Search Query dka2 High
23:35:35.17 Secure Store Service Secure Store f7vr Medium
23:36:35.18 Secure Store Service Secure Store f7vr Medium
23:37:00.30 SharePoint Server Search Query dka1 High
23:37:00.30 SharePoint Server Search Query dk8z High
23:37:00.30 SharePoint Foundation Topology e5mc Medium
23:37:00.34 SharePoint Server Search Query dka2 High
23:37:35.17 Secure Store Service Secure Store f7vr Medium
23:38:35.17 Secure Store Service Secure Store f7vr Medium
23:39:00.34 SharePoint Server Search Query dka1 High
23:39:00.35 SharePoint Server Search Query dk8z High
23:39:00.35 SharePoint Foundation Topology e5mc Medium
23:39:00.39 SharePoint Server Search Query dka2 High
23:39:35.16 Secure Store Service Secure Store f7vr Medium
23:40:00.14 SharePoint Foundation Topology e5mc Medium
23:40:16.42 Web Analytics Services Component Controller c2es Medium
23:40:16.43 Web Analytics Services Component Controller c2es Medium
23:40:16.46 Web Analytics Services Component Controller c2et Medium
23:40:17.45 Web Analytics Services Component Controller c2et Medium
23:40:35.17 Secure Store Service Secure Store f7vr Medium
23:41:00.39 SharePoint Server Search Query dka1 High
23:41:00.39 SharePoint Server Search Query dk8z High
23:41:00.39 SharePoint Foundation Topology e5mc Medium
23:41:00.41 SharePoint Server Search Query dka2 High
23:41:35.17 Secure Store Service Secure Store f7vr Medium
23:42:32.58 SharePoint Foundation Topology e5mc Medium
23:42:32.60 SharePoint Foundation Topology e5mc Medium
23:42:35.18 Secure Store Service Secure Store f7vr Medium
23:43:00.41 SharePoint Server Search Query dka1 High
23:43:00.41 SharePoint Server Search Query dk8z High
23:43:00.41 SharePoint Foundation Topology e5mc Medium
23:43:00.46 SharePoint Server Search Query dka2 High
23:43:35.17 Secure Store Service Secure Store f7vr Medium
23:44:35.17 Secure Store Service Secure Store f7vr Medium
23:45:00.47 SharePoint Server Search Query dka1 High
23:45:00.47 SharePoint Server Search Query dk8z High
23:45:00.47 SharePoint Foundation Topology e5mc Medium
23:45:00.50 SharePoint Server Search Query dka2 High
23:45:00.67 SharePoint Foundation Topology e5mc Medium
23:45:35.17 Secure Store Service Secure Store f7vr Medium
23:46:35.17 Secure Store Service Secure Store f7vr Medium
23:47:00.51 SharePoint Server Search Query dka1 High
PS C:\Users\sp_farm> Get-SPLogEvent | Where-Object {$_.correlation -eq “00000000-0000-0000-0000-000000000000”} | select message
Message
——-
Log retention limit reached. Log file ‘C:\Program Files\Common Files\Micros…
Usage log retention limit reached. Some old usage log files have been deleted.
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
CGatherer::AdviseStatus Gatherer sprocs marked successfully for recompile, a…
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/f22b9d41636a4a128639…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 0.9766
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 0.9766
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
Executing the Web Analytics component Logging Extraction.
Executing the Web Analytics component UserBehaviorAnalyzer.
Executing the Web Analytics component UserBehaviorAnalyzer completed.
Executing the Web Analytics component Logging Extraction completed.
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 0.9765
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/f22b9d41636a4a128639…
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 0.9766
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 3.9062
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 0.9765
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/f22b9d41636a4a128639…
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/aa9680f7741c49c0a789…
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/aa9680f7741c49c0a789…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 0.9766
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
Executing the Web Analytics component Logging Extraction.
Executing the Web Analytics component UserBehaviorAnalyzer.
Executing the Web Analytics component UserBehaviorAnalyzer completed.
Executing the Web Analytics component Logging Extraction completed.
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 0.9765
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 1.9531
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/f22b9d41636a4a128639…
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 0.9765
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 0.9766
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
SearchServiceApplicationProxy::GetChannel–Channel Creation time: 4.8828
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/937e0d248be54111a79e…
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Id: Elapsed …
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
WcfSendRequest: RemoteAddress: ‘http://sharepoint:32843/f22b9d41636a4a128639…
Executing the Web Analytics component Logging Extraction.
Executing the Web Analytics component UserBehaviorAnalyzer.
Executing the Web Analytics component UserBehaviorAnalyzer completed.
Executing the Web Analytics component Logging Extraction completed.
IsMasterKeyFresh for ‘a4d7bfa3-2824-4629-9d10-e241628bb5a6’ : True
SearchServiceApplicationProxy::GetSearchServiceApplicationInfo–Proxy Name:S…
PS C:\Users\sp_farm>
PS C:\Users\sp_farm> get-help New-SPLogFile
NAME
New-SPLogFile
SYNOPSIS
Creates a new log file.
SYNTAX
New-SPLogFile [-AssignmentCollection <SPAssignmentCollection>] [<CommonPara
meters>]
DESCRIPTION
The New-SPLogFile cmdlet ends the current log file and starts a new log fil
e.
For permissions and the most current information about Windows PowerShell f
or SharePoint Products, see the online documentation (http://go.microsoft.c
om/fwlink/?LinkId=163185).
RELATED LINKS
Merge-SPLogFile
REMARKS
To see the examples, type: “get-help New-SPLogFile -examples”.
For more information, type: “get-help New-SPLogFile -detailed”.
For technical information, type: “get-help New-SPLogFile -full”.
PS C:\Users\sp_farm> New-SPLogFile
PS C:\Users\sp_farm> Get-SPLogEvent | Where-Object {$_.correlation -eq “034557c7-91a9-404a-a428-f2e63d936e28”} | select message
Message
——-
Name=Request (GET:http://sharepoint:80/sites/team/_vti_bin/docdatahandler.as…
Site=/sites/team
Librarian.BeginGetItem(F4db3446eba5e4c6baf6720670c03e522m888532084a41478788a…
ViewStore.BeginGetItem(F4db3446eba5e4c6baf6720670c03e522m888532084a41478788a…
ViewStore.ReadMainCache(F4db3446eba5e4c6baf6720670c03e522m888532084a41478788…
FEMemoryCache.FReadFromCacheLine: d=F4db3446eba5e4c6baf6720670c03e522m888532…
[w3wp] [SPContentDatabaseSequence] [DEBUG] [9/15/2010 12:59:09 PM]: Upgradab…
[w3wp] [SPContentDatabaseSequence] [DEBUG] [9/15/2010 12:59:09 PM]: Upgradab…
[w3wp] [SPContentDatabaseSequence2] [DEBUG] [9/15/2010 12:59:09 PM]: Upgrada…
[w3wp] [SPContentDatabaseSequence2] [DEBUG] [9/15/2010 12:59:09 PM]: Upgrada…
[w3wp] [SPUpgradeSession] [DEBUG] [9/15/2010 12:59:09 PM]: CanUpgrade [SPCon…
[w3wp] [SPUpgradeSession] [DEBUG] [9/15/2010 12:59:09 PM]: NeedsUpgrade [SPC…
[w3wp] [SPUpgradeSession] [DEBUG] [9/15/2010 12:59:09 PM]: IsBackwardsCompat…
Leaving Monitored Scope (EnsureListItemsData). Execution Time=222.230199648279
ViewStore.SetCompleted(F4db3446eba5e4c6baf6720670c03e522m888532084a41478788a…
“There are no instances of the Word Viewing Service started on any server in…
SharepointServiceLoadBalancer: 0 URI’s are available for service WordConvers…
Null URI returned from ServerLoadBalancer.
Conversion response received: NoManagerAvailable
Librarian.OnConversionResponseReceived(F4db3446eba5e4c6baf6720670c03e522m888…
Librarian.SetCompleted(F4db3446eba5e4c6baf6720670c03e522m888532084a41478788a…
Leaving Monitored Scope (Request (GET:http://sharepoint:80/sites/team/_vti_b…
PS C:\Users\sp_farm> Stop-Transcript
**********************
Windows PowerShell Transcript End
End time: 20100915130554
**********************
Reference
Leave a Reply