Send-AppvClientReport

Send-AppvClientReport is accessible with the help of AppVClient module. To configure AppVClient, go through this link.

Synopsis

Sends reporting data from the client.

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.

Parameters

-DeleteOnSuccess

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

Type:SwitchParameter
Position:Named
Default value:None
Accept pipeline input:False
Accept wildcard characters:False

-NetworkCostAware

Indicates that this cmdlet is network cost aware.

Type:SwitchParameter
Position:Named
Default value:None
Accept pipeline input:False
Accept wildcard characters:False

-URL

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

Type:String
Position:0
Default value:None
Accept pipeline input:False
Accept wildcard characters:False

Syntax

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

——————-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
The 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.

You can check the Version, CommandType and Source of this cmdlet by giving below command.

Get-Command Send-AppvClientReport

Get-Command Send-AppvClientReport powershell script command cmdlet appv client

To know more PowerShell cmdlets(Commands) on AppVClient click here

Click on this Link for an Single place where you get all the PowerShell cmdlet sorted based on the modules.

You can also refer other blogs on PowerShell at link

You can also refer other blogs on Microsoft at link

And also if you required any technology you want to learn, let us know below we will publish them in our site http://tossolution.com/

Like our page in Facebook and follow us for New technical information.

References are taken from Microsoft

Leave a Reply

Your email address will not be published. Required fields are marked *