Get-AppvVirtualProcess

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

Synopsis

Displays the virtual processes running on a computer.

Description

The Get-AppvVirtualProcess cmdlet displays each of the virtual processes that are running on a computer.

Parameters

-ComputerName

Specifies an array of computer names.

Type:String[]
Aliases:Cn
Position:Named
Default value:None
Accept pipeline input:True (ByPropertyName)
Accept wildcard characters:False

-FileVersionInfo

Indicates that this cmdlet returns the ProductVersionFileVersion and un-virtualized Filename for each ProcessName.

Type:SwitchParameter
Aliases:FV, FVI
Position:Named
Default value:None
Accept pipeline input:False
Accept wildcard characters:False

-Id

Specifies the Virtual Process ID.

Type:Int32[]
Aliases:PID
Position:Named
Default value:None
Accept pipeline input:True (ByPropertyName)
Accept wildcard characters:False

-InputObject

Specifies the input to this cmdlet. You can use this parameter, or you can pipe the input to this cmdlet.

Type:Process[]
Position:Named
Default value:None
Accept pipeline input:True (ByValue)
Accept wildcard characters:False

-Module

Specifies a module.

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

-Name

Specifies the name of a process, which is also known as ProcessName.

Type:String[]
Aliases:ProcessName
Position:0
Default value:None
Accept pipeline input:True (ByPropertyName)
Accept wildcard characters:False

Syntax

Get-AppvVirtualProcess [[-Name] <String[]>] [-ComputerName <String[]>] [-Module] [-FileVersionInfo] [<CommonParameters>]

Get-AppvVirtualProcess -Id <Int32[]> [-ComputerName <String[]>] [-Module] [-FileVersionInfo] [<CommonParameters>]

Get-AppvVirtualProcess [-ComputerName <String[]>] [-Module] [-FileVersionInfo] -InputObject <Process[]> [<CommonParameters>]

——————-Example 1——————-
Display all active virtual processes
PS C:\> Get-AppvVirtualProcess
This command displays all active virtual processes.

——————-Example 2——————-
Display file information for a virtual process
PS C:\> Get-AppvVirtualProcess -Name “AppVirtualProcess” -FileVersionInfo
This command displays file information for the process named AppVirtualProcess.

——————-Example 3——————-
Display file information for a virtual process by using the pipeline operator
PS C:\> Get-Process -Name “AppVirtualProcess” | Get-AppvVirtualProcess -FileVersionInfo
This command displays file information for the process named AppVirtualProcess.

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

Get-Command Get-AppvVirtualProcess

Get-Command Get-AppvVirtualProcess powershell script command cmdlet appv client

You can also read about

  • Start-AppvVirtualProcess

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 *