Get D365RsatPlaybackFile - FH-Inway/d365fo.tools GitHub Wiki
Get the RSAT playback files
Get-D365RsatPlaybackFile [-Path <String>] [-Name <String>] [<CommonParameters>]
Get-D365RsatPlaybackFile [-Name <String>] [-ExecutionUsername <String>] [<CommonParameters>]
Get all the RSAT playback files from the last executions
Get-D365RsatPlaybackFile
This will get all the RSAT playback files. It will search for the files in the current user AppData system folder.
Get-D365RsatPlaybackFile -Name *4080*
This will get all the RSAT playback files which has "4080" as part of its name. It will search for the files in the current user AppData system folder.
Get-D365RsatPlaybackFile -ExecutionUsername RSAT-ServiceAccount
This will get all the RSAT playback files that were executed by the RSAT-ServiceAccount user. It will search for the files in the RSAT-ServiceAccount user AppData system folder.
The path where the RSAT tool will be writing the files
The default path is: "C:\Users\USERNAME\AppData\Roaming\regressionTool\playback"
Type: String
Parameter Sets: Default
Aliases:
Required: False
Position: Named
Default value: $Script:RsatplaybackPath
Accept pipeline input: False
Accept wildcard characters: False
Name of Test Case that you are looking for
Default value is "*" which will search for all Test Cases and their corresponding files
Type: String
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: *
Accept pipeline input: False
Accept wildcard characters: False
Name of the user account has been running the RSAT tests on a machine that isn't the same as the current user
Will enable you to log on to RSAT server that is running the tests from a console, automated, and is other account than the current user
Type: String
Parameter Sets: ExecutionUser
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Tags: RSAT, Testing, Regression Suite Automation Test, Regression, Test, Automation, Playback
Author: Mötz Jensen (@Splaxi)