Command
Find-CopySessions
Description
This command will list all the copy sessions that you made. It is possible to specify a timeframe for the sessions you want to be listed.
Index
Examples
Find copy sessions from a certain date and time
PS C:\> Find-CopySessions -From "2016/06/29 8:00:00" Id : 160629-1 StartDate : 6/29/2016 5:21:27 PM SourceTitle : Documents SourceAddress : http://intranet-old/sites/projects DestinationTitle : Documents DestinationAddress : http://intranet/sites/projects EndDate : 6/29/2016 5:21:46 PM HasEnded : True Details : 10 Success, 0 Warnings, 0 Errors
Find copy sessions between two dates
PS C:\> Find-CopySessions -From 2016/06/29 -To 2016/06/30 Id : 160629-1 StartDate : 6/29/2016 5:21:27 PM SourceTitle : Documents SourceAddress : http://intranet-old/sites/projects DestinationTitle : Documents DestinationAddress : http://intranet/sites/projects EndDate : 6/29/2016 5:21:46 PM HasEnded : True Details : 10 Success, 0 Warnings, 0 Errors Id : 160630-1 StartDate : 6/30/2016 5:10:12 PM SourceTitle : Documents SourceAddress : http://intranet-old/sites/projects DestinationTitle : Documents DestinationAddress : http://intranet/sites/projects EndDate : 6/30/2016 5:11:12 PM HasEnded : True Details : 23 Success, 0 Warnings, 0 Errors
Syntax
Find-CopySessions -From <DateTime>
Find-CopySessions -From <DateTime>
-To <DateTime>
Parameters
-From <DateTime>
Specifies from which date the sessions should be listed.
Required? | False |
Default value | None |
Accept pipeline input? | False |
Accept wildcard characters? | False |
Parameter set name | (All) |
Aliases | None |
-To <DateTime>
Specifies to which date the sessions should be listed.
Required? | False |
Default value | None |
Accept pipeline input? | False |
Accept wildcard characters? | False |
Parameter set name | (All) |
Aliases | None |