Edit

Share via


Send-AppvClientReport

Sends reporting data from the client.

Syntax

Default (Default)

Send-AppvClientReport
    [-NetworkCostAware]
    [-DeleteOnSuccess]
    [[-URL] <String>]
    [<CommonParameters>]

Description

The Send-AppVClientReport cmdlet sends all the available reporting data to the specified location in XML format. You can delete the data from the client. Reporting must be enabled. By default, the data is sent to the location that is listed in the ReportingServer registry value. This value can be either an UNC Share or the name of the Microsoft Application Virtualization (App-V) Reporting Server. To override this location, you can specify a location by using the URL parameter. The location can be either an UNC share or the App-V Reporting Server location.

By default, after the data is sent, the data is not deleted from the client and is sent to the reporting server as part of the next scheduled sync, if applicable. You can specify to delete the data from the client. If the DeleteOnSuccess parameter is specified, the reporting data is deleted from the client.

If the data is successfully sent, this cmdlet displays a success message.

If reporting is not enabled, the cmdlet fails.

If there is no valid location specified, the cmdlet fails.

Examples

Example 1: Send data to previously configured location

PS C:\> Send-AppVClientReport
The Application Virtualization Client Report was sent successfully

This command sends the data to the location that is configured in the client and does not delete the data after it is sent.

Example 2: Send data to previously configured location and delete data

PS C:\> Send-AppVClientReport -DeleteOnSuccess
Tee Application Virtualization Client Report was sent successfully

This command sends the data to the location that is configured in the client and deletes the data after it is sent.

Example 3: Send data to specified location and delete data

PS C:\> Send-AppVClientReport -URL "http://myreportingserver:port" -DeleteOnSuccess
The Application Virtualization Client Report was sent successfully

This command sends the data to the location specified by the URL parameter and deletes the data after it is sent.

Example 4: Send data to incorrect location

PS C:\> Send-AppVClientReport -URL "http://incorrectservername:port" -DeleteOnSuccess
The reporting server or share location has not been specified.  You must specify the reporting server or share location using the following format: -Url <location>

This command tries to send the data to the location specified by the URL parameter but because the server name is incorrect, the sending action fails and an error is returned. The data is not deleted.

Parameters

-DeleteOnSuccess

Indicates that this cmdlet delete the data after it has been sent.

Parameter properties

Type:SwitchParameter
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-NetworkCostAware

Indicates that this cmdlet is network cost aware.

Parameter properties

Type:SwitchParameter
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-URL

Specifies the location on the reporting server where client information is saved.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:0
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.