Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
@@ -0,0 +1,264 @@
{
"name": "Add-AppProvisionedSharedPackageContainer",
"options": [
{
"name": "-DefinitionFile",
"args": [
{
"name": "string"
}
],
"isRequired": true
},
{
"name": [
"-LogLevel",
"-LL"
],
"args": [
{
"name": "LogLevel",
"suggestions": [
{
"name": "Errors"
},
{
"name": "Warnings"
},
{
"name": "WarningsInfo"
},
{
"name": "Debug"
}
]
}
]
},
{
"name": [
"-LogPath",
"-LP"
],
"args": [
{
"name": "string"
}
]
},
{
"name": "-Online",
"isRequired": true
},
{
"name": "-Path",
"args": [
{
"name": "string"
}
],
"isRequired": true
},
{
"name": "-ScratchDirectory",
"args": [
{
"name": "string"
}
]
},
{
"name": "-SystemDrive",
"args": [
{
"name": "string"
}
]
},
{
"name": "-WindowsDirectory",
"args": [
{
"name": "string"
}
]
},
{
"name": [
"-Debug",
"-db"
],
"description": "Displays programmer-level detail about the operation done by the command. This parameter works only when the command generates a debugging message."
},
{
"name": [
"-ErrorAction",
"-ea"
],
"args": [
{
"name": "System.Management.Automation.ActionPreference",
"suggestions": [
"Break",
"Suspend",
"Ignore",
"Inquire",
"Continue",
"Stop",
"SilentlyContinue"
]
}
],
"description": "Determines how the cmdlet responds to a non-terminating error from the command. This parameter works only when the command generates a non-terminating error."
},
{
"name": [
"-ErrorVariable",
"-ev"
],
"args": [
{
"name": "System.String"
}
],
"description": "Error records are automatically stored in the `$Error` automatic variable. When you use the ErrorVariable parameter on a command, PowerShell also stores the error records emitted by the command in the variable specified by the parameter."
},
{
"name": [
"-InformationAction",
"-infa"
],
"args": [
{
"name": "System.Management.Automation.ActionPreference",
"suggestions": [
"Break",
"Suspend",
"Ignore",
"Inquire",
"Continue",
"Stop",
"SilentlyContinue"
]
}
],
"description": "Within the command or script in which it's used, the InformationAction common parameter overrides the value of the `$InformationPreference` preference variable, which by default is set to SilentlyContinue."
},
{
"name": [
"-InformationVariable",
"-iv"
],
"args": [
{
"name": "System.String"
}
],
"description": "When you use the InformationVariable common parameter, information records are stored in the variable specified by the parameter."
},
{
"name": [
"-OutBuffer",
"-ob"
],
"args": [
{
"name": "System.Int32"
}
],
"description": "Determines the number of objects to accumulate in a buffer before any objects are sent through the pipeline. If you omit this parameter, objects are sent as they're generated."
},
{
"name": [
"-OutVariable",
"-ov"
],
"args": [
{
"name": "System.String"
}
],
"description": "Stores output objects from the command in the specified variable in addition to sending the output along the pipeline."
},
{
"name": [
"-PipelineVariable",
"-pv"
],
"args": [
{
"name": "System.String"
}
],
"description": "PipelineVariable allows access to the most recent value passed into the next pipeline segment by the command that uses this parameter. Any command in the pipeline can access the value using the named PipelineVariable. The value is assigned to the variable when it's passed into the next pipeline segment."
},
{
"name": [
"-ProgressAction",
"-proga"
],
"args": [
{
"name": "System.Management.Automation.ActionPreference",
"suggestions": [
"Break",
"Suspend",
"Ignore",
"Inquire",
"Continue",
"Stop",
"SilentlyContinue"
]
}
],
"description": "Determines how PowerShell responds to progress updates generated by a script, cmdlet, or provider, such as the progress bars generated by the Write-Progress cmdlet. The Write-Progress cmdlet creates progress bars that show a command's status."
},
{
"name": [
"-Verbose",
"-vb"
],
"description": "Displays detailed information about the operation done by the command. This information resembles the information in a trace or in a transaction log. This parameter works only when the command generates a verbose message."
},
{
"name": [
"-WarningAction",
"-wa"
],
"args": [
{
"name": "System.Management.Automation.ActionPreference",
"suggestions": [
"Break",
"Suspend",
"Ignore",
"Inquire",
"Continue",
"Stop",
"SilentlyContinue"
]
}
],
"description": "Determines how the cmdlet responds to a warning from the command. Continue is the default value. This parameter works only when the command generates a warning message."
},
{
"name": [
"-WarningVariable",
"-wv"
],
"args": [
{
"name": "System.String"
}
],
"description": "Stores warning records about the command in the specified variable."
}
],
"args": [],
"description": "Add-AppProvisionedSharedPackageContainer -DefinitionFile <string> -Path <string> [-WindowsDirectory <string>] [-SystemDrive <string>] [-LogPath <string>] [-ScratchDirectory <string>] [-LogLevel <LogLevel>] [<CommonParameters>] Add-AppProvisionedSharedPackageContainer -DefinitionFile <string> -Online [-WindowsDirectory <string>] [-SystemDrive <string>] [-LogPath <string>] [-ScratchDirectory <string>] [-LogLevel <LogLevel>] [<CommonParameters>]",
"parserDirectives": {
"flagsArePosixNoncompliant": true,
"flagsMatchUniquePrefix": true,
"alwaysCaseInsensitive": true
}
}
Loading
Loading