salt.modules.win_system
Module for managing Windows systems and getting Windows system information. Support for reboot, shutdown, join domain, rename
- depends
-
pywintypes
win32api
win32con
win32net
wmi
-
Get the Windows computer description
- Returns
-
Returns the computer description if found. Otherwise returns
False
. - Return type
CLI Example:
salt 'minion-id' system.get_computer_desc
salt.modules.win_system.get_computer_desc()
-
Get the Windows computer name
- Returns
-
Returns the computer name if found. Otherwise returns
False
. - Return type
CLI Example:
salt 'minion-id' system.get_computer_name
salt.modules.win_system.get_computer_name()
-
Get the domain or workgroup the computer belongs to.
New in version 2015.5.7.
New in version 2015.8.2.
- Returns
-
The name of the domain or workgroup
- Return type
CLI Example:
salt 'minion-id' system.get_domain_workgroup
salt.modules.win_system.get_domain_workgroup()
-
Get the hostname of the windows minion
New in version 2016.3.0.
- Returns
-
Returns the hostname of the windows minion
- Return type
CLI Example:
salt 'minion-id' system.get_hostname
salt.modules.win_system.get_hostname()
-
Determine whether there are pending Component Based Servicing tasks that require a reboot.
New in version 2016.11.0.
- Returns
-
True
if there are pending Component Based Servicing tasks, otherwiseFalse
- Return type
CLI Example:
salt '*' system.get_pending_component_servicing
salt.modules.win_system.get_pending_component_servicing()
-
Get a pending computer name. If the computer name has been changed, and the change is pending a system reboot, this function will return the pending computer name. Otherwise,
None
will be returned. If there was an error retrieving the pending computer name,False
will be returned, and an error message will be logged to the minion log.- Returns
-
Returns the pending name if pending restart. Returns
None
if not pending restart. - Return type
CLI Example:
salt 'minion-id' system.get_pending_computer_name
salt.modules.win_system.get_pending_computer_name()
-
Determine whether there is a pending domain join action that requires a reboot.
New in version 2016.11.0.
- Returns
-
True
if there is a pending domain join action, otherwiseFalse
- Return type
CLI Example:
salt '*' system.get_pending_domain_join
salt.modules.win_system.get_pending_domain_join()
-
Determine whether there are pending file rename operations that require a reboot.
New in version 2016.11.0.
- Returns
-
True
if there are pending file rename operations, otherwiseFalse
- Return type
CLI Example:
salt '*' system.get_pending_file_rename
salt.modules.win_system.get_pending_file_rename()
-
Determine whether there is a reboot pending.
New in version 2016.11.0.
- Returns
-
True
if the system is pending reboot, otherwiseFalse
- Return type
CLI Example:
salt '*' system.get_pending_reboot
salt.modules.win_system.get_pending_reboot()
-
Determine which check is signalling that the system is pending a reboot. Useful in determining why your system is signalling that it needs a reboot.
New in version 3001.
- Returns
-
A dictionary of the results of each system that would indicate a pending reboot
- Return type
CLI Example:
salt '*' system.get_pending_reboot_details
salt.modules.win_system.get_pending_reboot_details()
-
Determine whether there are pending Server Manager tasks that require a reboot.
New in version 2016.11.0.
- Returns
-
True
if there are pending Server Manager tasks, otherwiseFalse
- Return type
CLI Example:
salt '*' system.get_pending_servermanager
salt.modules.win_system.get_pending_servermanager()
-
Determine whether there are pending updates that require a reboot.
New in version 2016.11.0.
- Returns
-
True
if there are pending updates, otherwiseFalse
- Return type
CLI Example:
salt '*' system.get_pending_update
salt.modules.win_system.get_pending_update()
-
Check the Windows Update system for a pending reboot state.
This leverages the Windows Update System to determine if the system is pending a reboot.
New in version 3001.
- Returns
-
True
if the Windows Update system reports a pending update, otherwiseFalse
- Return type
CLI Example:
salt '*' system.get_pending_windows_update
salt.modules.win_system.get_pending_windows_update()
-
Determine if at any time during the current boot session the salt minion witnessed an event indicating that a reboot is required.
This function will return
True
if an install completed with exit code 3010 during the current boot session and can be extended where appropriate in the future.New in version 2016.11.0.
- Returns
-
True
if theRequires reboot
registry flag is set to1
, otherwiseFalse
- Return type
CLI Example:
salt '*' system.get_reboot_required_witnessed
salt.modules.win_system.get_reboot_required_witnessed()
-
Get the Windows system date
- Returns
-
Returns the system date
- Return type
CLI Example:
salt '*' system.get_system_date
salt.modules.win_system.get_system_date()
-
Get system information.
Note
Not all system info is available across all versions of Windows. If it is not available on an older version, it will be skipped
- Returns
-
Dictionary containing information about the system to include name, description, version, etc...
- Return type
CLI Example:
salt 'minion-id' system.get_system_info
salt.modules.win_system.get_system_info()
-
Get the system time.
- Returns
-
Returns the system time in HH:MM:SS AM/PM format.
- Return type
CLI Example:
salt 'minion-id' system.get_system_time
salt.modules.win_system.get_system_time()
-
Halt a running system.
- Parameters
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt '*' system.halt 5 True
salt.modules.win_system.halt(timeout=5, in_seconds=False)
-
Change the system runlevel on sysV compatible systems. Not applicable to Windows
CLI Example:
salt '*' system.init 3
salt.modules.win_system.init(runlevel)
-
Join a computer to an Active Directory domain. Requires a reboot.
- Parameters
-
domain (str) -- The domain to which the computer should be joined, e.g.
example.com
username (str) -- Username of an account which is authorized to join computers to the specified domain. Needs to be either fully qualified like
[email protected]
or simplyuser
password (str) -- Password of the specified user
account_ou (str) -- The DN of the OU below which the account for this computer should be created when joining the domain, e.g.
ou=computers,ou=departm_432,dc=my-company,dc=com
account_exists (bool) -- If set to
True
the computer will only join the domain if the account already exists. If set toFalse
the computer account will be created if it does not exist, otherwise it will use the existing account. Default isFalse
-
restart (bool) --
True
will restart the computer after a successful join. Default isFalse
New in version 2015.8.2/2015.5.7.
- Returns
-
Returns a dictionary if successful, otherwise
False
- Return type
CLI Example:
salt 'minion-id' system.join_domain domain='domain.tld' \ username='joinuser' password='joinpassword' \ account_ou='ou=clients,ou=org,dc=domain,dc=tld' \ account_exists=False, restart=True
salt.modules.win_system.join_domain(domain, username=None, password=None, account_ou=None, account_exists=False, restart=False)
-
Lock the workstation.
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt 'minion-id' system.lock
salt.modules.win_system.lock()
-
Power off a running system.
- Parameters
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt '*' system.poweroff 5
salt.modules.win_system.poweroff(timeout=5, in_seconds=False)
-
Reboot a running system.
- Parameters
-
timeout (int) -- The number of minutes/seconds before rebooting the system. Use of minutes or seconds depends on the value of
in_seconds
. Default is 5 minutes.-
in_seconds (bool) --
-
True
will cause thetimeout
parameter to be in seconds. -
False
will be in minutes. Default isFalse
.
New in version 2015.8.0.
-
-
wait_for_reboot (bool) --
True
will sleep for timeout + 30 seconds after reboot has been initiated. This is useful for use in a highstate. For example, you may have states that you want to apply only after the reboot. Default isFalse
.New in version 2015.8.0.
only_on_pending_reboot (bool) -- If this is set to
True
, then the reboot will only proceed if the system reports a pending reboot. Setting this parameter toTrue
could be useful when calling this function from a final housekeeping state intended to be executed at the end of a state run (using order: last). Default isFalse
.
- Returns
-
True
if successful (a reboot will occur), otherwiseFalse
- Return type
CLI Example:
salt '*' system.reboot 5 salt '*' system.reboot 5 True
Invoking this function from a final housekeeping state:
final_housekeeping: module.run: - name: system.reboot - only_on_pending_reboot: True - order: last
salt.modules.win_system.reboot(timeout=5, in_seconds=False, wait_for_reboot=False, only_on_pending_reboot=False)
-
Set the Windows computer description
- Parameters
-
desc (str) -- The computer description
- Returns
-
Description if successful, otherwise
False
- Return type
CLI Example:
salt 'minion-id' system.set_computer_desc 'This computer belongs to Dave!'
salt.modules.win_system.set_computer_desc(desc=None)
-
Set the Windows computer name
- Parameters
-
name (str) -- The new name to give the computer. Requires a reboot to take effect.
- Returns
-
Returns a dictionary containing the old and new names if successful.
False
if not. - Return type
CLI Example:
salt 'minion-id' system.set_computer_name 'DavesComputer'
salt.modules.win_system.set_computer_name(name)
-
Set the domain or workgroup the computer belongs to.
New in version 3001.
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt 'minion-id' system.set_domain_workgroup LOCAL
salt.modules.win_system.set_domain_workgroup(workgroup)
-
Set the hostname of the windows minion, requires a restart before this will be updated.
New in version 2016.3.0.
- Parameters
-
hostname (str) -- The hostname to set
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt 'minion-id' system.set_hostname newhostname
salt.modules.win_system.set_hostname(hostname)
-
This function is used to remember that an event indicating that a reboot is required was witnessed. This function relies on the salt-minion's ability to create the following volatile registry key in the HKLM hive:
SYSTEM\CurrentControlSet\Services\salt-minion\Volatile-Data
Because this registry key is volatile, it will not persist beyond the current boot session. Also, in the scope of this key, the name 'Reboot required' will be assigned the value of 1.
For the time being, this function is being used whenever an install completes with exit code 3010 and can be extended where appropriate in the future.
New in version 2016.11.0.
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt '*' system.set_reboot_required_witnessed
salt.modules.win_system.set_reboot_required_witnessed()
-
Set the Windows system date. Use <mm-dd-yy> format for the date.
- Parameters
-
newdate (str) --
The date to set. Can be any of the following formats
YYYY-MM-DD
MM-DD-YYYY
MM-DD-YY
MM/DD/YYYY
MM/DD/YY
YYYY/MM/DD
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt '*' system.set_system_date '03-28-13'
salt.modules.win_system.set_system_date(newdate)
-
Set the system date and time. Each argument is an element of the date, but not required. If an element is not passed, the current system value for that element will be used. For example, if you don't pass the year, the current system year will be used. (Used by set_system_date and set_system_time)
- Parameters
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt '*' system.set_system_date_ time 2015 5 12 11 37 53
salt.modules.win_system.set_system_date_time(years=None, months=None, days=None, hours=None, minutes=None, seconds=None)
-
Set the system time.
- Parameters
-
newtime (str) --
The time to set. Can be any of the following formats:
HH:MM:SS AM/PM
HH:MM AM/PM
HH:MM:SS (24 hour)
HH:MM (24 hour)
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt 'minion-id' system.set_system_time 12:01
salt.modules.win_system.set_system_time(newtime)
-
Shutdown a running system.
- Parameters
-
message (str) -- The message to display to the user before shutting down.
-
timeout (int) --
The length of time (in seconds) that the shutdown dialog box should be displayed. While this dialog box is displayed, the shutdown can be aborted using the
system.shutdown_abort
function.If timeout is not zero, InitiateSystemShutdown displays a dialog box on the specified computer. The dialog box displays the name of the user who called the function, the message specified by the lpMessage parameter, and prompts the user to log off. The dialog box beeps when it is created and remains on top of other windows (system modal). The dialog box can be moved but not closed. A timer counts down the remaining time before the shutdown occurs.
If timeout is zero, the computer shuts down immediately without displaying the dialog box and cannot be stopped by
system.shutdown_abort
.Default is 5 minutes
-
in_seconds (bool) --
-
True
will cause thetimeout
parameter to be in seconds. -
False
will be in minutes. Default isFalse
.
New in version 2015.8.0.
-
force_close (bool) --
True
will force close all open applications.False
will display a dialog box instructing the user to close open applications. Default isTrue
.reboot (bool) --
True
restarts the computer immediately after shutdown.False
powers down the system. Default isFalse
.only_on_pending_reboot (bool) -- If this is set to True, then the shutdown will only proceed if the system reports a pending reboot. To optionally shutdown in a highstate, consider using the shutdown state instead of this module.
only_on_pending_reboot -- If
True
the shutdown will only proceed if there is a reboot pending.False
will shutdown the system. Default isFalse
.
- Returns
-
True
if successful (a shutdown or reboot will occur), otherwiseFalse
- Return type
CLI Example:
salt '*' system.shutdown "System will shutdown in 5 minutes"
salt.modules.win_system.shutdown(message=None, timeout=5, force_close=True, reboot=False, in_seconds=False, only_on_pending_reboot=False)
-
Abort a shutdown. Only available while the dialog box is being displayed to the user. Once the shutdown has initiated, it cannot be aborted.
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt 'minion-id' system.shutdown_abort
salt.modules.win_system.shutdown_abort()
-
Shutdown a running system with no timeout or warning.
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt '*' system.shutdown_hard
salt.modules.win_system.shutdown_hard()
-
Start the Windows time service
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt '*' system.start_time_service
salt.modules.win_system.start_time_service()
-
Stop the Windows time service
- Returns
-
True
if successful, otherwiseFalse
- Return type
CLI Example:
salt '*' system.stop_time_service
salt.modules.win_system.stop_time_service()
-
Unjoin a computer from an Active Directory Domain. Requires a restart.
- Parameters
-
username (str) -- Username of an account which is authorized to manage computer accounts on the domain. Needs to be a fully qualified name like
[email protected]
ordomain.tld\user
. If the domain is not specified, the passed domain will be used. If the computer account doesn't need to be disabled after the computer is unjoined, this can beNone
.password (str) -- The password of the specified user
domain (str) -- The domain from which to unjoin the computer. Can be
None
-
workgroup (str) --
The workgroup to join the computer to. Default is
WORKGROUP
New in version 2015.8.2/2015.5.7.
disable (bool) --
True
to disable the computer account in Active Directory. Default isFalse
-
restart (bool) --
True
will restart the computer after successful unjoin. Default isFalse
New in version 2015.8.2/2015.5.7.
- Returns
-
Returns a dictionary if successful, otherwise
False
- Return type
CLI Example:
salt 'minion-id' system.unjoin_domain restart=True salt 'minion-id' system.unjoin_domain username='unjoinuser' \ password='unjoinpassword' disable=True \ restart=True
salt.modules.win_system.unjoin_domain(username=None, password=None, domain=None, workgroup='WORKGROUP', disable=False, restart=False)
© 2021 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltproject.io/en/latest/ref/modules/all/salt.modules.win_system.html