Add-AppxVolume is accessible with the help of Appx module. To configure Appx, go through this link.
Synopsis
Adds an appx volume to the Package Manager.
Description
The Add-AppxVolume cmdlet adds an AppxVolume for the Package Manager to advertise. After you add a volume, appx deployment operations can use that volume as a target. This cmdlet returns the volume that it adds. Note, the Path parameter must be specified as a drive letter followed by “WindowsApps” as the directory. Not using the aforementioned format could lead to inconsistent behavior in the application model subsystems or the volume itself; for more information see the examples section.
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 |
-Path
Specifies the path of the mount point of the volume that this cmdlet adds.
Type: | String[] |
Aliases: | PSPath |
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
Add-AppxVolume [-Path] <String[]> [-WhatIf] [-Confirm] [<CommonParameters>]
——————–Example 1——————–
Add a volume
PS C:> Add-AppxVolume -Path “D:\WindowsApps”
This command adds the volume D:\WindowsApps to Package Manager.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Add-AppxVolume
You can also read about
- Dismount-AppxVolume
- Get-AppxVolume
- Mount-AppxVolume
- Remove-AppxVolume