Mount-AppxVolume
Mount-AppxVolume is accessible with the help of Appx module. To configure Appx, go through this link.
Synopsis
Mounts an appx volume.
Description
The Mount-AppxVolume cmdlet mounts an AppxVolume . After you mount a volume, all apps that are deployed to that target become accessible.
Parameters
-Confirm
Prompts you for confirmation before running the cmdlet.
| Type: | SwitchParameter |
| Aliases: | cf |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
-Volume
Specifies the AppxVolume object to mount.
| Type: | AppxVolume[] |
| Position: | 1 |
| Default value: | None |
| Accept pipeline input: | True (ByPropertyName, ByValue) |
| Accept wildcard characters: | False |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
| Type: | SwitchParameter |
| Aliases: | wi |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Syntax
Mount-AppxVolume [-Volume] <AppxVolume[]> [-WhatIf] [-Confirm] [<CommonParameters>]
—————-Example 1—————-
Mount a volume by using a path
PS C:> Mount-AppxVolume -Volume D:\
This command mounts a volume at the path D:.
—————-Example 2—————-
Mount a volume by using an ID
PS C:> Mount-AppxVolume -Volume {Volume ID}
This command mounts a volume that has the specified media ID.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Mount-AppxVolume

You can also read about
- Add-AppxVolume
- Dismount-AppxVolume
- Get-AppxVolume
- Remove-AppxVolume