Add versionadded

This commit is contained in:
twangboy 2023-06-05 15:12:41 -06:00 committed by Megan Wilhite
parent 4e7e6d8b3d
commit 499c8ea103
4 changed files with 12 additions and 2 deletions

View file

@ -2,6 +2,8 @@
Manage provisioned apps
=======================
.. versionadded:: 3007.0
Provisioned apps are part of the image and are installed for every user the
first time the user logs on. Provisioned apps are also updated and sometimes
reinstalled when the system is updated.

View file

@ -518,7 +518,9 @@ def add_provisioned_package(package, image=None, restart=False):
"""
Provision a package using DISM. A provisioned package will install for new
users on the system. It will also be reinstalled on each user if the system
if updated.
is updated.
.. versionadded:: 3007.0
Args:
@ -713,6 +715,8 @@ def provisioned_packages(image=None):
"""
List the packages installed on the system
.. versionadded:: 3007.0
Args:
image (Optional[str]): The path to the root directory of an offline
Windows image. If `None` is passed, the running operating system is

View file

@ -1,6 +1,8 @@
"""
Manage Microsoft Store apps on Windows. Removing an app with this modules will
deprovision the app from the online Windows image.
.. versionadded:: 3007.0
"""
import fnmatch
import logging

View file

@ -389,7 +389,9 @@ def package_installed(
def provisioned_package_installed(name, image=None, restart=False):
"""
Install a package.
Provision a package on a Windows image.
.. versionadded:: 3007.0
Args: