Files
metasploit-gs/api/Msf/Post/Windows/Services.html
T
jenkins-metasploit c3f5bd3de2 Reboot gh-pages
2026-05-08 17:08:43 +00:00

3008 lines
603 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Module: Msf::Post::Windows::Services
&mdash; Documentation by YARD 0.9.37
</title>
<link rel="stylesheet" href="../../../css/style.css" type="text/css" />
<link rel="stylesheet" href="../../../css/common.css" type="text/css" />
<script type="text/javascript">
pathId = "Msf::Post::Windows::Services";
relpath = '../../../';
</script>
<script type="text/javascript" charset="utf-8" src="../../../js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="../../../js/app.js"></script>
</head>
<body>
<div class="nav_wrap">
<iframe id="nav" src="../../../class_list.html?1"></iframe>
<div id="resizer"></div>
</div>
<div id="main" tabindex="-1">
<div id="header">
<div id="menu">
<a href="../../../_index.html">Index (S)</a> &raquo;
<span class='title'><span class='object_link'><a href="../../../Msf.html" title="Msf (module)">Msf</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../../Post.html" title="Msf::Post (class)">Post</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Windows.html" title="Msf::Post::Windows (module)">Windows</a></span></span>
&raquo;
<span class="title">Services</span>
</div>
<div id="search">
<a class="full_list_link" id="class_list_link"
href="../../../class_list.html">
<svg width="24" height="24">
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
</svg>
</a>
</div>
<div class="clear"></div>
</div>
<div id="content"><h1>Module: Msf::Post::Windows::Services
</h1>
<div class="box_info">
<dl>
<dt>Includes:</dt>
<dd><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span>, <span class='object_link'><a href="ExtAPI.html" title="Msf::Post::Windows::ExtAPI (module)">ExtAPI</a></span>, <span class='object_link'><a href="Registry.html" title="Msf::Post::Windows::Registry (module)">Registry</a></span></dd>
</dl>
<dl>
<dt>Included in:</dt>
<dd><span class='object_link'><a href="MSSQL.html" title="Msf::Post::Windows::MSSQL (module)">MSSQL</a></span>, <span class='object_link'><a href="ShadowCopy.html" title="Msf::Post::Windows::ShadowCopy (module)">ShadowCopy</a></span></dd>
</dl>
<dl>
<dt>Defined in:</dt>
<dd>lib/msf/core/post/windows/services.rb</dd>
</dl>
</div>
<h2>Overview</h2><div class="docstring">
<div class="discussion">
<p>Post module mixin for dealing with Windows services</p>
</div>
</div>
<div class="tags">
</div>
<h2>
Constant Summary
<small><a href="#" class="constants_summary_toggle">collapse</a></small>
</h2>
<dl class="constants">
<dt id="START_TYPE-constant" class="">START_TYPE =
<div class="docstring">
<div class="discussion">
<p>From <a href="https://docs.microsoft.com/en-us/windows/win32/msi/serviceinstall-table">docs.microsoft.com/en-us/windows/win32/msi/serviceinstall-table</a></p>
</div>
</div>
<div class="tags">
</div>
</dt>
<dd><pre class="code"><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Boot</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>System</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Auto</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Manual</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Disabled</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span></pre></dd>
<dt id="START_TYPE_BOOT-constant" class="">START_TYPE_BOOT =
</dt>
<dd><pre class="code"><span class='int'>0</span></pre></dd>
<dt id="START_TYPE_SYSTEM-constant" class="">START_TYPE_SYSTEM =
</dt>
<dd><pre class="code"><span class='int'>1</span></pre></dd>
<dt id="START_TYPE_AUTO-constant" class="">START_TYPE_AUTO =
</dt>
<dd><pre class="code"><span class='int'>2</span></pre></dd>
<dt id="START_TYPE_MANUAL-constant" class="">START_TYPE_MANUAL =
</dt>
<dd><pre class="code"><span class='int'>3</span></pre></dd>
<dt id="START_TYPE_DISABLED-constant" class="">START_TYPE_DISABLED =
</dt>
<dd><pre class="code"><span class='int'>4</span></pre></dd>
<dt id="SERVICE_STOPPED-constant" class="">SERVICE_STOPPED =
</dt>
<dd><pre class="code"><span class='int'>1</span></pre></dd>
<dt id="SERVICE_START_PENDING-constant" class="">SERVICE_START_PENDING =
</dt>
<dd><pre class="code"><span class='int'>2</span></pre></dd>
<dt id="SERVICE_STOP_PENDING-constant" class="">SERVICE_STOP_PENDING =
</dt>
<dd><pre class="code"><span class='int'>3</span></pre></dd>
<dt id="SERVICE_RUNNING-constant" class="">SERVICE_RUNNING =
</dt>
<dd><pre class="code"><span class='int'>4</span></pre></dd>
<dt id="SERVICE_CONTINUE_PENDING-constant" class="">SERVICE_CONTINUE_PENDING =
</dt>
<dd><pre class="code"><span class='int'>5</span></pre></dd>
<dt id="SERVICE_PAUSE_PENDING-constant" class="">SERVICE_PAUSE_PENDING =
</dt>
<dd><pre class="code"><span class='int'>6</span></pre></dd>
<dt id="SERVICE_PAUSED-constant" class="">SERVICE_PAUSED =
</dt>
<dd><pre class="code"><span class='int'>7</span></pre></dd>
<dt id="SERVICE_KERNEL_DRIVER-constant" class="">SERVICE_KERNEL_DRIVER =
<div class="docstring">
<div class="discussion">
<p>0x1 A Kernel device driver.</p>
<p>0x2 File system driver, which is also</p>
<pre class="code ruby"><code class="ruby">a Kernel device driver.
</code></pre>
<p>0x4 A set of arguments for an adapter.</p>
<p>0x10 A Win32 program that can be started</p>
<pre class="code ruby"><code class="ruby">by the Service Controller and that
obeys the service control protocol.
This type of Win32 service runs in
a process by itself.
</code></pre>
<p>0x20 A Win32 service that can share a process</p>
<pre class="code ruby"><code class="ruby">with other Win32 services.
</code></pre>
<p>0x110 Same as 0x10 but allowed to interact with desktop.</p>
<p>0x120 Same as 0x20 but allowed to interact with desktop.</p>
</div>
</div>
<div class="tags">
</div>
</dt>
<dd><pre class="code"><span class='int'>0x1</span></pre></dd>
<dt id="SERVICE_FILE_SYSTEM_DRIVER-constant" class="">SERVICE_FILE_SYSTEM_DRIVER =
</dt>
<dd><pre class="code"><span class='int'>0x2</span></pre></dd>
<dt id="SERVICE_ADAPTER-constant" class="">SERVICE_ADAPTER =
</dt>
<dd><pre class="code"><span class='int'>0x4</span></pre></dd>
<dt id="SERVICE_RECOGNIZER_DRIVER-constant" class="">SERVICE_RECOGNIZER_DRIVER =
</dt>
<dd><pre class="code"><span class='int'>0x8</span></pre></dd>
<dt id="SERVICE_WIN32_OWN_PROCESS-constant" class="">SERVICE_WIN32_OWN_PROCESS =
</dt>
<dd><pre class="code"><span class='int'>0x10</span></pre></dd>
<dt id="SERVICE_WIN32_SHARE_PROCESS-constant" class="">SERVICE_WIN32_SHARE_PROCESS =
</dt>
<dd><pre class="code"><span class='int'>0x20</span></pre></dd>
<dt id="SERVICE_WIN32_OWN_PROCESS_INTERACTIVE-constant" class="">SERVICE_WIN32_OWN_PROCESS_INTERACTIVE =
</dt>
<dd><pre class="code"><span class='int'>0x110</span></pre></dd>
<dt id="SERVICE_WIN32_SHARE_PROCESS_INTERACTIVE-constant" class="">SERVICE_WIN32_SHARE_PROCESS_INTERACTIVE =
</dt>
<dd><pre class="code"><span class='int'>0x120</span></pre></dd>
</dl>
<h3 class="inherited">Constants included
from <span class='object_link'><a href="Registry.html" title="Msf::Post::Windows::Registry (module)">Registry</a></span></h3>
<p class="inherited"><span class='object_link'><a href="Registry.html#HKEY_CLASSES_ROOT-constant" title="Msf::Post::Windows::Registry::HKEY_CLASSES_ROOT (constant)">Registry::HKEY_CLASSES_ROOT</a></span>, <span class='object_link'><a href="Registry.html#HKEY_CURRENT_CONFIG-constant" title="Msf::Post::Windows::Registry::HKEY_CURRENT_CONFIG (constant)">Registry::HKEY_CURRENT_CONFIG</a></span>, <span class='object_link'><a href="Registry.html#HKEY_CURRENT_USER-constant" title="Msf::Post::Windows::Registry::HKEY_CURRENT_USER (constant)">Registry::HKEY_CURRENT_USER</a></span>, <span class='object_link'><a href="Registry.html#HKEY_DYN_DATA-constant" title="Msf::Post::Windows::Registry::HKEY_DYN_DATA (constant)">Registry::HKEY_DYN_DATA</a></span>, <span class='object_link'><a href="Registry.html#HKEY_LOCAL_MACHINE-constant" title="Msf::Post::Windows::Registry::HKEY_LOCAL_MACHINE (constant)">Registry::HKEY_LOCAL_MACHINE</a></span>, <span class='object_link'><a href="Registry.html#HKEY_PERFORMANCE_DATA-constant" title="Msf::Post::Windows::Registry::HKEY_PERFORMANCE_DATA (constant)">Registry::HKEY_PERFORMANCE_DATA</a></span>, <span class='object_link'><a href="Registry.html#HKEY_USERS-constant" title="Msf::Post::Windows::Registry::HKEY_USERS (constant)">Registry::HKEY_USERS</a></span>, <span class='object_link'><a href="Registry.html#REGISTRY_VIEW_32_BIT-constant" title="Msf::Post::Windows::Registry::REGISTRY_VIEW_32_BIT (constant)">Registry::REGISTRY_VIEW_32_BIT</a></span>, <span class='object_link'><a href="Registry.html#REGISTRY_VIEW_64_BIT-constant" title="Msf::Post::Windows::Registry::REGISTRY_VIEW_64_BIT (constant)">Registry::REGISTRY_VIEW_64_BIT</a></span>, <span class='object_link'><a href="Registry.html#REGISTRY_VIEW_NATIVE-constant" title="Msf::Post::Windows::Registry::REGISTRY_VIEW_NATIVE (constant)">Registry::REGISTRY_VIEW_NATIVE</a></span>, <span class='object_link'><a href="Registry.html#REG_BIG_ENDIAN-constant" title="Msf::Post::Windows::Registry::REG_BIG_ENDIAN (constant)">Registry::REG_BIG_ENDIAN</a></span>, <span class='object_link'><a href="Registry.html#REG_BINARY-constant" title="Msf::Post::Windows::Registry::REG_BINARY (constant)">Registry::REG_BINARY</a></span>, <span class='object_link'><a href="Registry.html#REG_DWORD-constant" title="Msf::Post::Windows::Registry::REG_DWORD (constant)">Registry::REG_DWORD</a></span>, <span class='object_link'><a href="Registry.html#REG_EXPAND_SZ-constant" title="Msf::Post::Windows::Registry::REG_EXPAND_SZ (constant)">Registry::REG_EXPAND_SZ</a></span>, <span class='object_link'><a href="Registry.html#REG_LINK-constant" title="Msf::Post::Windows::Registry::REG_LINK (constant)">Registry::REG_LINK</a></span>, <span class='object_link'><a href="Registry.html#REG_LITTLE_ENDIAN-constant" title="Msf::Post::Windows::Registry::REG_LITTLE_ENDIAN (constant)">Registry::REG_LITTLE_ENDIAN</a></span>, <span class='object_link'><a href="Registry.html#REG_MULTI_SZ-constant" title="Msf::Post::Windows::Registry::REG_MULTI_SZ (constant)">Registry::REG_MULTI_SZ</a></span>, <span class='object_link'><a href="Registry.html#REG_NONE-constant" title="Msf::Post::Windows::Registry::REG_NONE (constant)">Registry::REG_NONE</a></span>, <span class='object_link'><a href="Registry.html#REG_QWORD-constant" title="Msf::Post::Windows::Registry::REG_QWORD (constant)">Registry::REG_QWORD</a></span>, <span class='object_link'><a href="Registry.html#REG_SZ-constant" title="Msf::Post::Windows::Registry::REG_SZ (constant)">Registry::REG_SZ</a></span></p>
<h3 class="inherited">Constants included
from <span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></h3>
<p class="inherited"><span class='object_link'><a href="Error.html#ABANDONED_WAIT_0-constant" title="Msf::Post::Windows::Error::ABANDONED_WAIT_0 (constant)">Error::ABANDONED_WAIT_0</a></span>, <span class='object_link'><a href="Error.html#ABANDONED_WAIT_63-constant" title="Msf::Post::Windows::Error::ABANDONED_WAIT_63 (constant)">Error::ABANDONED_WAIT_63</a></span>, <span class='object_link'><a href="Error.html#ABANDON_HIBERFILE-constant" title="Msf::Post::Windows::Error::ABANDON_HIBERFILE (constant)">Error::ABANDON_HIBERFILE</a></span>, <span class='object_link'><a href="Error.html#ABIOS_ERROR-constant" title="Msf::Post::Windows::Error::ABIOS_ERROR (constant)">Error::ABIOS_ERROR</a></span>, <span class='object_link'><a href="Error.html#ACCESS_AUDIT_BY_POLICY-constant" title="Msf::Post::Windows::Error::ACCESS_AUDIT_BY_POLICY (constant)">Error::ACCESS_AUDIT_BY_POLICY</a></span>, <span class='object_link'><a href="Error.html#ACCESS_DENIED-constant" title="Msf::Post::Windows::Error::ACCESS_DENIED (constant)">Error::ACCESS_DENIED</a></span>, <span class='object_link'><a href="Error.html#ACCESS_DISABLED_BY_POLICY-constant" title="Msf::Post::Windows::Error::ACCESS_DISABLED_BY_POLICY (constant)">Error::ACCESS_DISABLED_BY_POLICY</a></span>, <span class='object_link'><a href="Error.html#ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY-constant" title="Msf::Post::Windows::Error::ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY (constant)">Error::ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY</a></span>, <span class='object_link'><a href="Error.html#ACCESS_DISABLED_WEBBLADE-constant" title="Msf::Post::Windows::Error::ACCESS_DISABLED_WEBBLADE (constant)">Error::ACCESS_DISABLED_WEBBLADE</a></span>, <span class='object_link'><a href="Error.html#ACCESS_DISABLED_WEBBLADE_TAMPER-constant" title="Msf::Post::Windows::Error::ACCESS_DISABLED_WEBBLADE_TAMPER (constant)">Error::ACCESS_DISABLED_WEBBLADE_TAMPER</a></span>, <span class='object_link'><a href="Error.html#ACCOUNT_DISABLED-constant" title="Msf::Post::Windows::Error::ACCOUNT_DISABLED (constant)">Error::ACCOUNT_DISABLED</a></span>, <span class='object_link'><a href="Error.html#ACCOUNT_EXPIRED-constant" title="Msf::Post::Windows::Error::ACCOUNT_EXPIRED (constant)">Error::ACCOUNT_EXPIRED</a></span>, <span class='object_link'><a href="Error.html#ACCOUNT_LOCKED_OUT-constant" title="Msf::Post::Windows::Error::ACCOUNT_LOCKED_OUT (constant)">Error::ACCOUNT_LOCKED_OUT</a></span>, <span class='object_link'><a href="Error.html#ACCOUNT_RESTRICTION-constant" title="Msf::Post::Windows::Error::ACCOUNT_RESTRICTION (constant)">Error::ACCOUNT_RESTRICTION</a></span>, <span class='object_link'><a href="Error.html#ACPI_ERROR-constant" title="Msf::Post::Windows::Error::ACPI_ERROR (constant)">Error::ACPI_ERROR</a></span>, <span class='object_link'><a href="Error.html#ACTIVATION_COUNT_EXCEEDED-constant" title="Msf::Post::Windows::Error::ACTIVATION_COUNT_EXCEEDED (constant)">Error::ACTIVATION_COUNT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#ACTIVE_CONNECTIONS-constant" title="Msf::Post::Windows::Error::ACTIVE_CONNECTIONS (constant)">Error::ACTIVE_CONNECTIONS</a></span>, <span class='object_link'><a href="Error.html#ADAP_HDW_ERR-constant" title="Msf::Post::Windows::Error::ADAP_HDW_ERR (constant)">Error::ADAP_HDW_ERR</a></span>, <span class='object_link'><a href="Error.html#ADDRESS_ALREADY_ASSOCIATED-constant" title="Msf::Post::Windows::Error::ADDRESS_ALREADY_ASSOCIATED (constant)">Error::ADDRESS_ALREADY_ASSOCIATED</a></span>, <span class='object_link'><a href="Error.html#ADDRESS_NOT_ASSOCIATED-constant" title="Msf::Post::Windows::Error::ADDRESS_NOT_ASSOCIATED (constant)">Error::ADDRESS_NOT_ASSOCIATED</a></span>, <span class='object_link'><a href="Error.html#ADVANCED_INSTALLER_FAILED-constant" title="Msf::Post::Windows::Error::ADVANCED_INSTALLER_FAILED (constant)">Error::ADVANCED_INSTALLER_FAILED</a></span>, <span class='object_link'><a href="Error.html#ALERTED-constant" title="Msf::Post::Windows::Error::ALERTED (constant)">Error::ALERTED</a></span>, <span class='object_link'><a href="Error.html#ALIAS_EXISTS-constant" title="Msf::Post::Windows::Error::ALIAS_EXISTS (constant)">Error::ALIAS_EXISTS</a></span>, <span class='object_link'><a href="Error.html#ALLOCATE_BUCKET-constant" title="Msf::Post::Windows::Error::ALLOCATE_BUCKET (constant)">Error::ALLOCATE_BUCKET</a></span>, <span class='object_link'><a href="Error.html#ALLOTTED_SPACE_EXCEEDED-constant" title="Msf::Post::Windows::Error::ALLOTTED_SPACE_EXCEEDED (constant)">Error::ALLOTTED_SPACE_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#ALL_NODES_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::ALL_NODES_NOT_AVAILABLE (constant)">Error::ALL_NODES_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#ALL_USER_TRUST_QUOTA_EXCEEDED-constant" title="Msf::Post::Windows::Error::ALL_USER_TRUST_QUOTA_EXCEEDED (constant)">Error::ALL_USER_TRUST_QUOTA_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#ALREADY_ASSIGNED-constant" title="Msf::Post::Windows::Error::ALREADY_ASSIGNED (constant)">Error::ALREADY_ASSIGNED</a></span>, <span class='object_link'><a href="Error.html#ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::ALREADY_EXISTS (constant)">Error::ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#ALREADY_FIBER-constant" title="Msf::Post::Windows::Error::ALREADY_FIBER (constant)">Error::ALREADY_FIBER</a></span>, <span class='object_link'><a href="Error.html#ALREADY_INITIALIZED-constant" title="Msf::Post::Windows::Error::ALREADY_INITIALIZED (constant)">Error::ALREADY_INITIALIZED</a></span>, <span class='object_link'><a href="Error.html#ALREADY_REGISTERED-constant" title="Msf::Post::Windows::Error::ALREADY_REGISTERED (constant)">Error::ALREADY_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#ALREADY_RUNNING_LKG-constant" title="Msf::Post::Windows::Error::ALREADY_RUNNING_LKG (constant)">Error::ALREADY_RUNNING_LKG</a></span>, <span class='object_link'><a href="Error.html#ALREADY_THREAD-constant" title="Msf::Post::Windows::Error::ALREADY_THREAD (constant)">Error::ALREADY_THREAD</a></span>, <span class='object_link'><a href="Error.html#ALREADY_WAITING-constant" title="Msf::Post::Windows::Error::ALREADY_WAITING (constant)">Error::ALREADY_WAITING</a></span>, <span class='object_link'><a href="Error.html#ALREADY_WIN32-constant" title="Msf::Post::Windows::Error::ALREADY_WIN32 (constant)">Error::ALREADY_WIN32</a></span>, <span class='object_link'><a href="Error.html#AMBIGUOUS_SYSTEM_DEVICE-constant" title="Msf::Post::Windows::Error::AMBIGUOUS_SYSTEM_DEVICE (constant)">Error::AMBIGUOUS_SYSTEM_DEVICE</a></span>, <span class='object_link'><a href="Error.html#APPHELP_BLOCK-constant" title="Msf::Post::Windows::Error::APPHELP_BLOCK (constant)">Error::APPHELP_BLOCK</a></span>, <span class='object_link'><a href="Error.html#APP_INIT_FAILURE-constant" title="Msf::Post::Windows::Error::APP_INIT_FAILURE (constant)">Error::APP_INIT_FAILURE</a></span>, <span class='object_link'><a href="Error.html#APP_WRONG_OS-constant" title="Msf::Post::Windows::Error::APP_WRONG_OS (constant)">Error::APP_WRONG_OS</a></span>, <span class='object_link'><a href="Error.html#ARBITRATION_UNHANDLED-constant" title="Msf::Post::Windows::Error::ARBITRATION_UNHANDLED (constant)">Error::ARBITRATION_UNHANDLED</a></span>, <span class='object_link'><a href="Error.html#ARENA_TRASHED-constant" title="Msf::Post::Windows::Error::ARENA_TRASHED (constant)">Error::ARENA_TRASHED</a></span>, <span class='object_link'><a href="Error.html#ARITHMETIC_OVERFLOW-constant" title="Msf::Post::Windows::Error::ARITHMETIC_OVERFLOW (constant)">Error::ARITHMETIC_OVERFLOW</a></span>, <span class='object_link'><a href="Error.html#ASSERTION_FAILURE-constant" title="Msf::Post::Windows::Error::ASSERTION_FAILURE (constant)">Error::ASSERTION_FAILURE</a></span>, <span class='object_link'><a href="Error.html#ATOMIC_LOCKS_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::ATOMIC_LOCKS_NOT_SUPPORTED (constant)">Error::ATOMIC_LOCKS_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#AUDIT_FAILED-constant" title="Msf::Post::Windows::Error::AUDIT_FAILED (constant)">Error::AUDIT_FAILED</a></span>, <span class='object_link'><a href="Error.html#AUTHENTICATION_FIREWALL_FAILED-constant" title="Msf::Post::Windows::Error::AUTHENTICATION_FIREWALL_FAILED (constant)">Error::AUTHENTICATION_FIREWALL_FAILED</a></span>, <span class='object_link'><a href="Error.html#AUTHIP_FAILURE-constant" title="Msf::Post::Windows::Error::AUTHIP_FAILURE (constant)">Error::AUTHIP_FAILURE</a></span>, <span class='object_link'><a href="Error.html#AUTODATASEG_EXCEEDS_64k-constant" title="Msf::Post::Windows::Error::AUTODATASEG_EXCEEDS_64k (constant)">Error::AUTODATASEG_EXCEEDS_64k</a></span>, <span class='object_link'><a href="Error.html#BACKUP_CONTROLLER-constant" title="Msf::Post::Windows::Error::BACKUP_CONTROLLER (constant)">Error::BACKUP_CONTROLLER</a></span>, <span class='object_link'><a href="Error.html#BADDB-constant" title="Msf::Post::Windows::Error::BADDB (constant)">Error::BADDB</a></span>, <span class='object_link'><a href="Error.html#BADKEY-constant" title="Msf::Post::Windows::Error::BADKEY (constant)">Error::BADKEY</a></span>, <span class='object_link'><a href="Error.html#BADSTARTPOSITION-constant" title="Msf::Post::Windows::Error::BADSTARTPOSITION (constant)">Error::BADSTARTPOSITION</a></span>, <span class='object_link'><a href="Error.html#BAD_ACCESSOR_FLAGS-constant" title="Msf::Post::Windows::Error::BAD_ACCESSOR_FLAGS (constant)">Error::BAD_ACCESSOR_FLAGS</a></span>, <span class='object_link'><a href="Error.html#BAD_ARGUMENTS-constant" title="Msf::Post::Windows::Error::BAD_ARGUMENTS (constant)">Error::BAD_ARGUMENTS</a></span>, <span class='object_link'><a href="Error.html#BAD_CLUSTERS-constant" title="Msf::Post::Windows::Error::BAD_CLUSTERS (constant)">Error::BAD_CLUSTERS</a></span>, <span class='object_link'><a href="Error.html#BAD_COMMAND-constant" title="Msf::Post::Windows::Error::BAD_COMMAND (constant)">Error::BAD_COMMAND</a></span>, <span class='object_link'><a href="Error.html#BAD_COMPRESSION_BUFFER-constant" title="Msf::Post::Windows::Error::BAD_COMPRESSION_BUFFER (constant)">Error::BAD_COMPRESSION_BUFFER</a></span>, <span class='object_link'><a href="Error.html#BAD_CONFIGURATION-constant" title="Msf::Post::Windows::Error::BAD_CONFIGURATION (constant)">Error::BAD_CONFIGURATION</a></span>, <span class='object_link'><a href="Error.html#BAD_CURRENT_DIRECTORY-constant" title="Msf::Post::Windows::Error::BAD_CURRENT_DIRECTORY (constant)">Error::BAD_CURRENT_DIRECTORY</a></span>, <span class='object_link'><a href="Error.html#BAD_DESCRIPTOR_FORMAT-constant" title="Msf::Post::Windows::Error::BAD_DESCRIPTOR_FORMAT (constant)">Error::BAD_DESCRIPTOR_FORMAT</a></span>, <span class='object_link'><a href="Error.html#BAD_DEVICE-constant" title="Msf::Post::Windows::Error::BAD_DEVICE (constant)">Error::BAD_DEVICE</a></span>, <span class='object_link'><a href="Error.html#BAD_DEV_TYPE-constant" title="Msf::Post::Windows::Error::BAD_DEV_TYPE (constant)">Error::BAD_DEV_TYPE</a></span>, <span class='object_link'><a href="Error.html#BAD_DLL_ENTRYPOINT-constant" title="Msf::Post::Windows::Error::BAD_DLL_ENTRYPOINT (constant)">Error::BAD_DLL_ENTRYPOINT</a></span>, <span class='object_link'><a href="Error.html#BAD_DRIVER-constant" title="Msf::Post::Windows::Error::BAD_DRIVER (constant)">Error::BAD_DRIVER</a></span>, <span class='object_link'><a href="Error.html#BAD_DRIVER_LEVEL-constant" title="Msf::Post::Windows::Error::BAD_DRIVER_LEVEL (constant)">Error::BAD_DRIVER_LEVEL</a></span>, <span class='object_link'><a href="Error.html#BAD_ENVIRONMENT-constant" title="Msf::Post::Windows::Error::BAD_ENVIRONMENT (constant)">Error::BAD_ENVIRONMENT</a></span>, <span class='object_link'><a href="Error.html#BAD_EXE_FORMAT-constant" title="Msf::Post::Windows::Error::BAD_EXE_FORMAT (constant)">Error::BAD_EXE_FORMAT</a></span>, <span class='object_link'><a href="Error.html#BAD_FILE_TYPE-constant" title="Msf::Post::Windows::Error::BAD_FILE_TYPE (constant)">Error::BAD_FILE_TYPE</a></span>, <span class='object_link'><a href="Error.html#BAD_FORMAT-constant" title="Msf::Post::Windows::Error::BAD_FORMAT (constant)">Error::BAD_FORMAT</a></span>, <span class='object_link'><a href="Error.html#BAD_FUNCTION_TABLE-constant" title="Msf::Post::Windows::Error::BAD_FUNCTION_TABLE (constant)">Error::BAD_FUNCTION_TABLE</a></span>, <span class='object_link'><a href="Error.html#BAD_IMPERSONATION_LEVEL-constant" title="Msf::Post::Windows::Error::BAD_IMPERSONATION_LEVEL (constant)">Error::BAD_IMPERSONATION_LEVEL</a></span>, <span class='object_link'><a href="Error.html#BAD_INHERITANCE_ACL-constant" title="Msf::Post::Windows::Error::BAD_INHERITANCE_ACL (constant)">Error::BAD_INHERITANCE_ACL</a></span>, <span class='object_link'><a href="Error.html#BAD_LENGTH-constant" title="Msf::Post::Windows::Error::BAD_LENGTH (constant)">Error::BAD_LENGTH</a></span>, <span class='object_link'><a href="Error.html#BAD_LOGON_SESSION_STATE-constant" title="Msf::Post::Windows::Error::BAD_LOGON_SESSION_STATE (constant)">Error::BAD_LOGON_SESSION_STATE</a></span>, <span class='object_link'><a href="Error.html#BAD_MCFG_TABLE-constant" title="Msf::Post::Windows::Error::BAD_MCFG_TABLE (constant)">Error::BAD_MCFG_TABLE</a></span>, <span class='object_link'><a href="Error.html#BAD_NETPATH-constant" title="Msf::Post::Windows::Error::BAD_NETPATH (constant)">Error::BAD_NETPATH</a></span>, <span class='object_link'><a href="Error.html#BAD_NET_NAME-constant" title="Msf::Post::Windows::Error::BAD_NET_NAME (constant)">Error::BAD_NET_NAME</a></span>, <span class='object_link'><a href="Error.html#BAD_NET_RESP-constant" title="Msf::Post::Windows::Error::BAD_NET_RESP (constant)">Error::BAD_NET_RESP</a></span>, <span class='object_link'><a href="Error.html#BAD_PATHNAME-constant" title="Msf::Post::Windows::Error::BAD_PATHNAME (constant)">Error::BAD_PATHNAME</a></span>, <span class='object_link'><a href="Error.html#BAD_PIPE-constant" title="Msf::Post::Windows::Error::BAD_PIPE (constant)">Error::BAD_PIPE</a></span>, <span class='object_link'><a href="Error.html#BAD_PROFILE-constant" title="Msf::Post::Windows::Error::BAD_PROFILE (constant)">Error::BAD_PROFILE</a></span>, <span class='object_link'><a href="Error.html#BAD_PROVIDER-constant" title="Msf::Post::Windows::Error::BAD_PROVIDER (constant)">Error::BAD_PROVIDER</a></span>, <span class='object_link'><a href="Error.html#BAD_QUERY_SYNTAX-constant" title="Msf::Post::Windows::Error::BAD_QUERY_SYNTAX (constant)">Error::BAD_QUERY_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#BAD_RECOVERY_POLICY-constant" title="Msf::Post::Windows::Error::BAD_RECOVERY_POLICY (constant)">Error::BAD_RECOVERY_POLICY</a></span>, <span class='object_link'><a href="Error.html#BAD_REM_ADAP-constant" title="Msf::Post::Windows::Error::BAD_REM_ADAP (constant)">Error::BAD_REM_ADAP</a></span>, <span class='object_link'><a href="Error.html#BAD_SERVICE_ENTRYPOINT-constant" title="Msf::Post::Windows::Error::BAD_SERVICE_ENTRYPOINT (constant)">Error::BAD_SERVICE_ENTRYPOINT</a></span>, <span class='object_link'><a href="Error.html#BAD_STACK-constant" title="Msf::Post::Windows::Error::BAD_STACK (constant)">Error::BAD_STACK</a></span>, <span class='object_link'><a href="Error.html#BAD_THREADID_ADDR-constant" title="Msf::Post::Windows::Error::BAD_THREADID_ADDR (constant)">Error::BAD_THREADID_ADDR</a></span>, <span class='object_link'><a href="Error.html#BAD_TOKEN_TYPE-constant" title="Msf::Post::Windows::Error::BAD_TOKEN_TYPE (constant)">Error::BAD_TOKEN_TYPE</a></span>, <span class='object_link'><a href="Error.html#BAD_UNIT-constant" title="Msf::Post::Windows::Error::BAD_UNIT (constant)">Error::BAD_UNIT</a></span>, <span class='object_link'><a href="Error.html#BAD_USERNAME-constant" title="Msf::Post::Windows::Error::BAD_USERNAME (constant)">Error::BAD_USERNAME</a></span>, <span class='object_link'><a href="Error.html#BAD_USER_PROFILE-constant" title="Msf::Post::Windows::Error::BAD_USER_PROFILE (constant)">Error::BAD_USER_PROFILE</a></span>, <span class='object_link'><a href="Error.html#BAD_VALIDATION_CLASS-constant" title="Msf::Post::Windows::Error::BAD_VALIDATION_CLASS (constant)">Error::BAD_VALIDATION_CLASS</a></span>, <span class='object_link'><a href="Error.html#BEGINNING_OF_MEDIA-constant" title="Msf::Post::Windows::Error::BEGINNING_OF_MEDIA (constant)">Error::BEGINNING_OF_MEDIA</a></span>, <span class='object_link'><a href="Error.html#BEYOND_VDL-constant" title="Msf::Post::Windows::Error::BEYOND_VDL (constant)">Error::BEYOND_VDL</a></span>, <span class='object_link'><a href="Error.html#BIOS_FAILED_TO_CONNECT_INTERRUPT-constant" title="Msf::Post::Windows::Error::BIOS_FAILED_TO_CONNECT_INTERRUPT (constant)">Error::BIOS_FAILED_TO_CONNECT_INTERRUPT</a></span>, <span class='object_link'><a href="Error.html#BOOT_ALREADY_ACCEPTED-constant" title="Msf::Post::Windows::Error::BOOT_ALREADY_ACCEPTED (constant)">Error::BOOT_ALREADY_ACCEPTED</a></span>, <span class='object_link'><a href="Error.html#BROKEN_PIPE-constant" title="Msf::Post::Windows::Error::BROKEN_PIPE (constant)">Error::BROKEN_PIPE</a></span>, <span class='object_link'><a href="Error.html#BUFFER_ALL_ZEROS-constant" title="Msf::Post::Windows::Error::BUFFER_ALL_ZEROS (constant)">Error::BUFFER_ALL_ZEROS</a></span>, <span class='object_link'><a href="Error.html#BUFFER_OVERFLOW-constant" title="Msf::Post::Windows::Error::BUFFER_OVERFLOW (constant)">Error::BUFFER_OVERFLOW</a></span>, <span class='object_link'><a href="Error.html#BUSY-constant" title="Msf::Post::Windows::Error::BUSY (constant)">Error::BUSY</a></span>, <span class='object_link'><a href="Error.html#BUSY_DRIVE-constant" title="Msf::Post::Windows::Error::BUSY_DRIVE (constant)">Error::BUSY_DRIVE</a></span>, <span class='object_link'><a href="Error.html#BUS_RESET-constant" title="Msf::Post::Windows::Error::BUS_RESET (constant)">Error::BUS_RESET</a></span>, <span class='object_link'><a href="Error.html#CACHE_PAGE_LOCKED-constant" title="Msf::Post::Windows::Error::CACHE_PAGE_LOCKED (constant)">Error::CACHE_PAGE_LOCKED</a></span>, <span class='object_link'><a href="Error.html#CALLBACK_POP_STACK-constant" title="Msf::Post::Windows::Error::CALLBACK_POP_STACK (constant)">Error::CALLBACK_POP_STACK</a></span>, <span class='object_link'><a href="Error.html#CALLBACK_SUPPLIED_INVALID_DATA-constant" title="Msf::Post::Windows::Error::CALLBACK_SUPPLIED_INVALID_DATA (constant)">Error::CALLBACK_SUPPLIED_INVALID_DATA</a></span>, <span class='object_link'><a href="Error.html#CALL_NOT_IMPLEMENTED-constant" title="Msf::Post::Windows::Error::CALL_NOT_IMPLEMENTED (constant)">Error::CALL_NOT_IMPLEMENTED</a></span>, <span class='object_link'><a href="Error.html#CANCELLED-constant" title="Msf::Post::Windows::Error::CANCELLED (constant)">Error::CANCELLED</a></span>, <span class='object_link'><a href="Error.html#CANCEL_VIOLATION-constant" title="Msf::Post::Windows::Error::CANCEL_VIOLATION (constant)">Error::CANCEL_VIOLATION</a></span>, <span class='object_link'><a href="Error.html#CANNOT_ABORT_TRANSACTIONS-constant" title="Msf::Post::Windows::Error::CANNOT_ABORT_TRANSACTIONS (constant)">Error::CANNOT_ABORT_TRANSACTIONS</a></span>, <span class='object_link'><a href="Error.html#CANNOT_ACCEPT_TRANSACTED_WORK-constant" title="Msf::Post::Windows::Error::CANNOT_ACCEPT_TRANSACTED_WORK (constant)">Error::CANNOT_ACCEPT_TRANSACTED_WORK</a></span>, <span class='object_link'><a href="Error.html#CANNOT_BREAK_OPLOCK-constant" title="Msf::Post::Windows::Error::CANNOT_BREAK_OPLOCK (constant)">Error::CANNOT_BREAK_OPLOCK</a></span>, <span class='object_link'><a href="Error.html#CANNOT_COPY-constant" title="Msf::Post::Windows::Error::CANNOT_COPY (constant)">Error::CANNOT_COPY</a></span>, <span class='object_link'><a href="Error.html#CANNOT_DETECT_DRIVER_FAILURE-constant" title="Msf::Post::Windows::Error::CANNOT_DETECT_DRIVER_FAILURE (constant)">Error::CANNOT_DETECT_DRIVER_FAILURE</a></span>, <span class='object_link'><a href="Error.html#CANNOT_DETECT_PROCESS_ABORT-constant" title="Msf::Post::Windows::Error::CANNOT_DETECT_PROCESS_ABORT (constant)">Error::CANNOT_DETECT_PROCESS_ABORT</a></span>, <span class='object_link'><a href="Error.html#CANNOT_EXECUTE_FILE_IN_TRANSACTION-constant" title="Msf::Post::Windows::Error::CANNOT_EXECUTE_FILE_IN_TRANSACTION (constant)">Error::CANNOT_EXECUTE_FILE_IN_TRANSACTION</a></span>, <span class='object_link'><a href="Error.html#CANNOT_FIND_WND_CLASS-constant" title="Msf::Post::Windows::Error::CANNOT_FIND_WND_CLASS (constant)">Error::CANNOT_FIND_WND_CLASS</a></span>, <span class='object_link'><a href="Error.html#CANNOT_GRANT_REQUESTED_OPLOCK-constant" title="Msf::Post::Windows::Error::CANNOT_GRANT_REQUESTED_OPLOCK (constant)">Error::CANNOT_GRANT_REQUESTED_OPLOCK</a></span>, <span class='object_link'><a href="Error.html#CANNOT_IMPERSONATE-constant" title="Msf::Post::Windows::Error::CANNOT_IMPERSONATE (constant)">Error::CANNOT_IMPERSONATE</a></span>, <span class='object_link'><a href="Error.html#CANNOT_LOAD_REGISTRY_FILE-constant" title="Msf::Post::Windows::Error::CANNOT_LOAD_REGISTRY_FILE (constant)">Error::CANNOT_LOAD_REGISTRY_FILE</a></span>, <span class='object_link'><a href="Error.html#CANNOT_MAKE-constant" title="Msf::Post::Windows::Error::CANNOT_MAKE (constant)">Error::CANNOT_MAKE</a></span>, <span class='object_link'><a href="Error.html#CANNOT_OPEN_PROFILE-constant" title="Msf::Post::Windows::Error::CANNOT_OPEN_PROFILE (constant)">Error::CANNOT_OPEN_PROFILE</a></span>, <span class='object_link'><a href="Error.html#CANTFETCHBACKWARDS-constant" title="Msf::Post::Windows::Error::CANTFETCHBACKWARDS (constant)">Error::CANTFETCHBACKWARDS</a></span>, <span class='object_link'><a href="Error.html#CANTOPEN-constant" title="Msf::Post::Windows::Error::CANTOPEN (constant)">Error::CANTOPEN</a></span>, <span class='object_link'><a href="Error.html#CANTREAD-constant" title="Msf::Post::Windows::Error::CANTREAD (constant)">Error::CANTREAD</a></span>, <span class='object_link'><a href="Error.html#CANTSCROLLBACKWARDS-constant" title="Msf::Post::Windows::Error::CANTSCROLLBACKWARDS (constant)">Error::CANTSCROLLBACKWARDS</a></span>, <span class='object_link'><a href="Error.html#CANTWRITE-constant" title="Msf::Post::Windows::Error::CANTWRITE (constant)">Error::CANTWRITE</a></span>, <span class='object_link'><a href="Error.html#CANT_ACCESS_DOMAIN_INFO-constant" title="Msf::Post::Windows::Error::CANT_ACCESS_DOMAIN_INFO (constant)">Error::CANT_ACCESS_DOMAIN_INFO</a></span>, <span class='object_link'><a href="Error.html#CANT_ACCESS_FILE-constant" title="Msf::Post::Windows::Error::CANT_ACCESS_FILE (constant)">Error::CANT_ACCESS_FILE</a></span>, <span class='object_link'><a href="Error.html#CANT_BREAK_TRANSACTIONAL_DEPENDENCY-constant" title="Msf::Post::Windows::Error::CANT_BREAK_TRANSACTIONAL_DEPENDENCY (constant)">Error::CANT_BREAK_TRANSACTIONAL_DEPENDENCY</a></span>, <span class='object_link'><a href="Error.html#CANT_CREATE_MORE_STREAM_MINIVERSIONS-constant" title="Msf::Post::Windows::Error::CANT_CREATE_MORE_STREAM_MINIVERSIONS (constant)">Error::CANT_CREATE_MORE_STREAM_MINIVERSIONS</a></span>, <span class='object_link'><a href="Error.html#CANT_CROSS_RM_BOUNDARY-constant" title="Msf::Post::Windows::Error::CANT_CROSS_RM_BOUNDARY (constant)">Error::CANT_CROSS_RM_BOUNDARY</a></span>, <span class='object_link'><a href="Error.html#CANT_DELETE_LAST_ITEM-constant" title="Msf::Post::Windows::Error::CANT_DELETE_LAST_ITEM (constant)">Error::CANT_DELETE_LAST_ITEM</a></span>, <span class='object_link'><a href="Error.html#CANT_DISABLE_MANDATORY-constant" title="Msf::Post::Windows::Error::CANT_DISABLE_MANDATORY (constant)">Error::CANT_DISABLE_MANDATORY</a></span>, <span class='object_link'><a href="Error.html#CANT_ENABLE_DENY_ONLY-constant" title="Msf::Post::Windows::Error::CANT_ENABLE_DENY_ONLY (constant)">Error::CANT_ENABLE_DENY_ONLY</a></span>, <span class='object_link'><a href="Error.html#CANT_EVICT_ACTIVE_NODE-constant" title="Msf::Post::Windows::Error::CANT_EVICT_ACTIVE_NODE (constant)">Error::CANT_EVICT_ACTIVE_NODE</a></span>, <span class='object_link'><a href="Error.html#CANT_OPEN_ANONYMOUS-constant" title="Msf::Post::Windows::Error::CANT_OPEN_ANONYMOUS (constant)">Error::CANT_OPEN_ANONYMOUS</a></span>, <span class='object_link'><a href="Error.html#CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT-constant" title="Msf::Post::Windows::Error::CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT (constant)">Error::CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT</a></span>, <span class='object_link'><a href="Error.html#CANT_RECOVER_WITH_HANDLE_OPEN-constant" title="Msf::Post::Windows::Error::CANT_RECOVER_WITH_HANDLE_OPEN (constant)">Error::CANT_RECOVER_WITH_HANDLE_OPEN</a></span>, <span class='object_link'><a href="Error.html#CANT_RESOLVE_FILENAME-constant" title="Msf::Post::Windows::Error::CANT_RESOLVE_FILENAME (constant)">Error::CANT_RESOLVE_FILENAME</a></span>, <span class='object_link'><a href="Error.html#CANT_TERMINATE_SELF-constant" title="Msf::Post::Windows::Error::CANT_TERMINATE_SELF (constant)">Error::CANT_TERMINATE_SELF</a></span>, <span class='object_link'><a href="Error.html#CANT_WAIT-constant" title="Msf::Post::Windows::Error::CANT_WAIT (constant)">Error::CANT_WAIT</a></span>, <span class='object_link'><a href="Error.html#CAN_NOT_COMPLETE-constant" title="Msf::Post::Windows::Error::CAN_NOT_COMPLETE (constant)">Error::CAN_NOT_COMPLETE</a></span>, <span class='object_link'><a href="Error.html#CAN_NOT_DEL_LOCAL_WINS-constant" title="Msf::Post::Windows::Error::CAN_NOT_DEL_LOCAL_WINS (constant)">Error::CAN_NOT_DEL_LOCAL_WINS</a></span>, <span class='object_link'><a href="Error.html#CARDBUS_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::CARDBUS_NOT_SUPPORTED (constant)">Error::CARDBUS_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#CHECKING_FILE_SYSTEM-constant" title="Msf::Post::Windows::Error::CHECKING_FILE_SYSTEM (constant)">Error::CHECKING_FILE_SYSTEM</a></span>, <span class='object_link'><a href="Error.html#CHECKOUT_REQUIRED-constant" title="Msf::Post::Windows::Error::CHECKOUT_REQUIRED (constant)">Error::CHECKOUT_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#CHILD_MUST_BE_VOLATILE-constant" title="Msf::Post::Windows::Error::CHILD_MUST_BE_VOLATILE (constant)">Error::CHILD_MUST_BE_VOLATILE</a></span>, <span class='object_link'><a href="Error.html#CHILD_NOT_COMPLETE-constant" title="Msf::Post::Windows::Error::CHILD_NOT_COMPLETE (constant)">Error::CHILD_NOT_COMPLETE</a></span>, <span class='object_link'><a href="Error.html#CHILD_WINDOW_MENU-constant" title="Msf::Post::Windows::Error::CHILD_WINDOW_MENU (constant)">Error::CHILD_WINDOW_MENU</a></span>, <span class='object_link'><a href="Error.html#CIRCULAR_DEPENDENCY-constant" title="Msf::Post::Windows::Error::CIRCULAR_DEPENDENCY (constant)">Error::CIRCULAR_DEPENDENCY</a></span>, <span class='object_link'><a href="Error.html#CLASS_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::CLASS_ALREADY_EXISTS (constant)">Error::CLASS_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#CLASS_DOES_NOT_EXIST-constant" title="Msf::Post::Windows::Error::CLASS_DOES_NOT_EXIST (constant)">Error::CLASS_DOES_NOT_EXIST</a></span>, <span class='object_link'><a href="Error.html#CLASS_HAS_WINDOWS-constant" title="Msf::Post::Windows::Error::CLASS_HAS_WINDOWS (constant)">Error::CLASS_HAS_WINDOWS</a></span>, <span class='object_link'><a href="Error.html#CLEANER_CARTRIDGE_INSTALLED-constant" title="Msf::Post::Windows::Error::CLEANER_CARTRIDGE_INSTALLED (constant)">Error::CLEANER_CARTRIDGE_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#CLEANER_CARTRIDGE_SPENT-constant" title="Msf::Post::Windows::Error::CLEANER_CARTRIDGE_SPENT (constant)">Error::CLEANER_CARTRIDGE_SPENT</a></span>, <span class='object_link'><a href="Error.html#CLEANER_SLOT_NOT_SET-constant" title="Msf::Post::Windows::Error::CLEANER_SLOT_NOT_SET (constant)">Error::CLEANER_SLOT_NOT_SET</a></span>, <span class='object_link'><a href="Error.html#CLEANER_SLOT_SET-constant" title="Msf::Post::Windows::Error::CLEANER_SLOT_SET (constant)">Error::CLEANER_SLOT_SET</a></span>, <span class='object_link'><a href="Error.html#CLIENT_SERVER_PARAMETERS_INVALID-constant" title="Msf::Post::Windows::Error::CLIENT_SERVER_PARAMETERS_INVALID (constant)">Error::CLIENT_SERVER_PARAMETERS_INVALID</a></span>, <span class='object_link'><a href="Error.html#CLIPBOARD_NOT_OPEN-constant" title="Msf::Post::Windows::Error::CLIPBOARD_NOT_OPEN (constant)">Error::CLIPBOARD_NOT_OPEN</a></span>, <span class='object_link'><a href="Error.html#CLIPPING_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::CLIPPING_NOT_SUPPORTED (constant)">Error::CLIPPING_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#CLUSCFG_ALREADY_COMMITTED-constant" title="Msf::Post::Windows::Error::CLUSCFG_ALREADY_COMMITTED (constant)">Error::CLUSCFG_ALREADY_COMMITTED</a></span>, <span class='object_link'><a href="Error.html#CLUSCFG_ROLLBACK_FAILED-constant" title="Msf::Post::Windows::Error::CLUSCFG_ROLLBACK_FAILED (constant)">Error::CLUSCFG_ROLLBACK_FAILED</a></span>, <span class='object_link'><a href="Error.html#CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT-constant" title="Msf::Post::Windows::Error::CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT (constant)">Error::CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#CLUSTERLOG_CHKPOINT_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CLUSTERLOG_CHKPOINT_NOT_FOUND (constant)">Error::CLUSTERLOG_CHKPOINT_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CLUSTERLOG_CORRUPT-constant" title="Msf::Post::Windows::Error::CLUSTERLOG_CORRUPT (constant)">Error::CLUSTERLOG_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#CLUSTERLOG_EXCEEDS_MAXSIZE-constant" title="Msf::Post::Windows::Error::CLUSTERLOG_EXCEEDS_MAXSIZE (constant)">Error::CLUSTERLOG_EXCEEDS_MAXSIZE</a></span>, <span class='object_link'><a href="Error.html#CLUSTERLOG_NOT_ENOUGH_SPACE-constant" title="Msf::Post::Windows::Error::CLUSTERLOG_NOT_ENOUGH_SPACE (constant)">Error::CLUSTERLOG_NOT_ENOUGH_SPACE</a></span>, <span class='object_link'><a href="Error.html#CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE-constant" title="Msf::Post::Windows::Error::CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE (constant)">Error::CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_BACKUP_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::CLUSTER_BACKUP_IN_PROGRESS (constant)">Error::CLUSTER_BACKUP_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME-constant" title="Msf::Post::Windows::Error::CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME (constant)">Error::CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_CANT_DESERIALIZE_DATA-constant" title="Msf::Post::Windows::Error::CLUSTER_CANT_DESERIALIZE_DATA (constant)">Error::CLUSTER_CANT_DESERIALIZE_DATA</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_DATABASE_SEQMISMATCH-constant" title="Msf::Post::Windows::Error::CLUSTER_DATABASE_SEQMISMATCH (constant)">Error::CLUSTER_DATABASE_SEQMISMATCH</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS (constant)">Error::CLUSTER_DATABASE_TRANSACTION_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS (constant)">Error::CLUSTER_DATABASE_TRANSACTION_NOT_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_EVICT_INVALID_REQUEST-constant" title="Msf::Post::Windows::Error::CLUSTER_EVICT_INVALID_REQUEST (constant)">Error::CLUSTER_EVICT_INVALID_REQUEST</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_EVICT_WITHOUT_CLEANUP-constant" title="Msf::Post::Windows::Error::CLUSTER_EVICT_WITHOUT_CLEANUP (constant)">Error::CLUSTER_EVICT_WITHOUT_CLEANUP</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_GROUP_BUSY-constant" title="Msf::Post::Windows::Error::CLUSTER_GROUP_BUSY (constant)">Error::CLUSTER_GROUP_BUSY</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_GROUP_MOVING-constant" title="Msf::Post::Windows::Error::CLUSTER_GROUP_MOVING (constant)">Error::CLUSTER_GROUP_MOVING</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_GROUP_SINGLETON_RESOURCE-constant" title="Msf::Post::Windows::Error::CLUSTER_GROUP_SINGLETON_RESOURCE (constant)">Error::CLUSTER_GROUP_SINGLETON_RESOURCE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_GUM_NOT_LOCKER-constant" title="Msf::Post::Windows::Error::CLUSTER_GUM_NOT_LOCKER (constant)">Error::CLUSTER_GUM_NOT_LOCKER</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INCOMPATIBLE_VERSIONS-constant" title="Msf::Post::Windows::Error::CLUSTER_INCOMPATIBLE_VERSIONS (constant)">Error::CLUSTER_INCOMPATIBLE_VERSIONS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INSTANCE_ID_MISMATCH-constant" title="Msf::Post::Windows::Error::CLUSTER_INSTANCE_ID_MISMATCH (constant)">Error::CLUSTER_INSTANCE_ID_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INTERNAL_INVALID_FUNCTION-constant" title="Msf::Post::Windows::Error::CLUSTER_INTERNAL_INVALID_FUNCTION (constant)">Error::CLUSTER_INTERNAL_INVALID_FUNCTION</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INVALID_IPV6_NETWORK-constant" title="Msf::Post::Windows::Error::CLUSTER_INVALID_IPV6_NETWORK (constant)">Error::CLUSTER_INVALID_IPV6_NETWORK</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INVALID_IPV6_TUNNEL_NETWORK-constant" title="Msf::Post::Windows::Error::CLUSTER_INVALID_IPV6_TUNNEL_NETWORK (constant)">Error::CLUSTER_INVALID_IPV6_TUNNEL_NETWORK</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INVALID_NETWORK-constant" title="Msf::Post::Windows::Error::CLUSTER_INVALID_NETWORK (constant)">Error::CLUSTER_INVALID_NETWORK</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INVALID_NETWORK_PROVIDER-constant" title="Msf::Post::Windows::Error::CLUSTER_INVALID_NETWORK_PROVIDER (constant)">Error::CLUSTER_INVALID_NETWORK_PROVIDER</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INVALID_NODE-constant" title="Msf::Post::Windows::Error::CLUSTER_INVALID_NODE (constant)">Error::CLUSTER_INVALID_NODE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INVALID_REQUEST-constant" title="Msf::Post::Windows::Error::CLUSTER_INVALID_REQUEST (constant)">Error::CLUSTER_INVALID_REQUEST</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INVALID_SECURITY_DESCRIPTOR-constant" title="Msf::Post::Windows::Error::CLUSTER_INVALID_SECURITY_DESCRIPTOR (constant)">Error::CLUSTER_INVALID_SECURITY_DESCRIPTOR</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INVALID_STRING_FORMAT-constant" title="Msf::Post::Windows::Error::CLUSTER_INVALID_STRING_FORMAT (constant)">Error::CLUSTER_INVALID_STRING_FORMAT</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_INVALID_STRING_TERMINATION-constant" title="Msf::Post::Windows::Error::CLUSTER_INVALID_STRING_TERMINATION (constant)">Error::CLUSTER_INVALID_STRING_TERMINATION</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_IPADDR_IN_USE-constant" title="Msf::Post::Windows::Error::CLUSTER_IPADDR_IN_USE (constant)">Error::CLUSTER_IPADDR_IN_USE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_JOIN_ABORTED-constant" title="Msf::Post::Windows::Error::CLUSTER_JOIN_ABORTED (constant)">Error::CLUSTER_JOIN_ABORTED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_JOIN_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::CLUSTER_JOIN_IN_PROGRESS (constant)">Error::CLUSTER_JOIN_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_JOIN_NOT_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::CLUSTER_JOIN_NOT_IN_PROGRESS (constant)">Error::CLUSTER_JOIN_NOT_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_LAST_INTERNAL_NETWORK-constant" title="Msf::Post::Windows::Error::CLUSTER_LAST_INTERNAL_NETWORK (constant)">Error::CLUSTER_LAST_INTERNAL_NETWORK</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_LOCAL_NODE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CLUSTER_LOCAL_NODE_NOT_FOUND (constant)">Error::CLUSTER_LOCAL_NODE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED-constant" title="Msf::Post::Windows::Error::CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED (constant)">Error::CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_MAX_NODES_IN_CLUSTER-constant" title="Msf::Post::Windows::Error::CLUSTER_MAX_NODES_IN_CLUSTER (constant)">Error::CLUSTER_MAX_NODES_IN_CLUSTER</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_MEMBERSHIP_HALT-constant" title="Msf::Post::Windows::Error::CLUSTER_MEMBERSHIP_HALT (constant)">Error::CLUSTER_MEMBERSHIP_HALT</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_MEMBERSHIP_INVALID_STATE-constant" title="Msf::Post::Windows::Error::CLUSTER_MEMBERSHIP_INVALID_STATE (constant)">Error::CLUSTER_MEMBERSHIP_INVALID_STATE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME-constant" title="Msf::Post::Windows::Error::CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME (constant)">Error::CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NETINTERFACE_EXISTS-constant" title="Msf::Post::Windows::Error::CLUSTER_NETINTERFACE_EXISTS (constant)">Error::CLUSTER_NETINTERFACE_EXISTS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NETINTERFACE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CLUSTER_NETINTERFACE_NOT_FOUND (constant)">Error::CLUSTER_NETINTERFACE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NETWORK_ALREADY_OFFLINE-constant" title="Msf::Post::Windows::Error::CLUSTER_NETWORK_ALREADY_OFFLINE (constant)">Error::CLUSTER_NETWORK_ALREADY_OFFLINE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NETWORK_ALREADY_ONLINE-constant" title="Msf::Post::Windows::Error::CLUSTER_NETWORK_ALREADY_ONLINE (constant)">Error::CLUSTER_NETWORK_ALREADY_ONLINE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NETWORK_EXISTS-constant" title="Msf::Post::Windows::Error::CLUSTER_NETWORK_EXISTS (constant)">Error::CLUSTER_NETWORK_EXISTS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NETWORK_HAS_DEPENDENTS-constant" title="Msf::Post::Windows::Error::CLUSTER_NETWORK_HAS_DEPENDENTS (constant)">Error::CLUSTER_NETWORK_HAS_DEPENDENTS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NETWORK_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CLUSTER_NETWORK_NOT_FOUND (constant)">Error::CLUSTER_NETWORK_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NETWORK_NOT_FOUND_FOR_IP-constant" title="Msf::Post::Windows::Error::CLUSTER_NETWORK_NOT_FOUND_FOR_IP (constant)">Error::CLUSTER_NETWORK_NOT_FOUND_FOR_IP</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NETWORK_NOT_INTERNAL-constant" title="Msf::Post::Windows::Error::CLUSTER_NETWORK_NOT_INTERNAL (constant)">Error::CLUSTER_NETWORK_NOT_INTERNAL</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_ALREADY_DOWN-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_ALREADY_DOWN (constant)">Error::CLUSTER_NODE_ALREADY_DOWN</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_ALREADY_HAS_DFS_ROOT-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_ALREADY_HAS_DFS_ROOT (constant)">Error::CLUSTER_NODE_ALREADY_HAS_DFS_ROOT</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_ALREADY_MEMBER-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_ALREADY_MEMBER (constant)">Error::CLUSTER_NODE_ALREADY_MEMBER</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_ALREADY_UP-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_ALREADY_UP (constant)">Error::CLUSTER_NODE_ALREADY_UP</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_DOWN-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_DOWN (constant)">Error::CLUSTER_NODE_DOWN</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_EXISTS-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_EXISTS (constant)">Error::CLUSTER_NODE_EXISTS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_NOT_FOUND (constant)">Error::CLUSTER_NODE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_NOT_MEMBER-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_NOT_MEMBER (constant)">Error::CLUSTER_NODE_NOT_MEMBER</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_NOT_PAUSED-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_NOT_PAUSED (constant)">Error::CLUSTER_NODE_NOT_PAUSED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_NOT_READY-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_NOT_READY (constant)">Error::CLUSTER_NODE_NOT_READY</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_PAUSED-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_PAUSED (constant)">Error::CLUSTER_NODE_PAUSED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_SHUTTING_DOWN-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_SHUTTING_DOWN (constant)">Error::CLUSTER_NODE_SHUTTING_DOWN</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_UNREACHABLE-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_UNREACHABLE (constant)">Error::CLUSTER_NODE_UNREACHABLE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NODE_UP-constant" title="Msf::Post::Windows::Error::CLUSTER_NODE_UP (constant)">Error::CLUSTER_NODE_UP</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NOT_INSTALLED-constant" title="Msf::Post::Windows::Error::CLUSTER_NOT_INSTALLED (constant)">Error::CLUSTER_NOT_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NOT_SHARED_VOLUME-constant" title="Msf::Post::Windows::Error::CLUSTER_NOT_SHARED_VOLUME (constant)">Error::CLUSTER_NOT_SHARED_VOLUME</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NO_NET_ADAPTERS-constant" title="Msf::Post::Windows::Error::CLUSTER_NO_NET_ADAPTERS (constant)">Error::CLUSTER_NO_NET_ADAPTERS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NO_QUORUM-constant" title="Msf::Post::Windows::Error::CLUSTER_NO_QUORUM (constant)">Error::CLUSTER_NO_QUORUM</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NO_RPC_PACKAGES_REGISTERED-constant" title="Msf::Post::Windows::Error::CLUSTER_NO_RPC_PACKAGES_REGISTERED (constant)">Error::CLUSTER_NO_RPC_PACKAGES_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NO_SECURITY_CONTEXT-constant" title="Msf::Post::Windows::Error::CLUSTER_NO_SECURITY_CONTEXT (constant)">Error::CLUSTER_NO_SECURITY_CONTEXT</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_NULL_DATA-constant" title="Msf::Post::Windows::Error::CLUSTER_NULL_DATA (constant)">Error::CLUSTER_NULL_DATA</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_OBJECT_ALREADY_USED-constant" title="Msf::Post::Windows::Error::CLUSTER_OBJECT_ALREADY_USED (constant)">Error::CLUSTER_OBJECT_ALREADY_USED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_OLD_VERSION-constant" title="Msf::Post::Windows::Error::CLUSTER_OLD_VERSION (constant)">Error::CLUSTER_OLD_VERSION</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_OWNER_NOT_IN_PREFLIST-constant" title="Msf::Post::Windows::Error::CLUSTER_OWNER_NOT_IN_PREFLIST (constant)">Error::CLUSTER_OWNER_NOT_IN_PREFLIST</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_PARAMETER_MISMATCH-constant" title="Msf::Post::Windows::Error::CLUSTER_PARAMETER_MISMATCH (constant)">Error::CLUSTER_PARAMETER_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_PARAMETER_OUT_OF_BOUNDS-constant" title="Msf::Post::Windows::Error::CLUSTER_PARAMETER_OUT_OF_BOUNDS (constant)">Error::CLUSTER_PARAMETER_OUT_OF_BOUNDS</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_PARTIAL_READ-constant" title="Msf::Post::Windows::Error::CLUSTER_PARTIAL_READ (constant)">Error::CLUSTER_PARTIAL_READ</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_PARTIAL_SEND-constant" title="Msf::Post::Windows::Error::CLUSTER_PARTIAL_SEND (constant)">Error::CLUSTER_PARTIAL_SEND</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_PARTIAL_WRITE-constant" title="Msf::Post::Windows::Error::CLUSTER_PARTIAL_WRITE (constant)">Error::CLUSTER_PARTIAL_WRITE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_POISONED-constant" title="Msf::Post::Windows::Error::CLUSTER_POISONED (constant)">Error::CLUSTER_POISONED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_PROPERTY_DATA_TYPE_MISMATCH-constant" title="Msf::Post::Windows::Error::CLUSTER_PROPERTY_DATA_TYPE_MISMATCH (constant)">Error::CLUSTER_PROPERTY_DATA_TYPE_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_QUORUMLOG_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CLUSTER_QUORUMLOG_NOT_FOUND (constant)">Error::CLUSTER_QUORUMLOG_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_REGISTRY_INVALID_FUNCTION-constant" title="Msf::Post::Windows::Error::CLUSTER_REGISTRY_INVALID_FUNCTION (constant)">Error::CLUSTER_REGISTRY_INVALID_FUNCTION</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_RESNAME_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CLUSTER_RESNAME_NOT_FOUND (constant)">Error::CLUSTER_RESNAME_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE-constant" title="Msf::Post::Windows::Error::CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE (constant)">Error::CLUSTER_RESOURCES_MUST_BE_ONLINE_ON_THE_SAME_NODE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_RESOURCE_CONFIGURATION_ERROR-constant" title="Msf::Post::Windows::Error::CLUSTER_RESOURCE_CONFIGURATION_ERROR (constant)">Error::CLUSTER_RESOURCE_CONFIGURATION_ERROR</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_RESOURCE_PROVIDER_FAILED-constant" title="Msf::Post::Windows::Error::CLUSTER_RESOURCE_PROVIDER_FAILED (constant)">Error::CLUSTER_RESOURCE_PROVIDER_FAILED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_RESOURCE_TYPE_BUSY-constant" title="Msf::Post::Windows::Error::CLUSTER_RESOURCE_TYPE_BUSY (constant)">Error::CLUSTER_RESOURCE_TYPE_BUSY</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_RESOURCE_TYPE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CLUSTER_RESOURCE_TYPE_NOT_FOUND (constant)">Error::CLUSTER_RESOURCE_TYPE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_RESTYPE_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::CLUSTER_RESTYPE_NOT_SUPPORTED (constant)">Error::CLUSTER_RESTYPE_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_RHS_FAILED_INITIALIZATION-constant" title="Msf::Post::Windows::Error::CLUSTER_RHS_FAILED_INITIALIZATION (constant)">Error::CLUSTER_RHS_FAILED_INITIALIZATION</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_SHARED_VOLUMES_IN_USE-constant" title="Msf::Post::Windows::Error::CLUSTER_SHARED_VOLUMES_IN_USE (constant)">Error::CLUSTER_SHARED_VOLUMES_IN_USE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_SHUTTING_DOWN-constant" title="Msf::Post::Windows::Error::CLUSTER_SHUTTING_DOWN (constant)">Error::CLUSTER_SHUTTING_DOWN</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_SINGLETON_RESOURCE-constant" title="Msf::Post::Windows::Error::CLUSTER_SINGLETON_RESOURCE (constant)">Error::CLUSTER_SINGLETON_RESOURCE</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_SYSTEM_CONFIG_CHANGED-constant" title="Msf::Post::Windows::Error::CLUSTER_SYSTEM_CONFIG_CHANGED (constant)">Error::CLUSTER_SYSTEM_CONFIG_CHANGED</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_TOO_MANY_NODES-constant" title="Msf::Post::Windows::Error::CLUSTER_TOO_MANY_NODES (constant)">Error::CLUSTER_TOO_MANY_NODES</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_USE_SHARED_VOLUMES_API-constant" title="Msf::Post::Windows::Error::CLUSTER_USE_SHARED_VOLUMES_API (constant)">Error::CLUSTER_USE_SHARED_VOLUMES_API</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_WATCHDOG_TERMINATING-constant" title="Msf::Post::Windows::Error::CLUSTER_WATCHDOG_TERMINATING (constant)">Error::CLUSTER_WATCHDOG_TERMINATING</a></span>, <span class='object_link'><a href="Error.html#CLUSTER_WRONG_OS_VERSION-constant" title="Msf::Post::Windows::Error::CLUSTER_WRONG_OS_VERSION (constant)">Error::CLUSTER_WRONG_OS_VERSION</a></span>, <span class='object_link'><a href="Error.html#COLORSPACE_MISMATCH-constant" title="Msf::Post::Windows::Error::COLORSPACE_MISMATCH (constant)">Error::COLORSPACE_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#COMMITMENT_LIMIT-constant" title="Msf::Post::Windows::Error::COMMITMENT_LIMIT (constant)">Error::COMMITMENT_LIMIT</a></span>, <span class='object_link'><a href="Error.html#COMMITMENT_MINIMUM-constant" title="Msf::Post::Windows::Error::COMMITMENT_MINIMUM (constant)">Error::COMMITMENT_MINIMUM</a></span>, <span class='object_link'><a href="Error.html#COMPRESSION_DISABLED-constant" title="Msf::Post::Windows::Error::COMPRESSION_DISABLED (constant)">Error::COMPRESSION_DISABLED</a></span>, <span class='object_link'><a href="Error.html#COMPRESSION_NOT_ALLOWED_IN_TRANSACTION-constant" title="Msf::Post::Windows::Error::COMPRESSION_NOT_ALLOWED_IN_TRANSACTION (constant)">Error::COMPRESSION_NOT_ALLOWED_IN_TRANSACTION</a></span>, <span class='object_link'><a href="Error.html#CONNECTED_OTHER_PASSWORD-constant" title="Msf::Post::Windows::Error::CONNECTED_OTHER_PASSWORD (constant)">Error::CONNECTED_OTHER_PASSWORD</a></span>, <span class='object_link'><a href="Error.html#CONNECTED_OTHER_PASSWORD_DEFAULT-constant" title="Msf::Post::Windows::Error::CONNECTED_OTHER_PASSWORD_DEFAULT (constant)">Error::CONNECTED_OTHER_PASSWORD_DEFAULT</a></span>, <span class='object_link'><a href="Error.html#CONNECTION_ABORTED-constant" title="Msf::Post::Windows::Error::CONNECTION_ABORTED (constant)">Error::CONNECTION_ABORTED</a></span>, <span class='object_link'><a href="Error.html#CONNECTION_ACTIVE-constant" title="Msf::Post::Windows::Error::CONNECTION_ACTIVE (constant)">Error::CONNECTION_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#CONNECTION_COUNT_LIMIT-constant" title="Msf::Post::Windows::Error::CONNECTION_COUNT_LIMIT (constant)">Error::CONNECTION_COUNT_LIMIT</a></span>, <span class='object_link'><a href="Error.html#CONNECTION_INVALID-constant" title="Msf::Post::Windows::Error::CONNECTION_INVALID (constant)">Error::CONNECTION_INVALID</a></span>, <span class='object_link'><a href="Error.html#CONNECTION_REFUSED-constant" title="Msf::Post::Windows::Error::CONNECTION_REFUSED (constant)">Error::CONNECTION_REFUSED</a></span>, <span class='object_link'><a href="Error.html#CONNECTION_UNAVAIL-constant" title="Msf::Post::Windows::Error::CONNECTION_UNAVAIL (constant)">Error::CONNECTION_UNAVAIL</a></span>, <span class='object_link'><a href="Error.html#CONTENT_BLOCKED-constant" title="Msf::Post::Windows::Error::CONTENT_BLOCKED (constant)">Error::CONTENT_BLOCKED</a></span>, <span class='object_link'><a href="Error.html#CONTEXT_EXPIRED-constant" title="Msf::Post::Windows::Error::CONTEXT_EXPIRED (constant)">Error::CONTEXT_EXPIRED</a></span>, <span class='object_link'><a href="Error.html#CONTINUE-constant" title="Msf::Post::Windows::Error::CONTINUE (constant)">Error::CONTINUE</a></span>, <span class='object_link'><a href="Error.html#CONTROLLING_IEPORT-constant" title="Msf::Post::Windows::Error::CONTROLLING_IEPORT (constant)">Error::CONTROLLING_IEPORT</a></span>, <span class='object_link'><a href="Error.html#CONTROL_C_EXIT-constant" title="Msf::Post::Windows::Error::CONTROL_C_EXIT (constant)">Error::CONTROL_C_EXIT</a></span>, <span class='object_link'><a href="Error.html#CONTROL_ID_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CONTROL_ID_NOT_FOUND (constant)">Error::CONTROL_ID_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CONVERT_TO_LARGE-constant" title="Msf::Post::Windows::Error::CONVERT_TO_LARGE (constant)">Error::CONVERT_TO_LARGE</a></span>, <span class='object_link'><a href="Error.html#CORE_DRIVER_PACKAGE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CORE_DRIVER_PACKAGE_NOT_FOUND (constant)">Error::CORE_DRIVER_PACKAGE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CORE_RESOURCE-constant" title="Msf::Post::Windows::Error::CORE_RESOURCE (constant)">Error::CORE_RESOURCE</a></span>, <span class='object_link'><a href="Error.html#CORRUPT_SYSTEM_FILE-constant" title="Msf::Post::Windows::Error::CORRUPT_SYSTEM_FILE (constant)">Error::CORRUPT_SYSTEM_FILE</a></span>, <span class='object_link'><a href="Error.html#COULD_NOT_INTERPRET-constant" title="Msf::Post::Windows::Error::COULD_NOT_INTERPRET (constant)">Error::COULD_NOT_INTERPRET</a></span>, <span class='object_link'><a href="Error.html#COULD_NOT_RESIZE_LOG-constant" title="Msf::Post::Windows::Error::COULD_NOT_RESIZE_LOG (constant)">Error::COULD_NOT_RESIZE_LOG</a></span>, <span class='object_link'><a href="Error.html#COUNTER_TIMEOUT-constant" title="Msf::Post::Windows::Error::COUNTER_TIMEOUT (constant)">Error::COUNTER_TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#CRASH_DUMP-constant" title="Msf::Post::Windows::Error::CRASH_DUMP (constant)">Error::CRASH_DUMP</a></span>, <span class='object_link'><a href="Error.html#CRC-constant" title="Msf::Post::Windows::Error::CRC (constant)">Error::CRC</a></span>, <span class='object_link'><a href="Error.html#CREATE_FAILED-constant" title="Msf::Post::Windows::Error::CREATE_FAILED (constant)">Error::CREATE_FAILED</a></span>, <span class='object_link'><a href="Error.html#CRM_PROTOCOL_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::CRM_PROTOCOL_ALREADY_EXISTS (constant)">Error::CRM_PROTOCOL_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#CRM_PROTOCOL_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CRM_PROTOCOL_NOT_FOUND (constant)">Error::CRM_PROTOCOL_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CSCSHARE_OFFLINE-constant" title="Msf::Post::Windows::Error::CSCSHARE_OFFLINE (constant)">Error::CSCSHARE_OFFLINE</a></span>, <span class='object_link'><a href="Error.html#CSV_VOLUME_NOT_LOCAL-constant" title="Msf::Post::Windows::Error::CSV_VOLUME_NOT_LOCAL (constant)">Error::CSV_VOLUME_NOT_LOCAL</a></span>, <span class='object_link'><a href="Error.html#CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE-constant" title="Msf::Post::Windows::Error::CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE (constant)">Error::CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE</a></span>, <span class='object_link'><a href="Error.html#CS_ENCRYPTION_FILE_NOT_CSE-constant" title="Msf::Post::Windows::Error::CS_ENCRYPTION_FILE_NOT_CSE (constant)">Error::CS_ENCRYPTION_FILE_NOT_CSE</a></span>, <span class='object_link'><a href="Error.html#CS_ENCRYPTION_INVALID_SERVER_RESPONSE-constant" title="Msf::Post::Windows::Error::CS_ENCRYPTION_INVALID_SERVER_RESPONSE (constant)">Error::CS_ENCRYPTION_INVALID_SERVER_RESPONSE</a></span>, <span class='object_link'><a href="Error.html#CS_ENCRYPTION_NEW_ENCRYPTED_FILE-constant" title="Msf::Post::Windows::Error::CS_ENCRYPTION_NEW_ENCRYPTED_FILE (constant)">Error::CS_ENCRYPTION_NEW_ENCRYPTED_FILE</a></span>, <span class='object_link'><a href="Error.html#CS_ENCRYPTION_UNSUPPORTED_SERVER-constant" title="Msf::Post::Windows::Error::CS_ENCRYPTION_UNSUPPORTED_SERVER (constant)">Error::CS_ENCRYPTION_UNSUPPORTED_SERVER</a></span>, <span class='object_link'><a href="Error.html#CTX_ACCOUNT_RESTRICTION-constant" title="Msf::Post::Windows::Error::CTX_ACCOUNT_RESTRICTION (constant)">Error::CTX_ACCOUNT_RESTRICTION</a></span>, <span class='object_link'><a href="Error.html#CTX_BAD_VIDEO_MODE-constant" title="Msf::Post::Windows::Error::CTX_BAD_VIDEO_MODE (constant)">Error::CTX_BAD_VIDEO_MODE</a></span>, <span class='object_link'><a href="Error.html#CTX_CANNOT_MAKE_EVENTLOG_ENTRY-constant" title="Msf::Post::Windows::Error::CTX_CANNOT_MAKE_EVENTLOG_ENTRY (constant)">Error::CTX_CANNOT_MAKE_EVENTLOG_ENTRY</a></span>, <span class='object_link'><a href="Error.html#CTX_CDM_CONNECT-constant" title="Msf::Post::Windows::Error::CTX_CDM_CONNECT (constant)">Error::CTX_CDM_CONNECT</a></span>, <span class='object_link'><a href="Error.html#CTX_CDM_DISCONNECT-constant" title="Msf::Post::Windows::Error::CTX_CDM_DISCONNECT (constant)">Error::CTX_CDM_DISCONNECT</a></span>, <span class='object_link'><a href="Error.html#CTX_CLIENT_LICENSE_IN_USE-constant" title="Msf::Post::Windows::Error::CTX_CLIENT_LICENSE_IN_USE (constant)">Error::CTX_CLIENT_LICENSE_IN_USE</a></span>, <span class='object_link'><a href="Error.html#CTX_CLIENT_LICENSE_NOT_SET-constant" title="Msf::Post::Windows::Error::CTX_CLIENT_LICENSE_NOT_SET (constant)">Error::CTX_CLIENT_LICENSE_NOT_SET</a></span>, <span class='object_link'><a href="Error.html#CTX_CLIENT_QUERY_TIMEOUT-constant" title="Msf::Post::Windows::Error::CTX_CLIENT_QUERY_TIMEOUT (constant)">Error::CTX_CLIENT_QUERY_TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#CTX_CLOSE_PENDING-constant" title="Msf::Post::Windows::Error::CTX_CLOSE_PENDING (constant)">Error::CTX_CLOSE_PENDING</a></span>, <span class='object_link'><a href="Error.html#CTX_CONSOLE_CONNECT-constant" title="Msf::Post::Windows::Error::CTX_CONSOLE_CONNECT (constant)">Error::CTX_CONSOLE_CONNECT</a></span>, <span class='object_link'><a href="Error.html#CTX_CONSOLE_DISCONNECT-constant" title="Msf::Post::Windows::Error::CTX_CONSOLE_DISCONNECT (constant)">Error::CTX_CONSOLE_DISCONNECT</a></span>, <span class='object_link'><a href="Error.html#CTX_ENCRYPTION_LEVEL_REQUIRED-constant" title="Msf::Post::Windows::Error::CTX_ENCRYPTION_LEVEL_REQUIRED (constant)">Error::CTX_ENCRYPTION_LEVEL_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#CTX_GRAPHICS_INVALID-constant" title="Msf::Post::Windows::Error::CTX_GRAPHICS_INVALID (constant)">Error::CTX_GRAPHICS_INVALID</a></span>, <span class='object_link'><a href="Error.html#CTX_INVALID_MODEMNAME-constant" title="Msf::Post::Windows::Error::CTX_INVALID_MODEMNAME (constant)">Error::CTX_INVALID_MODEMNAME</a></span>, <span class='object_link'><a href="Error.html#CTX_INVALID_PD-constant" title="Msf::Post::Windows::Error::CTX_INVALID_PD (constant)">Error::CTX_INVALID_PD</a></span>, <span class='object_link'><a href="Error.html#CTX_INVALID_WD-constant" title="Msf::Post::Windows::Error::CTX_INVALID_WD (constant)">Error::CTX_INVALID_WD</a></span>, <span class='object_link'><a href="Error.html#CTX_LICENSE_CLIENT_INVALID-constant" title="Msf::Post::Windows::Error::CTX_LICENSE_CLIENT_INVALID (constant)">Error::CTX_LICENSE_CLIENT_INVALID</a></span>, <span class='object_link'><a href="Error.html#CTX_LICENSE_EXPIRED-constant" title="Msf::Post::Windows::Error::CTX_LICENSE_EXPIRED (constant)">Error::CTX_LICENSE_EXPIRED</a></span>, <span class='object_link'><a href="Error.html#CTX_LICENSE_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::CTX_LICENSE_NOT_AVAILABLE (constant)">Error::CTX_LICENSE_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#CTX_LOGON_DISABLED-constant" title="Msf::Post::Windows::Error::CTX_LOGON_DISABLED (constant)">Error::CTX_LOGON_DISABLED</a></span>, <span class='object_link'><a href="Error.html#CTX_MODEM_INF_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CTX_MODEM_INF_NOT_FOUND (constant)">Error::CTX_MODEM_INF_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CTX_MODEM_RESPONSE_BUSY-constant" title="Msf::Post::Windows::Error::CTX_MODEM_RESPONSE_BUSY (constant)">Error::CTX_MODEM_RESPONSE_BUSY</a></span>, <span class='object_link'><a href="Error.html#CTX_MODEM_RESPONSE_ERROR-constant" title="Msf::Post::Windows::Error::CTX_MODEM_RESPONSE_ERROR (constant)">Error::CTX_MODEM_RESPONSE_ERROR</a></span>, <span class='object_link'><a href="Error.html#CTX_MODEM_RESPONSE_NO_CARRIER-constant" title="Msf::Post::Windows::Error::CTX_MODEM_RESPONSE_NO_CARRIER (constant)">Error::CTX_MODEM_RESPONSE_NO_CARRIER</a></span>, <span class='object_link'><a href="Error.html#CTX_MODEM_RESPONSE_NO_DIALTONE-constant" title="Msf::Post::Windows::Error::CTX_MODEM_RESPONSE_NO_DIALTONE (constant)">Error::CTX_MODEM_RESPONSE_NO_DIALTONE</a></span>, <span class='object_link'><a href="Error.html#CTX_MODEM_RESPONSE_TIMEOUT-constant" title="Msf::Post::Windows::Error::CTX_MODEM_RESPONSE_TIMEOUT (constant)">Error::CTX_MODEM_RESPONSE_TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#CTX_MODEM_RESPONSE_VOICE-constant" title="Msf::Post::Windows::Error::CTX_MODEM_RESPONSE_VOICE (constant)">Error::CTX_MODEM_RESPONSE_VOICE</a></span>, <span class='object_link'><a href="Error.html#CTX_NOT_CONSOLE-constant" title="Msf::Post::Windows::Error::CTX_NOT_CONSOLE (constant)">Error::CTX_NOT_CONSOLE</a></span>, <span class='object_link'><a href="Error.html#CTX_NO_FORCE_LOGOFF-constant" title="Msf::Post::Windows::Error::CTX_NO_FORCE_LOGOFF (constant)">Error::CTX_NO_FORCE_LOGOFF</a></span>, <span class='object_link'><a href="Error.html#CTX_NO_OUTBUF-constant" title="Msf::Post::Windows::Error::CTX_NO_OUTBUF (constant)">Error::CTX_NO_OUTBUF</a></span>, <span class='object_link'><a href="Error.html#CTX_PD_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CTX_PD_NOT_FOUND (constant)">Error::CTX_PD_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CTX_SECURITY_LAYER_ERROR-constant" title="Msf::Post::Windows::Error::CTX_SECURITY_LAYER_ERROR (constant)">Error::CTX_SECURITY_LAYER_ERROR</a></span>, <span class='object_link'><a href="Error.html#CTX_SERVICE_NAME_COLLISION-constant" title="Msf::Post::Windows::Error::CTX_SERVICE_NAME_COLLISION (constant)">Error::CTX_SERVICE_NAME_COLLISION</a></span>, <span class='object_link'><a href="Error.html#CTX_SESSION_IN_USE-constant" title="Msf::Post::Windows::Error::CTX_SESSION_IN_USE (constant)">Error::CTX_SESSION_IN_USE</a></span>, <span class='object_link'><a href="Error.html#CTX_SHADOW_DENIED-constant" title="Msf::Post::Windows::Error::CTX_SHADOW_DENIED (constant)">Error::CTX_SHADOW_DENIED</a></span>, <span class='object_link'><a href="Error.html#CTX_SHADOW_DISABLED-constant" title="Msf::Post::Windows::Error::CTX_SHADOW_DISABLED (constant)">Error::CTX_SHADOW_DISABLED</a></span>, <span class='object_link'><a href="Error.html#CTX_SHADOW_ENDED_BY_MODE_CHANGE-constant" title="Msf::Post::Windows::Error::CTX_SHADOW_ENDED_BY_MODE_CHANGE (constant)">Error::CTX_SHADOW_ENDED_BY_MODE_CHANGE</a></span>, <span class='object_link'><a href="Error.html#CTX_SHADOW_INVALID-constant" title="Msf::Post::Windows::Error::CTX_SHADOW_INVALID (constant)">Error::CTX_SHADOW_INVALID</a></span>, <span class='object_link'><a href="Error.html#CTX_SHADOW_NOT_RUNNING-constant" title="Msf::Post::Windows::Error::CTX_SHADOW_NOT_RUNNING (constant)">Error::CTX_SHADOW_NOT_RUNNING</a></span>, <span class='object_link'><a href="Error.html#CTX_TD_ERROR-constant" title="Msf::Post::Windows::Error::CTX_TD_ERROR (constant)">Error::CTX_TD_ERROR</a></span>, <span class='object_link'><a href="Error.html#CTX_WD_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CTX_WD_NOT_FOUND (constant)">Error::CTX_WD_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CTX_WINSTATIONS_DISABLED-constant" title="Msf::Post::Windows::Error::CTX_WINSTATIONS_DISABLED (constant)">Error::CTX_WINSTATIONS_DISABLED</a></span>, <span class='object_link'><a href="Error.html#CTX_WINSTATION_ACCESS_DENIED-constant" title="Msf::Post::Windows::Error::CTX_WINSTATION_ACCESS_DENIED (constant)">Error::CTX_WINSTATION_ACCESS_DENIED</a></span>, <span class='object_link'><a href="Error.html#CTX_WINSTATION_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::CTX_WINSTATION_ALREADY_EXISTS (constant)">Error::CTX_WINSTATION_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#CTX_WINSTATION_BUSY-constant" title="Msf::Post::Windows::Error::CTX_WINSTATION_BUSY (constant)">Error::CTX_WINSTATION_BUSY</a></span>, <span class='object_link'><a href="Error.html#CTX_WINSTATION_NAME_INVALID-constant" title="Msf::Post::Windows::Error::CTX_WINSTATION_NAME_INVALID (constant)">Error::CTX_WINSTATION_NAME_INVALID</a></span>, <span class='object_link'><a href="Error.html#CTX_WINSTATION_NOT_FOUND-constant" title="Msf::Post::Windows::Error::CTX_WINSTATION_NOT_FOUND (constant)">Error::CTX_WINSTATION_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#CURRENT_DIRECTORY-constant" title="Msf::Post::Windows::Error::CURRENT_DIRECTORY (constant)">Error::CURRENT_DIRECTORY</a></span>, <span class='object_link'><a href="Error.html#CURRENT_DOMAIN_NOT_ALLOWED-constant" title="Msf::Post::Windows::Error::CURRENT_DOMAIN_NOT_ALLOWED (constant)">Error::CURRENT_DOMAIN_NOT_ALLOWED</a></span>, <span class='object_link'><a href="Error.html#CURRENT_TRANSACTION_NOT_VALID-constant" title="Msf::Post::Windows::Error::CURRENT_TRANSACTION_NOT_VALID (constant)">Error::CURRENT_TRANSACTION_NOT_VALID</a></span>, <span class='object_link'><a href="Error.html#DATABASE_BACKUP_CORRUPT-constant" title="Msf::Post::Windows::Error::DATABASE_BACKUP_CORRUPT (constant)">Error::DATABASE_BACKUP_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#DATABASE_DOES_NOT_EXIST-constant" title="Msf::Post::Windows::Error::DATABASE_DOES_NOT_EXIST (constant)">Error::DATABASE_DOES_NOT_EXIST</a></span>, <span class='object_link'><a href="Error.html#DATABASE_FAILURE-constant" title="Msf::Post::Windows::Error::DATABASE_FAILURE (constant)">Error::DATABASE_FAILURE</a></span>, <span class='object_link'><a href="Error.html#DATABASE_FULL-constant" title="Msf::Post::Windows::Error::DATABASE_FULL (constant)">Error::DATABASE_FULL</a></span>, <span class='object_link'><a href="Error.html#DATATYPE_MISMATCH-constant" title="Msf::Post::Windows::Error::DATATYPE_MISMATCH (constant)">Error::DATATYPE_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DATA_LOST_REPAIR-constant" title="Msf::Post::Windows::Error::DATA_LOST_REPAIR (constant)">Error::DATA_LOST_REPAIR</a></span>, <span class='object_link'><a href="Error.html#DATA_NOT_ACCEPTED-constant" title="Msf::Post::Windows::Error::DATA_NOT_ACCEPTED (constant)">Error::DATA_NOT_ACCEPTED</a></span>, <span class='object_link'><a href="Error.html#DBG_COMMAND_EXCEPTION-constant" title="Msf::Post::Windows::Error::DBG_COMMAND_EXCEPTION (constant)">Error::DBG_COMMAND_EXCEPTION</a></span>, <span class='object_link'><a href="Error.html#DBG_CONTINUE-constant" title="Msf::Post::Windows::Error::DBG_CONTINUE (constant)">Error::DBG_CONTINUE</a></span>, <span class='object_link'><a href="Error.html#DBG_CONTROL_BREAK-constant" title="Msf::Post::Windows::Error::DBG_CONTROL_BREAK (constant)">Error::DBG_CONTROL_BREAK</a></span>, <span class='object_link'><a href="Error.html#DBG_CONTROL_C-constant" title="Msf::Post::Windows::Error::DBG_CONTROL_C (constant)">Error::DBG_CONTROL_C</a></span>, <span class='object_link'><a href="Error.html#DBG_EXCEPTION_HANDLED-constant" title="Msf::Post::Windows::Error::DBG_EXCEPTION_HANDLED (constant)">Error::DBG_EXCEPTION_HANDLED</a></span>, <span class='object_link'><a href="Error.html#DBG_EXCEPTION_NOT_HANDLED-constant" title="Msf::Post::Windows::Error::DBG_EXCEPTION_NOT_HANDLED (constant)">Error::DBG_EXCEPTION_NOT_HANDLED</a></span>, <span class='object_link'><a href="Error.html#DBG_PRINTEXCEPTION_C-constant" title="Msf::Post::Windows::Error::DBG_PRINTEXCEPTION_C (constant)">Error::DBG_PRINTEXCEPTION_C</a></span>, <span class='object_link'><a href="Error.html#DBG_REPLY_LATER-constant" title="Msf::Post::Windows::Error::DBG_REPLY_LATER (constant)">Error::DBG_REPLY_LATER</a></span>, <span class='object_link'><a href="Error.html#DBG_RIPEXCEPTION-constant" title="Msf::Post::Windows::Error::DBG_RIPEXCEPTION (constant)">Error::DBG_RIPEXCEPTION</a></span>, <span class='object_link'><a href="Error.html#DBG_TERMINATE_PROCESS-constant" title="Msf::Post::Windows::Error::DBG_TERMINATE_PROCESS (constant)">Error::DBG_TERMINATE_PROCESS</a></span>, <span class='object_link'><a href="Error.html#DBG_TERMINATE_THREAD-constant" title="Msf::Post::Windows::Error::DBG_TERMINATE_THREAD (constant)">Error::DBG_TERMINATE_THREAD</a></span>, <span class='object_link'><a href="Error.html#DBG_UNABLE_TO_PROVIDE_HANDLE-constant" title="Msf::Post::Windows::Error::DBG_UNABLE_TO_PROVIDE_HANDLE (constant)">Error::DBG_UNABLE_TO_PROVIDE_HANDLE</a></span>, <span class='object_link'><a href="Error.html#DC_NOT_FOUND-constant" title="Msf::Post::Windows::Error::DC_NOT_FOUND (constant)">Error::DC_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#DDE_FAIL-constant" title="Msf::Post::Windows::Error::DDE_FAIL (constant)">Error::DDE_FAIL</a></span>, <span class='object_link'><a href="Error.html#DEBUGGER_INACTIVE-constant" title="Msf::Post::Windows::Error::DEBUGGER_INACTIVE (constant)">Error::DEBUGGER_INACTIVE</a></span>, <span class='object_link'><a href="Error.html#DEBUG_ATTACH_FAILED-constant" title="Msf::Post::Windows::Error::DEBUG_ATTACH_FAILED (constant)">Error::DEBUG_ATTACH_FAILED</a></span>, <span class='object_link'><a href="Error.html#DECRYPTION_FAILED-constant" title="Msf::Post::Windows::Error::DECRYPTION_FAILED (constant)">Error::DECRYPTION_FAILED</a></span>, <span class='object_link'><a href="Error.html#DELAY_LOAD_FAILED-constant" title="Msf::Post::Windows::Error::DELAY_LOAD_FAILED (constant)">Error::DELAY_LOAD_FAILED</a></span>, <span class='object_link'><a href="Error.html#DELETE_PENDING-constant" title="Msf::Post::Windows::Error::DELETE_PENDING (constant)">Error::DELETE_PENDING</a></span>, <span class='object_link'><a href="Error.html#DELETING_ICM_XFORM-constant" title="Msf::Post::Windows::Error::DELETING_ICM_XFORM (constant)">Error::DELETING_ICM_XFORM</a></span>, <span class='object_link'><a href="Error.html#DEPENDENCY_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DEPENDENCY_ALREADY_EXISTS (constant)">Error::DEPENDENCY_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DEPENDENCY_NOT_ALLOWED-constant" title="Msf::Post::Windows::Error::DEPENDENCY_NOT_ALLOWED (constant)">Error::DEPENDENCY_NOT_ALLOWED</a></span>, <span class='object_link'><a href="Error.html#DEPENDENCY_NOT_FOUND-constant" title="Msf::Post::Windows::Error::DEPENDENCY_NOT_FOUND (constant)">Error::DEPENDENCY_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#DEPENDENCY_TREE_TOO_COMPLEX-constant" title="Msf::Post::Windows::Error::DEPENDENCY_TREE_TOO_COMPLEX (constant)">Error::DEPENDENCY_TREE_TOO_COMPLEX</a></span>, <span class='object_link'><a href="Error.html#DEPENDENT_RESOURCE_EXISTS-constant" title="Msf::Post::Windows::Error::DEPENDENT_RESOURCE_EXISTS (constant)">Error::DEPENDENT_RESOURCE_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DEPENDENT_RESOURCE_PROPERTY_CONFLICT-constant" title="Msf::Post::Windows::Error::DEPENDENT_RESOURCE_PROPERTY_CONFLICT (constant)">Error::DEPENDENT_RESOURCE_PROPERTY_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#DEPENDENT_SERVICES_RUNNING-constant" title="Msf::Post::Windows::Error::DEPENDENT_SERVICES_RUNNING (constant)">Error::DEPENDENT_SERVICES_RUNNING</a></span>, <span class='object_link'><a href="Error.html#DESTINATION_ELEMENT_FULL-constant" title="Msf::Post::Windows::Error::DESTINATION_ELEMENT_FULL (constant)">Error::DESTINATION_ELEMENT_FULL</a></span>, <span class='object_link'><a href="Error.html#DESTROY_OBJECT_OF_OTHER_THREAD-constant" title="Msf::Post::Windows::Error::DESTROY_OBJECT_OF_OTHER_THREAD (constant)">Error::DESTROY_OBJECT_OF_OTHER_THREAD</a></span>, <span class='object_link'><a href="Error.html#DEVICE_ALREADY_ATTACHED-constant" title="Msf::Post::Windows::Error::DEVICE_ALREADY_ATTACHED (constant)">Error::DEVICE_ALREADY_ATTACHED</a></span>, <span class='object_link'><a href="Error.html#DEVICE_ALREADY_REMEMBERED-constant" title="Msf::Post::Windows::Error::DEVICE_ALREADY_REMEMBERED (constant)">Error::DEVICE_ALREADY_REMEMBERED</a></span>, <span class='object_link'><a href="Error.html#DEVICE_DOOR_OPEN-constant" title="Msf::Post::Windows::Error::DEVICE_DOOR_OPEN (constant)">Error::DEVICE_DOOR_OPEN</a></span>, <span class='object_link'><a href="Error.html#DEVICE_ENUMERATION_ERROR-constant" title="Msf::Post::Windows::Error::DEVICE_ENUMERATION_ERROR (constant)">Error::DEVICE_ENUMERATION_ERROR</a></span>, <span class='object_link'><a href="Error.html#DEVICE_IN_USE-constant" title="Msf::Post::Windows::Error::DEVICE_IN_USE (constant)">Error::DEVICE_IN_USE</a></span>, <span class='object_link'><a href="Error.html#DEVICE_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::DEVICE_NOT_AVAILABLE (constant)">Error::DEVICE_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#DEVICE_NOT_CONNECTED-constant" title="Msf::Post::Windows::Error::DEVICE_NOT_CONNECTED (constant)">Error::DEVICE_NOT_CONNECTED</a></span>, <span class='object_link'><a href="Error.html#DEVICE_NOT_PARTITIONED-constant" title="Msf::Post::Windows::Error::DEVICE_NOT_PARTITIONED (constant)">Error::DEVICE_NOT_PARTITIONED</a></span>, <span class='object_link'><a href="Error.html#DEVICE_REINITIALIZATION_NEEDED-constant" title="Msf::Post::Windows::Error::DEVICE_REINITIALIZATION_NEEDED (constant)">Error::DEVICE_REINITIALIZATION_NEEDED</a></span>, <span class='object_link'><a href="Error.html#DEVICE_REMOVED-constant" title="Msf::Post::Windows::Error::DEVICE_REMOVED (constant)">Error::DEVICE_REMOVED</a></span>, <span class='object_link'><a href="Error.html#DEVICE_REQUIRES_CLEANING-constant" title="Msf::Post::Windows::Error::DEVICE_REQUIRES_CLEANING (constant)">Error::DEVICE_REQUIRES_CLEANING</a></span>, <span class='object_link'><a href="Error.html#DEV_NOT_EXIST-constant" title="Msf::Post::Windows::Error::DEV_NOT_EXIST (constant)">Error::DEV_NOT_EXIST</a></span>, <span class='object_link'><a href="Error.html#DHCP_ADDRESS_CONFLICT-constant" title="Msf::Post::Windows::Error::DHCP_ADDRESS_CONFLICT (constant)">Error::DHCP_ADDRESS_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#DIFFERENT_SERVICE_ACCOUNT-constant" title="Msf::Post::Windows::Error::DIFFERENT_SERVICE_ACCOUNT (constant)">Error::DIFFERENT_SERVICE_ACCOUNT</a></span>, <span class='object_link'><a href="Error.html#DIRECTORY-constant" title="Msf::Post::Windows::Error::DIRECTORY (constant)">Error::DIRECTORY</a></span>, <span class='object_link'><a href="Error.html#DIRECTORY_NOT_RM-constant" title="Msf::Post::Windows::Error::DIRECTORY_NOT_RM (constant)">Error::DIRECTORY_NOT_RM</a></span>, <span class='object_link'><a href="Error.html#DIRECT_ACCESS_HANDLE-constant" title="Msf::Post::Windows::Error::DIRECT_ACCESS_HANDLE (constant)">Error::DIRECT_ACCESS_HANDLE</a></span>, <span class='object_link'><a href="Error.html#DIR_EFS_DISALLOWED-constant" title="Msf::Post::Windows::Error::DIR_EFS_DISALLOWED (constant)">Error::DIR_EFS_DISALLOWED</a></span>, <span class='object_link'><a href="Error.html#DIR_NOT_EMPTY-constant" title="Msf::Post::Windows::Error::DIR_NOT_EMPTY (constant)">Error::DIR_NOT_EMPTY</a></span>, <span class='object_link'><a href="Error.html#DIR_NOT_ROOT-constant" title="Msf::Post::Windows::Error::DIR_NOT_ROOT (constant)">Error::DIR_NOT_ROOT</a></span>, <span class='object_link'><a href="Error.html#DISCARDED-constant" title="Msf::Post::Windows::Error::DISCARDED (constant)">Error::DISCARDED</a></span>, <span class='object_link'><a href="Error.html#DISK_CHANGE-constant" title="Msf::Post::Windows::Error::DISK_CHANGE (constant)">Error::DISK_CHANGE</a></span>, <span class='object_link'><a href="Error.html#DISK_CORRUPT-constant" title="Msf::Post::Windows::Error::DISK_CORRUPT (constant)">Error::DISK_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#DISK_FULL-constant" title="Msf::Post::Windows::Error::DISK_FULL (constant)">Error::DISK_FULL</a></span>, <span class='object_link'><a href="Error.html#DISK_OPERATION_FAILED-constant" title="Msf::Post::Windows::Error::DISK_OPERATION_FAILED (constant)">Error::DISK_OPERATION_FAILED</a></span>, <span class='object_link'><a href="Error.html#DISK_QUOTA_EXCEEDED-constant" title="Msf::Post::Windows::Error::DISK_QUOTA_EXCEEDED (constant)">Error::DISK_QUOTA_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DISK_RECALIBRATE_FAILED-constant" title="Msf::Post::Windows::Error::DISK_RECALIBRATE_FAILED (constant)">Error::DISK_RECALIBRATE_FAILED</a></span>, <span class='object_link'><a href="Error.html#DISK_REPAIR_DISABLED-constant" title="Msf::Post::Windows::Error::DISK_REPAIR_DISABLED (constant)">Error::DISK_REPAIR_DISABLED</a></span>, <span class='object_link'><a href="Error.html#DISK_RESET_FAILED-constant" title="Msf::Post::Windows::Error::DISK_RESET_FAILED (constant)">Error::DISK_RESET_FAILED</a></span>, <span class='object_link'><a href="Error.html#DISK_TOO_FRAGMENTED-constant" title="Msf::Post::Windows::Error::DISK_TOO_FRAGMENTED (constant)">Error::DISK_TOO_FRAGMENTED</a></span>, <span class='object_link'><a href="Error.html#DLL_INIT_FAILED-constant" title="Msf::Post::Windows::Error::DLL_INIT_FAILED (constant)">Error::DLL_INIT_FAILED</a></span>, <span class='object_link'><a href="Error.html#DLL_INIT_FAILED_LOGOFF-constant" title="Msf::Post::Windows::Error::DLL_INIT_FAILED_LOGOFF (constant)">Error::DLL_INIT_FAILED_LOGOFF</a></span>, <span class='object_link'><a href="Error.html#DLL_MIGHT_BE_INCOMPATIBLE-constant" title="Msf::Post::Windows::Error::DLL_MIGHT_BE_INCOMPATIBLE (constant)">Error::DLL_MIGHT_BE_INCOMPATIBLE</a></span>, <span class='object_link'><a href="Error.html#DLL_MIGHT_BE_INSECURE-constant" title="Msf::Post::Windows::Error::DLL_MIGHT_BE_INSECURE (constant)">Error::DLL_MIGHT_BE_INSECURE</a></span>, <span class='object_link'><a href="Error.html#DLL_NOT_FOUND-constant" title="Msf::Post::Windows::Error::DLL_NOT_FOUND (constant)">Error::DLL_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#DNS_ALIAS_LOOP-constant" title="Msf::Post::Windows::Error::DNS_ALIAS_LOOP (constant)">Error::DNS_ALIAS_LOOP</a></span>, <span class='object_link'><a href="Error.html#DNS_AUTOZONE_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DNS_AUTOZONE_ALREADY_EXISTS (constant)">Error::DNS_AUTOZONE_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DNS_AXFR-constant" title="Msf::Post::Windows::Error::DNS_AXFR (constant)">Error::DNS_AXFR</a></span>, <span class='object_link'><a href="Error.html#DNS_BACKGROUND_LOADING-constant" title="Msf::Post::Windows::Error::DNS_BACKGROUND_LOADING (constant)">Error::DNS_BACKGROUND_LOADING</a></span>, <span class='object_link'><a href="Error.html#DNS_BAD_PACKET-constant" title="Msf::Post::Windows::Error::DNS_BAD_PACKET (constant)">Error::DNS_BAD_PACKET</a></span>, <span class='object_link'><a href="Error.html#DNS_CANNOT_FIND_ROOT_HINTS-constant" title="Msf::Post::Windows::Error::DNS_CANNOT_FIND_ROOT_HINTS (constant)">Error::DNS_CANNOT_FIND_ROOT_HINTS</a></span>, <span class='object_link'><a href="Error.html#DNS_CNAME_COLLISION-constant" title="Msf::Post::Windows::Error::DNS_CNAME_COLLISION (constant)">Error::DNS_CNAME_COLLISION</a></span>, <span class='object_link'><a href="Error.html#DNS_CNAME_LOOP-constant" title="Msf::Post::Windows::Error::DNS_CNAME_LOOP (constant)">Error::DNS_CNAME_LOOP</a></span>, <span class='object_link'><a href="Error.html#DNS_DATAFILE_OPEN_FAILURE-constant" title="Msf::Post::Windows::Error::DNS_DATAFILE_OPEN_FAILURE (constant)">Error::DNS_DATAFILE_OPEN_FAILURE</a></span>, <span class='object_link'><a href="Error.html#DNS_DATAFILE_PARSING-constant" title="Msf::Post::Windows::Error::DNS_DATAFILE_PARSING (constant)">Error::DNS_DATAFILE_PARSING</a></span>, <span class='object_link'><a href="Error.html#DNS_DELEGATION_REQUIRED-constant" title="Msf::Post::Windows::Error::DNS_DELEGATION_REQUIRED (constant)">Error::DNS_DELEGATION_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#DNS_DNAME_COLLISION-constant" title="Msf::Post::Windows::Error::DNS_DNAME_COLLISION (constant)">Error::DNS_DNAME_COLLISION</a></span>, <span class='object_link'><a href="Error.html#DNS_DP_ALREADY_ENLISTED-constant" title="Msf::Post::Windows::Error::DNS_DP_ALREADY_ENLISTED (constant)">Error::DNS_DP_ALREADY_ENLISTED</a></span>, <span class='object_link'><a href="Error.html#DNS_DP_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DNS_DP_ALREADY_EXISTS (constant)">Error::DNS_DP_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DNS_DP_DOES_NOT_EXIST-constant" title="Msf::Post::Windows::Error::DNS_DP_DOES_NOT_EXIST (constant)">Error::DNS_DP_DOES_NOT_EXIST</a></span>, <span class='object_link'><a href="Error.html#DNS_DP_FSMO_ERROR-constant" title="Msf::Post::Windows::Error::DNS_DP_FSMO_ERROR (constant)">Error::DNS_DP_FSMO_ERROR</a></span>, <span class='object_link'><a href="Error.html#DNS_DP_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::DNS_DP_NOT_AVAILABLE (constant)">Error::DNS_DP_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#DNS_DP_NOT_ENLISTED-constant" title="Msf::Post::Windows::Error::DNS_DP_NOT_ENLISTED (constant)">Error::DNS_DP_NOT_ENLISTED</a></span>, <span class='object_link'><a href="Error.html#DNS_DS_UNAVAILABLE-constant" title="Msf::Post::Windows::Error::DNS_DS_UNAVAILABLE (constant)">Error::DNS_DS_UNAVAILABLE</a></span>, <span class='object_link'><a href="Error.html#DNS_DS_ZONE_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DNS_DS_ZONE_ALREADY_EXISTS (constant)">Error::DNS_DS_ZONE_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DNS_DWORD_VALUE_TOO_LARGE-constant" title="Msf::Post::Windows::Error::DNS_DWORD_VALUE_TOO_LARGE (constant)">Error::DNS_DWORD_VALUE_TOO_LARGE</a></span>, <span class='object_link'><a href="Error.html#DNS_DWORD_VALUE_TOO_SMALL-constant" title="Msf::Post::Windows::Error::DNS_DWORD_VALUE_TOO_SMALL (constant)">Error::DNS_DWORD_VALUE_TOO_SMALL</a></span>, <span class='object_link'><a href="Error.html#DNS_FILE_WRITEBACK_FAILED-constant" title="Msf::Post::Windows::Error::DNS_FILE_WRITEBACK_FAILED (constant)">Error::DNS_FILE_WRITEBACK_FAILED</a></span>, <span class='object_link'><a href="Error.html#DNS_FORWARDER_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DNS_FORWARDER_ALREADY_EXISTS (constant)">Error::DNS_FORWARDER_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DNS_INCONSISTENT_ROOT_HINTS-constant" title="Msf::Post::Windows::Error::DNS_INCONSISTENT_ROOT_HINTS (constant)">Error::DNS_INCONSISTENT_ROOT_HINTS</a></span>, <span class='object_link'><a href="Error.html#DNS_INFO_ADDED_LOCAL_WINS-constant" title="Msf::Post::Windows::Error::DNS_INFO_ADDED_LOCAL_WINS (constant)">Error::DNS_INFO_ADDED_LOCAL_WINS</a></span>, <span class='object_link'><a href="Error.html#DNS_INFO_AXFR_COMPLETE-constant" title="Msf::Post::Windows::Error::DNS_INFO_AXFR_COMPLETE (constant)">Error::DNS_INFO_AXFR_COMPLETE</a></span>, <span class='object_link'><a href="Error.html#DNS_INFO_NO_RECORDS-constant" title="Msf::Post::Windows::Error::DNS_INFO_NO_RECORDS (constant)">Error::DNS_INFO_NO_RECORDS</a></span>, <span class='object_link'><a href="Error.html#DNS_INVALID_DATAFILE_NAME-constant" title="Msf::Post::Windows::Error::DNS_INVALID_DATAFILE_NAME (constant)">Error::DNS_INVALID_DATAFILE_NAME</a></span>, <span class='object_link'><a href="Error.html#DNS_INVALID_IP_ADDRESS-constant" title="Msf::Post::Windows::Error::DNS_INVALID_IP_ADDRESS (constant)">Error::DNS_INVALID_IP_ADDRESS</a></span>, <span class='object_link'><a href="Error.html#DNS_INVALID_NAME_CHAR-constant" title="Msf::Post::Windows::Error::DNS_INVALID_NAME_CHAR (constant)">Error::DNS_INVALID_NAME_CHAR</a></span>, <span class='object_link'><a href="Error.html#DNS_INVALID_POLICY_TABLE-constant" title="Msf::Post::Windows::Error::DNS_INVALID_POLICY_TABLE (constant)">Error::DNS_INVALID_POLICY_TABLE</a></span>, <span class='object_link'><a href="Error.html#DNS_INVALID_PROPERTY-constant" title="Msf::Post::Windows::Error::DNS_INVALID_PROPERTY (constant)">Error::DNS_INVALID_PROPERTY</a></span>, <span class='object_link'><a href="Error.html#DNS_INVALID_TYPE-constant" title="Msf::Post::Windows::Error::DNS_INVALID_TYPE (constant)">Error::DNS_INVALID_TYPE</a></span>, <span class='object_link'><a href="Error.html#DNS_INVALID_ZONE_OPERATION-constant" title="Msf::Post::Windows::Error::DNS_INVALID_ZONE_OPERATION (constant)">Error::DNS_INVALID_ZONE_OPERATION</a></span>, <span class='object_link'><a href="Error.html#DNS_INVALID_ZONE_TYPE-constant" title="Msf::Post::Windows::Error::DNS_INVALID_ZONE_TYPE (constant)">Error::DNS_INVALID_ZONE_TYPE</a></span>, <span class='object_link'><a href="Error.html#DNS_NAME_DOES_NOT_EXIST-constant" title="Msf::Post::Windows::Error::DNS_NAME_DOES_NOT_EXIST (constant)">Error::DNS_NAME_DOES_NOT_EXIST</a></span>, <span class='object_link'><a href="Error.html#DNS_NAME_NOT_IN_ZONE-constant" title="Msf::Post::Windows::Error::DNS_NAME_NOT_IN_ZONE (constant)">Error::DNS_NAME_NOT_IN_ZONE</a></span>, <span class='object_link'><a href="Error.html#DNS_NBSTAT_INIT_FAILED-constant" title="Msf::Post::Windows::Error::DNS_NBSTAT_INIT_FAILED (constant)">Error::DNS_NBSTAT_INIT_FAILED</a></span>, <span class='object_link'><a href="Error.html#DNS_NEED_SECONDARY_ADDRESSES-constant" title="Msf::Post::Windows::Error::DNS_NEED_SECONDARY_ADDRESSES (constant)">Error::DNS_NEED_SECONDARY_ADDRESSES</a></span>, <span class='object_link'><a href="Error.html#DNS_NEED_WINS_SERVERS-constant" title="Msf::Post::Windows::Error::DNS_NEED_WINS_SERVERS (constant)">Error::DNS_NEED_WINS_SERVERS</a></span>, <span class='object_link'><a href="Error.html#DNS_NODE_CREATION_FAILED-constant" title="Msf::Post::Windows::Error::DNS_NODE_CREATION_FAILED (constant)">Error::DNS_NODE_CREATION_FAILED</a></span>, <span class='object_link'><a href="Error.html#DNS_NODE_IS_CNAME-constant" title="Msf::Post::Windows::Error::DNS_NODE_IS_CNAME (constant)">Error::DNS_NODE_IS_CNAME</a></span>, <span class='object_link'><a href="Error.html#DNS_NODE_IS_DNAME-constant" title="Msf::Post::Windows::Error::DNS_NODE_IS_DNAME (constant)">Error::DNS_NODE_IS_DNAME</a></span>, <span class='object_link'><a href="Error.html#DNS_NON_RFC_NAME-constant" title="Msf::Post::Windows::Error::DNS_NON_RFC_NAME (constant)">Error::DNS_NON_RFC_NAME</a></span>, <span class='object_link'><a href="Error.html#DNS_NOT_ALLOWED_ON_RODC-constant" title="Msf::Post::Windows::Error::DNS_NOT_ALLOWED_ON_RODC (constant)">Error::DNS_NOT_ALLOWED_ON_RODC</a></span>, <span class='object_link'><a href="Error.html#DNS_NOT_ALLOWED_ON_ROOT_SERVER-constant" title="Msf::Post::Windows::Error::DNS_NOT_ALLOWED_ON_ROOT_SERVER (constant)">Error::DNS_NOT_ALLOWED_ON_ROOT_SERVER</a></span>, <span class='object_link'><a href="Error.html#DNS_NOT_ALLOWED_UNDER_DELEGATION-constant" title="Msf::Post::Windows::Error::DNS_NOT_ALLOWED_UNDER_DELEGATION (constant)">Error::DNS_NOT_ALLOWED_UNDER_DELEGATION</a></span>, <span class='object_link'><a href="Error.html#DNS_NOT_ALLOWED_UNDER_DNAME-constant" title="Msf::Post::Windows::Error::DNS_NOT_ALLOWED_UNDER_DNAME (constant)">Error::DNS_NOT_ALLOWED_UNDER_DNAME</a></span>, <span class='object_link'><a href="Error.html#DNS_NOT_UNIQUE-constant" title="Msf::Post::Windows::Error::DNS_NOT_UNIQUE (constant)">Error::DNS_NOT_UNIQUE</a></span>, <span class='object_link'><a href="Error.html#DNS_NO_BOOTFILE_IF_DS_ZONE-constant" title="Msf::Post::Windows::Error::DNS_NO_BOOTFILE_IF_DS_ZONE (constant)">Error::DNS_NO_BOOTFILE_IF_DS_ZONE</a></span>, <span class='object_link'><a href="Error.html#DNS_NO_CREATE_CACHE_DATA-constant" title="Msf::Post::Windows::Error::DNS_NO_CREATE_CACHE_DATA (constant)">Error::DNS_NO_CREATE_CACHE_DATA</a></span>, <span class='object_link'><a href="Error.html#DNS_NO_DNS_SERVERS-constant" title="Msf::Post::Windows::Error::DNS_NO_DNS_SERVERS (constant)">Error::DNS_NO_DNS_SERVERS</a></span>, <span class='object_link'><a href="Error.html#DNS_NO_PACKET-constant" title="Msf::Post::Windows::Error::DNS_NO_PACKET (constant)">Error::DNS_NO_PACKET</a></span>, <span class='object_link'><a href="Error.html#DNS_NO_TCPIP-constant" title="Msf::Post::Windows::Error::DNS_NO_TCPIP (constant)">Error::DNS_NO_TCPIP</a></span>, <span class='object_link'><a href="Error.html#DNS_NO_ZONE_INFO-constant" title="Msf::Post::Windows::Error::DNS_NO_ZONE_INFO (constant)">Error::DNS_NO_ZONE_INFO</a></span>, <span class='object_link'><a href="Error.html#DNS_NUMERIC_NAME-constant" title="Msf::Post::Windows::Error::DNS_NUMERIC_NAME (constant)">Error::DNS_NUMERIC_NAME</a></span>, <span class='object_link'><a href="Error.html#DNS_PRIMARY_REQUIRES_DATAFILE-constant" title="Msf::Post::Windows::Error::DNS_PRIMARY_REQUIRES_DATAFILE (constant)">Error::DNS_PRIMARY_REQUIRES_DATAFILE</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE-constant" title="Msf::Post::Windows::Error::DNS_RCODE (constant)">Error::DNS_RCODE</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_BADKEY-constant" title="Msf::Post::Windows::Error::DNS_RCODE_BADKEY (constant)">Error::DNS_RCODE_BADKEY</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_BADSIG-constant" title="Msf::Post::Windows::Error::DNS_RCODE_BADSIG (constant)">Error::DNS_RCODE_BADSIG</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_BADTIME-constant" title="Msf::Post::Windows::Error::DNS_RCODE_BADTIME (constant)">Error::DNS_RCODE_BADTIME</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_FORMAT_ERROR-constant" title="Msf::Post::Windows::Error::DNS_RCODE_FORMAT_ERROR (constant)">Error::DNS_RCODE_FORMAT_ERROR</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_NAME_ERROR-constant" title="Msf::Post::Windows::Error::DNS_RCODE_NAME_ERROR (constant)">Error::DNS_RCODE_NAME_ERROR</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_NOTAUTH-constant" title="Msf::Post::Windows::Error::DNS_RCODE_NOTAUTH (constant)">Error::DNS_RCODE_NOTAUTH</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_NOTZONE-constant" title="Msf::Post::Windows::Error::DNS_RCODE_NOTZONE (constant)">Error::DNS_RCODE_NOTZONE</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_NOT_IMPLEMENTED-constant" title="Msf::Post::Windows::Error::DNS_RCODE_NOT_IMPLEMENTED (constant)">Error::DNS_RCODE_NOT_IMPLEMENTED</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_NXRRSET-constant" title="Msf::Post::Windows::Error::DNS_RCODE_NXRRSET (constant)">Error::DNS_RCODE_NXRRSET</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_REFUSED-constant" title="Msf::Post::Windows::Error::DNS_RCODE_REFUSED (constant)">Error::DNS_RCODE_REFUSED</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_SERVER_FAILURE-constant" title="Msf::Post::Windows::Error::DNS_RCODE_SERVER_FAILURE (constant)">Error::DNS_RCODE_SERVER_FAILURE</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_YXDOMAIN-constant" title="Msf::Post::Windows::Error::DNS_RCODE_YXDOMAIN (constant)">Error::DNS_RCODE_YXDOMAIN</a></span>, <span class='object_link'><a href="Error.html#DNS_RCODE_YXRRSET-constant" title="Msf::Post::Windows::Error::DNS_RCODE_YXRRSET (constant)">Error::DNS_RCODE_YXRRSET</a></span>, <span class='object_link'><a href="Error.html#DNS_RECORD_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DNS_RECORD_ALREADY_EXISTS (constant)">Error::DNS_RECORD_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DNS_RECORD_DOES_NOT_EXIST-constant" title="Msf::Post::Windows::Error::DNS_RECORD_DOES_NOT_EXIST (constant)">Error::DNS_RECORD_DOES_NOT_EXIST</a></span>, <span class='object_link'><a href="Error.html#DNS_RECORD_FORMAT-constant" title="Msf::Post::Windows::Error::DNS_RECORD_FORMAT (constant)">Error::DNS_RECORD_FORMAT</a></span>, <span class='object_link'><a href="Error.html#DNS_RECORD_ONLY_AT_ZONE_ROOT-constant" title="Msf::Post::Windows::Error::DNS_RECORD_ONLY_AT_ZONE_ROOT (constant)">Error::DNS_RECORD_ONLY_AT_ZONE_ROOT</a></span>, <span class='object_link'><a href="Error.html#DNS_RECORD_TIMED_OUT-constant" title="Msf::Post::Windows::Error::DNS_RECORD_TIMED_OUT (constant)">Error::DNS_RECORD_TIMED_OUT</a></span>, <span class='object_link'><a href="Error.html#DNS_SECONDARY_DATA-constant" title="Msf::Post::Windows::Error::DNS_SECONDARY_DATA (constant)">Error::DNS_SECONDARY_DATA</a></span>, <span class='object_link'><a href="Error.html#DNS_SECONDARY_REQUIRES_MASTER_IP-constant" title="Msf::Post::Windows::Error::DNS_SECONDARY_REQUIRES_MASTER_IP (constant)">Error::DNS_SECONDARY_REQUIRES_MASTER_IP</a></span>, <span class='object_link'><a href="Error.html#DNS_SOA_DELETE_INVALID-constant" title="Msf::Post::Windows::Error::DNS_SOA_DELETE_INVALID (constant)">Error::DNS_SOA_DELETE_INVALID</a></span>, <span class='object_link'><a href="Error.html#DNS_STATUS_CONTINUE_NEEDED-constant" title="Msf::Post::Windows::Error::DNS_STATUS_CONTINUE_NEEDED (constant)">Error::DNS_STATUS_CONTINUE_NEEDED</a></span>, <span class='object_link'><a href="Error.html#DNS_STATUS_DOTTED_NAME-constant" title="Msf::Post::Windows::Error::DNS_STATUS_DOTTED_NAME (constant)">Error::DNS_STATUS_DOTTED_NAME</a></span>, <span class='object_link'><a href="Error.html#DNS_STATUS_FQDN-constant" title="Msf::Post::Windows::Error::DNS_STATUS_FQDN (constant)">Error::DNS_STATUS_FQDN</a></span>, <span class='object_link'><a href="Error.html#DNS_STATUS_SINGLE_PART_NAME-constant" title="Msf::Post::Windows::Error::DNS_STATUS_SINGLE_PART_NAME (constant)">Error::DNS_STATUS_SINGLE_PART_NAME</a></span>, <span class='object_link'><a href="Error.html#DNS_TRY_AGAIN_LATER-constant" title="Msf::Post::Windows::Error::DNS_TRY_AGAIN_LATER (constant)">Error::DNS_TRY_AGAIN_LATER</a></span>, <span class='object_link'><a href="Error.html#DNS_UNKNOWN_RECORD_TYPE-constant" title="Msf::Post::Windows::Error::DNS_UNKNOWN_RECORD_TYPE (constant)">Error::DNS_UNKNOWN_RECORD_TYPE</a></span>, <span class='object_link'><a href="Error.html#DNS_UNSECURE_PACKET-constant" title="Msf::Post::Windows::Error::DNS_UNSECURE_PACKET (constant)">Error::DNS_UNSECURE_PACKET</a></span>, <span class='object_link'><a href="Error.html#DNS_WARNING_DOMAIN_UNDELETED-constant" title="Msf::Post::Windows::Error::DNS_WARNING_DOMAIN_UNDELETED (constant)">Error::DNS_WARNING_DOMAIN_UNDELETED</a></span>, <span class='object_link'><a href="Error.html#DNS_WARNING_PTR_CREATE_FAILED-constant" title="Msf::Post::Windows::Error::DNS_WARNING_PTR_CREATE_FAILED (constant)">Error::DNS_WARNING_PTR_CREATE_FAILED</a></span>, <span class='object_link'><a href="Error.html#DNS_WINS_INIT_FAILED-constant" title="Msf::Post::Windows::Error::DNS_WINS_INIT_FAILED (constant)">Error::DNS_WINS_INIT_FAILED</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DNS_ZONE_ALREADY_EXISTS (constant)">Error::DNS_ZONE_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_CONFIGURATION_ERROR-constant" title="Msf::Post::Windows::Error::DNS_ZONE_CONFIGURATION_ERROR (constant)">Error::DNS_ZONE_CONFIGURATION_ERROR</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_CREATION_FAILED-constant" title="Msf::Post::Windows::Error::DNS_ZONE_CREATION_FAILED (constant)">Error::DNS_ZONE_CREATION_FAILED</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_DOES_NOT_EXIST-constant" title="Msf::Post::Windows::Error::DNS_ZONE_DOES_NOT_EXIST (constant)">Error::DNS_ZONE_DOES_NOT_EXIST</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_HAS_NO_NS_RECORDS-constant" title="Msf::Post::Windows::Error::DNS_ZONE_HAS_NO_NS_RECORDS (constant)">Error::DNS_ZONE_HAS_NO_NS_RECORDS</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_HAS_NO_SOA_RECORD-constant" title="Msf::Post::Windows::Error::DNS_ZONE_HAS_NO_SOA_RECORD (constant)">Error::DNS_ZONE_HAS_NO_SOA_RECORD</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_IS_SHUTDOWN-constant" title="Msf::Post::Windows::Error::DNS_ZONE_IS_SHUTDOWN (constant)">Error::DNS_ZONE_IS_SHUTDOWN</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_LOCKED-constant" title="Msf::Post::Windows::Error::DNS_ZONE_LOCKED (constant)">Error::DNS_ZONE_LOCKED</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_NOT_SECONDARY-constant" title="Msf::Post::Windows::Error::DNS_ZONE_NOT_SECONDARY (constant)">Error::DNS_ZONE_NOT_SECONDARY</a></span>, <span class='object_link'><a href="Error.html#DNS_ZONE_REQUIRES_MASTER_IP-constant" title="Msf::Post::Windows::Error::DNS_ZONE_REQUIRES_MASTER_IP (constant)">Error::DNS_ZONE_REQUIRES_MASTER_IP</a></span>, <span class='object_link'><a href="Error.html#DOMAIN_CONTROLLER_EXISTS-constant" title="Msf::Post::Windows::Error::DOMAIN_CONTROLLER_EXISTS (constant)">Error::DOMAIN_CONTROLLER_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DOMAIN_CONTROLLER_NOT_FOUND-constant" title="Msf::Post::Windows::Error::DOMAIN_CONTROLLER_NOT_FOUND (constant)">Error::DOMAIN_CONTROLLER_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#DOMAIN_CTRLR_CONFIG_ERROR-constant" title="Msf::Post::Windows::Error::DOMAIN_CTRLR_CONFIG_ERROR (constant)">Error::DOMAIN_CTRLR_CONFIG_ERROR</a></span>, <span class='object_link'><a href="Error.html#DOMAIN_EXISTS-constant" title="Msf::Post::Windows::Error::DOMAIN_EXISTS (constant)">Error::DOMAIN_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DOMAIN_LIMIT_EXCEEDED-constant" title="Msf::Post::Windows::Error::DOMAIN_LIMIT_EXCEEDED (constant)">Error::DOMAIN_LIMIT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DOMAIN_TRUST_INCONSISTENT-constant" title="Msf::Post::Windows::Error::DOMAIN_TRUST_INCONSISTENT (constant)">Error::DOMAIN_TRUST_INCONSISTENT</a></span>, <span class='object_link'><a href="Error.html#DOWNGRADE_DETECTED-constant" title="Msf::Post::Windows::Error::DOWNGRADE_DETECTED (constant)">Error::DOWNGRADE_DETECTED</a></span>, <span class='object_link'><a href="Error.html#DRIVERS_LEAKING_LOCKED_PAGES-constant" title="Msf::Post::Windows::Error::DRIVERS_LEAKING_LOCKED_PAGES (constant)">Error::DRIVERS_LEAKING_LOCKED_PAGES</a></span>, <span class='object_link'><a href="Error.html#DRIVER_BLOCKED-constant" title="Msf::Post::Windows::Error::DRIVER_BLOCKED (constant)">Error::DRIVER_BLOCKED</a></span>, <span class='object_link'><a href="Error.html#DRIVER_CANCEL_TIMEOUT-constant" title="Msf::Post::Windows::Error::DRIVER_CANCEL_TIMEOUT (constant)">Error::DRIVER_CANCEL_TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#DRIVER_DATABASE_ERROR-constant" title="Msf::Post::Windows::Error::DRIVER_DATABASE_ERROR (constant)">Error::DRIVER_DATABASE_ERROR</a></span>, <span class='object_link'><a href="Error.html#DRIVER_FAILED_PRIOR_UNLOAD-constant" title="Msf::Post::Windows::Error::DRIVER_FAILED_PRIOR_UNLOAD (constant)">Error::DRIVER_FAILED_PRIOR_UNLOAD</a></span>, <span class='object_link'><a href="Error.html#DRIVER_FAILED_SLEEP-constant" title="Msf::Post::Windows::Error::DRIVER_FAILED_SLEEP (constant)">Error::DRIVER_FAILED_SLEEP</a></span>, <span class='object_link'><a href="Error.html#DRIVER_PROCESS_TERMINATED-constant" title="Msf::Post::Windows::Error::DRIVER_PROCESS_TERMINATED (constant)">Error::DRIVER_PROCESS_TERMINATED</a></span>, <span class='object_link'><a href="Error.html#DRIVE_LOCKED-constant" title="Msf::Post::Windows::Error::DRIVE_LOCKED (constant)">Error::DRIVE_LOCKED</a></span>, <span class='object_link'><a href="Error.html#DRIVE_MEDIA_MISMATCH-constant" title="Msf::Post::Windows::Error::DRIVE_MEDIA_MISMATCH (constant)">Error::DRIVE_MEDIA_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_ADD_REPLICA_INHIBITED-constant" title="Msf::Post::Windows::Error::DS_ADD_REPLICA_INHIBITED (constant)">Error::DS_ADD_REPLICA_INHIBITED</a></span>, <span class='object_link'><a href="Error.html#DS_ADMIN_LIMIT_EXCEEDED-constant" title="Msf::Post::Windows::Error::DS_ADMIN_LIMIT_EXCEEDED (constant)">Error::DS_ADMIN_LIMIT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DS_AFFECTS_MULTIPLE_DSAS-constant" title="Msf::Post::Windows::Error::DS_AFFECTS_MULTIPLE_DSAS (constant)">Error::DS_AFFECTS_MULTIPLE_DSAS</a></span>, <span class='object_link'><a href="Error.html#DS_AG_CANT_HAVE_UNIVERSAL_MEMBER-constant" title="Msf::Post::Windows::Error::DS_AG_CANT_HAVE_UNIVERSAL_MEMBER (constant)">Error::DS_AG_CANT_HAVE_UNIVERSAL_MEMBER</a></span>, <span class='object_link'><a href="Error.html#DS_ALIASED_OBJ_MISSING-constant" title="Msf::Post::Windows::Error::DS_ALIASED_OBJ_MISSING (constant)">Error::DS_ALIASED_OBJ_MISSING</a></span>, <span class='object_link'><a href="Error.html#DS_ALIAS_DEREF_PROBLEM-constant" title="Msf::Post::Windows::Error::DS_ALIAS_DEREF_PROBLEM (constant)">Error::DS_ALIAS_DEREF_PROBLEM</a></span>, <span class='object_link'><a href="Error.html#DS_ALIAS_POINTS_TO_ALIAS-constant" title="Msf::Post::Windows::Error::DS_ALIAS_POINTS_TO_ALIAS (constant)">Error::DS_ALIAS_POINTS_TO_ALIAS</a></span>, <span class='object_link'><a href="Error.html#DS_ALIAS_PROBLEM-constant" title="Msf::Post::Windows::Error::DS_ALIAS_PROBLEM (constant)">Error::DS_ALIAS_PROBLEM</a></span>, <span class='object_link'><a href="Error.html#DS_ATTRIBUTE_OR_VALUE_EXISTS-constant" title="Msf::Post::Windows::Error::DS_ATTRIBUTE_OR_VALUE_EXISTS (constant)">Error::DS_ATTRIBUTE_OR_VALUE_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DS_ATTRIBUTE_OWNED_BY_SAM-constant" title="Msf::Post::Windows::Error::DS_ATTRIBUTE_OWNED_BY_SAM (constant)">Error::DS_ATTRIBUTE_OWNED_BY_SAM</a></span>, <span class='object_link'><a href="Error.html#DS_ATTRIBUTE_TYPE_UNDEFINED-constant" title="Msf::Post::Windows::Error::DS_ATTRIBUTE_TYPE_UNDEFINED (constant)">Error::DS_ATTRIBUTE_TYPE_UNDEFINED</a></span>, <span class='object_link'><a href="Error.html#DS_ATT_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DS_ATT_ALREADY_EXISTS (constant)">Error::DS_ATT_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DS_ATT_IS_NOT_ON_OBJ-constant" title="Msf::Post::Windows::Error::DS_ATT_IS_NOT_ON_OBJ (constant)">Error::DS_ATT_IS_NOT_ON_OBJ</a></span>, <span class='object_link'><a href="Error.html#DS_ATT_NOT_DEF_FOR_CLASS-constant" title="Msf::Post::Windows::Error::DS_ATT_NOT_DEF_FOR_CLASS (constant)">Error::DS_ATT_NOT_DEF_FOR_CLASS</a></span>, <span class='object_link'><a href="Error.html#DS_ATT_NOT_DEF_IN_SCHEMA-constant" title="Msf::Post::Windows::Error::DS_ATT_NOT_DEF_IN_SCHEMA (constant)">Error::DS_ATT_NOT_DEF_IN_SCHEMA</a></span>, <span class='object_link'><a href="Error.html#DS_ATT_SCHEMA_REQ_ID-constant" title="Msf::Post::Windows::Error::DS_ATT_SCHEMA_REQ_ID (constant)">Error::DS_ATT_SCHEMA_REQ_ID</a></span>, <span class='object_link'><a href="Error.html#DS_ATT_SCHEMA_REQ_SYNTAX-constant" title="Msf::Post::Windows::Error::DS_ATT_SCHEMA_REQ_SYNTAX (constant)">Error::DS_ATT_SCHEMA_REQ_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#DS_ATT_VAL_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DS_ATT_VAL_ALREADY_EXISTS (constant)">Error::DS_ATT_VAL_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DS_AUDIT_FAILURE-constant" title="Msf::Post::Windows::Error::DS_AUDIT_FAILURE (constant)">Error::DS_AUDIT_FAILURE</a></span>, <span class='object_link'><a href="Error.html#DS_AUTHORIZATION_FAILED-constant" title="Msf::Post::Windows::Error::DS_AUTHORIZATION_FAILED (constant)">Error::DS_AUTHORIZATION_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_AUTH_METHOD_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::DS_AUTH_METHOD_NOT_SUPPORTED (constant)">Error::DS_AUTH_METHOD_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#DS_AUTH_UNKNOWN-constant" title="Msf::Post::Windows::Error::DS_AUTH_UNKNOWN (constant)">Error::DS_AUTH_UNKNOWN</a></span>, <span class='object_link'><a href="Error.html#DS_AUX_CLS_TEST_FAIL-constant" title="Msf::Post::Windows::Error::DS_AUX_CLS_TEST_FAIL (constant)">Error::DS_AUX_CLS_TEST_FAIL</a></span>, <span class='object_link'><a href="Error.html#DS_BACKLINK_WITHOUT_LINK-constant" title="Msf::Post::Windows::Error::DS_BACKLINK_WITHOUT_LINK (constant)">Error::DS_BACKLINK_WITHOUT_LINK</a></span>, <span class='object_link'><a href="Error.html#DS_BAD_ATT_SCHEMA_SYNTAX-constant" title="Msf::Post::Windows::Error::DS_BAD_ATT_SCHEMA_SYNTAX (constant)">Error::DS_BAD_ATT_SCHEMA_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#DS_BAD_HIERARCHY_FILE-constant" title="Msf::Post::Windows::Error::DS_BAD_HIERARCHY_FILE (constant)">Error::DS_BAD_HIERARCHY_FILE</a></span>, <span class='object_link'><a href="Error.html#DS_BAD_INSTANCE_TYPE-constant" title="Msf::Post::Windows::Error::DS_BAD_INSTANCE_TYPE (constant)">Error::DS_BAD_INSTANCE_TYPE</a></span>, <span class='object_link'><a href="Error.html#DS_BAD_NAME_SYNTAX-constant" title="Msf::Post::Windows::Error::DS_BAD_NAME_SYNTAX (constant)">Error::DS_BAD_NAME_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#DS_BAD_RDN_ATT_ID_SYNTAX-constant" title="Msf::Post::Windows::Error::DS_BAD_RDN_ATT_ID_SYNTAX (constant)">Error::DS_BAD_RDN_ATT_ID_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#DS_BUILD_HIERARCHY_TABLE_FAILED-constant" title="Msf::Post::Windows::Error::DS_BUILD_HIERARCHY_TABLE_FAILED (constant)">Error::DS_BUILD_HIERARCHY_TABLE_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_BUSY-constant" title="Msf::Post::Windows::Error::DS_BUSY (constant)">Error::DS_BUSY</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_ACCESS_REMOTE_PART_OF_AD-constant" title="Msf::Post::Windows::Error::DS_CANT_ACCESS_REMOTE_PART_OF_AD (constant)">Error::DS_CANT_ACCESS_REMOTE_PART_OF_AD</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_ADD_ATT_VALUES-constant" title="Msf::Post::Windows::Error::DS_CANT_ADD_ATT_VALUES (constant)">Error::DS_CANT_ADD_ATT_VALUES</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_ADD_SYSTEM_ONLY-constant" title="Msf::Post::Windows::Error::DS_CANT_ADD_SYSTEM_ONLY (constant)">Error::DS_CANT_ADD_SYSTEM_ONLY</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_ADD_TO_GC-constant" title="Msf::Post::Windows::Error::DS_CANT_ADD_TO_GC (constant)">Error::DS_CANT_ADD_TO_GC</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_CACHE_ATT-constant" title="Msf::Post::Windows::Error::DS_CANT_CACHE_ATT (constant)">Error::DS_CANT_CACHE_ATT</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_CACHE_CLASS-constant" title="Msf::Post::Windows::Error::DS_CANT_CACHE_CLASS (constant)">Error::DS_CANT_CACHE_CLASS</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_CREATE_IN_NONDOMAIN_NC-constant" title="Msf::Post::Windows::Error::DS_CANT_CREATE_IN_NONDOMAIN_NC (constant)">Error::DS_CANT_CREATE_IN_NONDOMAIN_NC</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_CREATE_UNDER_SCHEMA-constant" title="Msf::Post::Windows::Error::DS_CANT_CREATE_UNDER_SCHEMA (constant)">Error::DS_CANT_CREATE_UNDER_SCHEMA</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_DELETE-constant" title="Msf::Post::Windows::Error::DS_CANT_DELETE (constant)">Error::DS_CANT_DELETE</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_DELETE_DSA_OBJ-constant" title="Msf::Post::Windows::Error::DS_CANT_DELETE_DSA_OBJ (constant)">Error::DS_CANT_DELETE_DSA_OBJ</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_DEL_MASTER_CROSSREF-constant" title="Msf::Post::Windows::Error::DS_CANT_DEL_MASTER_CROSSREF (constant)">Error::DS_CANT_DEL_MASTER_CROSSREF</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_DEMOTE_WITH_WRITEABLE_NC-constant" title="Msf::Post::Windows::Error::DS_CANT_DEMOTE_WITH_WRITEABLE_NC (constant)">Error::DS_CANT_DEMOTE_WITH_WRITEABLE_NC</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_DEREF_ALIAS-constant" title="Msf::Post::Windows::Error::DS_CANT_DEREF_ALIAS (constant)">Error::DS_CANT_DEREF_ALIAS</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN-constant" title="Msf::Post::Windows::Error::DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN (constant)">Error::DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF-constant" title="Msf::Post::Windows::Error::DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF (constant)">Error::DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_FIND_DC_FOR_SRC_DOMAIN-constant" title="Msf::Post::Windows::Error::DS_CANT_FIND_DC_FOR_SRC_DOMAIN (constant)">Error::DS_CANT_FIND_DC_FOR_SRC_DOMAIN</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_FIND_DSA_OBJ-constant" title="Msf::Post::Windows::Error::DS_CANT_FIND_DSA_OBJ (constant)">Error::DS_CANT_FIND_DSA_OBJ</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_FIND_EXPECTED_NC-constant" title="Msf::Post::Windows::Error::DS_CANT_FIND_EXPECTED_NC (constant)">Error::DS_CANT_FIND_EXPECTED_NC</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_FIND_NC_IN_CACHE-constant" title="Msf::Post::Windows::Error::DS_CANT_FIND_NC_IN_CACHE (constant)">Error::DS_CANT_FIND_NC_IN_CACHE</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_MIX_MASTER_AND_REPS-constant" title="Msf::Post::Windows::Error::DS_CANT_MIX_MASTER_AND_REPS (constant)">Error::DS_CANT_MIX_MASTER_AND_REPS</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_MOD_OBJ_CLASS-constant" title="Msf::Post::Windows::Error::DS_CANT_MOD_OBJ_CLASS (constant)">Error::DS_CANT_MOD_OBJ_CLASS</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_MOD_PRIMARYGROUPID-constant" title="Msf::Post::Windows::Error::DS_CANT_MOD_PRIMARYGROUPID (constant)">Error::DS_CANT_MOD_PRIMARYGROUPID</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_MOD_SYSTEM_ONLY-constant" title="Msf::Post::Windows::Error::DS_CANT_MOD_SYSTEM_ONLY (constant)">Error::DS_CANT_MOD_SYSTEM_ONLY</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_MOVE_ACCOUNT_GROUP-constant" title="Msf::Post::Windows::Error::DS_CANT_MOVE_ACCOUNT_GROUP (constant)">Error::DS_CANT_MOVE_ACCOUNT_GROUP</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_MOVE_APP_BASIC_GROUP-constant" title="Msf::Post::Windows::Error::DS_CANT_MOVE_APP_BASIC_GROUP (constant)">Error::DS_CANT_MOVE_APP_BASIC_GROUP</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_MOVE_APP_QUERY_GROUP-constant" title="Msf::Post::Windows::Error::DS_CANT_MOVE_APP_QUERY_GROUP (constant)">Error::DS_CANT_MOVE_APP_QUERY_GROUP</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_MOVE_DELETED_OBJECT-constant" title="Msf::Post::Windows::Error::DS_CANT_MOVE_DELETED_OBJECT (constant)">Error::DS_CANT_MOVE_DELETED_OBJECT</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_MOVE_RESOURCE_GROUP-constant" title="Msf::Post::Windows::Error::DS_CANT_MOVE_RESOURCE_GROUP (constant)">Error::DS_CANT_MOVE_RESOURCE_GROUP</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_ON_NON_LEAF-constant" title="Msf::Post::Windows::Error::DS_CANT_ON_NON_LEAF (constant)">Error::DS_CANT_ON_NON_LEAF</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_ON_RDN-constant" title="Msf::Post::Windows::Error::DS_CANT_ON_RDN (constant)">Error::DS_CANT_ON_RDN</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_REMOVE_ATT_CACHE-constant" title="Msf::Post::Windows::Error::DS_CANT_REMOVE_ATT_CACHE (constant)">Error::DS_CANT_REMOVE_ATT_CACHE</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_REMOVE_CLASS_CACHE-constant" title="Msf::Post::Windows::Error::DS_CANT_REMOVE_CLASS_CACHE (constant)">Error::DS_CANT_REMOVE_CLASS_CACHE</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_REM_MISSING_ATT-constant" title="Msf::Post::Windows::Error::DS_CANT_REM_MISSING_ATT (constant)">Error::DS_CANT_REM_MISSING_ATT</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_REM_MISSING_ATT_VAL-constant" title="Msf::Post::Windows::Error::DS_CANT_REM_MISSING_ATT_VAL (constant)">Error::DS_CANT_REM_MISSING_ATT_VAL</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_REPLACE_HIDDEN_REC-constant" title="Msf::Post::Windows::Error::DS_CANT_REPLACE_HIDDEN_REC (constant)">Error::DS_CANT_REPLACE_HIDDEN_REC</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_RETRIEVE_ATTS-constant" title="Msf::Post::Windows::Error::DS_CANT_RETRIEVE_ATTS (constant)">Error::DS_CANT_RETRIEVE_ATTS</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_RETRIEVE_CHILD-constant" title="Msf::Post::Windows::Error::DS_CANT_RETRIEVE_CHILD (constant)">Error::DS_CANT_RETRIEVE_CHILD</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_RETRIEVE_DN-constant" title="Msf::Post::Windows::Error::DS_CANT_RETRIEVE_DN (constant)">Error::DS_CANT_RETRIEVE_DN</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_RETRIEVE_INSTANCE-constant" title="Msf::Post::Windows::Error::DS_CANT_RETRIEVE_INSTANCE (constant)">Error::DS_CANT_RETRIEVE_INSTANCE</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_RETRIEVE_SD-constant" title="Msf::Post::Windows::Error::DS_CANT_RETRIEVE_SD (constant)">Error::DS_CANT_RETRIEVE_SD</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_START-constant" title="Msf::Post::Windows::Error::DS_CANT_START (constant)">Error::DS_CANT_START</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_TREE_DELETE_CRITICAL_OBJ-constant" title="Msf::Post::Windows::Error::DS_CANT_TREE_DELETE_CRITICAL_OBJ (constant)">Error::DS_CANT_TREE_DELETE_CRITICAL_OBJ</a></span>, <span class='object_link'><a href="Error.html#DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS-constant" title="Msf::Post::Windows::Error::DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS (constant)">Error::DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS</a></span>, <span class='object_link'><a href="Error.html#DS_CHILDREN_EXIST-constant" title="Msf::Post::Windows::Error::DS_CHILDREN_EXIST (constant)">Error::DS_CHILDREN_EXIST</a></span>, <span class='object_link'><a href="Error.html#DS_CLASS_MUST_BE_CONCRETE-constant" title="Msf::Post::Windows::Error::DS_CLASS_MUST_BE_CONCRETE (constant)">Error::DS_CLASS_MUST_BE_CONCRETE</a></span>, <span class='object_link'><a href="Error.html#DS_CLASS_NOT_DSA-constant" title="Msf::Post::Windows::Error::DS_CLASS_NOT_DSA (constant)">Error::DS_CLASS_NOT_DSA</a></span>, <span class='object_link'><a href="Error.html#DS_CLIENT_LOOP-constant" title="Msf::Post::Windows::Error::DS_CLIENT_LOOP (constant)">Error::DS_CLIENT_LOOP</a></span>, <span class='object_link'><a href="Error.html#DS_CODE_INCONSISTENCY-constant" title="Msf::Post::Windows::Error::DS_CODE_INCONSISTENCY (constant)">Error::DS_CODE_INCONSISTENCY</a></span>, <span class='object_link'><a href="Error.html#DS_COMPARE_FALSE-constant" title="Msf::Post::Windows::Error::DS_COMPARE_FALSE (constant)">Error::DS_COMPARE_FALSE</a></span>, <span class='object_link'><a href="Error.html#DS_COMPARE_TRUE-constant" title="Msf::Post::Windows::Error::DS_COMPARE_TRUE (constant)">Error::DS_COMPARE_TRUE</a></span>, <span class='object_link'><a href="Error.html#DS_CONFIDENTIALITY_REQUIRED-constant" title="Msf::Post::Windows::Error::DS_CONFIDENTIALITY_REQUIRED (constant)">Error::DS_CONFIDENTIALITY_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#DS_CONFIG_PARAM_MISSING-constant" title="Msf::Post::Windows::Error::DS_CONFIG_PARAM_MISSING (constant)">Error::DS_CONFIG_PARAM_MISSING</a></span>, <span class='object_link'><a href="Error.html#DS_CONSTRAINT_VIOLATION-constant" title="Msf::Post::Windows::Error::DS_CONSTRAINT_VIOLATION (constant)">Error::DS_CONSTRAINT_VIOLATION</a></span>, <span class='object_link'><a href="Error.html#DS_CONSTRUCTED_ATT_MOD-constant" title="Msf::Post::Windows::Error::DS_CONSTRUCTED_ATT_MOD (constant)">Error::DS_CONSTRUCTED_ATT_MOD</a></span>, <span class='object_link'><a href="Error.html#DS_CONTROL_NOT_FOUND-constant" title="Msf::Post::Windows::Error::DS_CONTROL_NOT_FOUND (constant)">Error::DS_CONTROL_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#DS_COULDNT_CONTACT_FSMO-constant" title="Msf::Post::Windows::Error::DS_COULDNT_CONTACT_FSMO (constant)">Error::DS_COULDNT_CONTACT_FSMO</a></span>, <span class='object_link'><a href="Error.html#DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE-constant" title="Msf::Post::Windows::Error::DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE (constant)">Error::DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE</a></span>, <span class='object_link'><a href="Error.html#DS_COULDNT_LOCK_TREE_FOR_DELETE-constant" title="Msf::Post::Windows::Error::DS_COULDNT_LOCK_TREE_FOR_DELETE (constant)">Error::DS_COULDNT_LOCK_TREE_FOR_DELETE</a></span>, <span class='object_link'><a href="Error.html#DS_COULDNT_UPDATE_SPNS-constant" title="Msf::Post::Windows::Error::DS_COULDNT_UPDATE_SPNS (constant)">Error::DS_COULDNT_UPDATE_SPNS</a></span>, <span class='object_link'><a href="Error.html#DS_COUNTING_AB_INDICES_FAILED-constant" title="Msf::Post::Windows::Error::DS_COUNTING_AB_INDICES_FAILED (constant)">Error::DS_COUNTING_AB_INDICES_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_CROSS_DOMAIN_CLEANUP_REQD-constant" title="Msf::Post::Windows::Error::DS_CROSS_DOMAIN_CLEANUP_REQD (constant)">Error::DS_CROSS_DOMAIN_CLEANUP_REQD</a></span>, <span class='object_link'><a href="Error.html#DS_CROSS_DOM_MOVE_ERROR-constant" title="Msf::Post::Windows::Error::DS_CROSS_DOM_MOVE_ERROR (constant)">Error::DS_CROSS_DOM_MOVE_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_CROSS_NC_DN_RENAME-constant" title="Msf::Post::Windows::Error::DS_CROSS_NC_DN_RENAME (constant)">Error::DS_CROSS_NC_DN_RENAME</a></span>, <span class='object_link'><a href="Error.html#DS_CROSS_REF_BUSY-constant" title="Msf::Post::Windows::Error::DS_CROSS_REF_BUSY (constant)">Error::DS_CROSS_REF_BUSY</a></span>, <span class='object_link'><a href="Error.html#DS_CROSS_REF_EXISTS-constant" title="Msf::Post::Windows::Error::DS_CROSS_REF_EXISTS (constant)">Error::DS_CROSS_REF_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DS_CR_IMPOSSIBLE_TO_VALIDATE-constant" title="Msf::Post::Windows::Error::DS_CR_IMPOSSIBLE_TO_VALIDATE (constant)">Error::DS_CR_IMPOSSIBLE_TO_VALIDATE</a></span>, <span class='object_link'><a href="Error.html#DS_CR_IMPOSSIBLE_TO_VALIDATE_V2-constant" title="Msf::Post::Windows::Error::DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 (constant)">Error::DS_CR_IMPOSSIBLE_TO_VALIDATE_V2</a></span>, <span class='object_link'><a href="Error.html#DS_DATABASE_ERROR-constant" title="Msf::Post::Windows::Error::DS_DATABASE_ERROR (constant)">Error::DS_DATABASE_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_DECODING_ERROR-constant" title="Msf::Post::Windows::Error::DS_DECODING_ERROR (constant)">Error::DS_DECODING_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_DESTINATION_AUDITING_NOT_ENABLED-constant" title="Msf::Post::Windows::Error::DS_DESTINATION_AUDITING_NOT_ENABLED (constant)">Error::DS_DESTINATION_AUDITING_NOT_ENABLED</a></span>, <span class='object_link'><a href="Error.html#DS_DESTINATION_DOMAIN_NOT_IN_FOREST-constant" title="Msf::Post::Windows::Error::DS_DESTINATION_DOMAIN_NOT_IN_FOREST (constant)">Error::DS_DESTINATION_DOMAIN_NOT_IN_FOREST</a></span>, <span class='object_link'><a href="Error.html#DS_DIFFERENT_REPL_EPOCHS-constant" title="Msf::Post::Windows::Error::DS_DIFFERENT_REPL_EPOCHS (constant)">Error::DS_DIFFERENT_REPL_EPOCHS</a></span>, <span class='object_link'><a href="Error.html#DS_DISALLOWED_IN_SYSTEM_CONTAINER-constant" title="Msf::Post::Windows::Error::DS_DISALLOWED_IN_SYSTEM_CONTAINER (constant)">Error::DS_DISALLOWED_IN_SYSTEM_CONTAINER</a></span>, <span class='object_link'><a href="Error.html#DS_DOMAIN_NAME_EXISTS_IN_FOREST-constant" title="Msf::Post::Windows::Error::DS_DOMAIN_NAME_EXISTS_IN_FOREST (constant)">Error::DS_DOMAIN_NAME_EXISTS_IN_FOREST</a></span>, <span class='object_link'><a href="Error.html#DS_DOMAIN_RENAME_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::DS_DOMAIN_RENAME_IN_PROGRESS (constant)">Error::DS_DOMAIN_RENAME_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#DS_DOMAIN_VERSION_TOO_HIGH-constant" title="Msf::Post::Windows::Error::DS_DOMAIN_VERSION_TOO_HIGH (constant)">Error::DS_DOMAIN_VERSION_TOO_HIGH</a></span>, <span class='object_link'><a href="Error.html#DS_DOMAIN_VERSION_TOO_LOW-constant" title="Msf::Post::Windows::Error::DS_DOMAIN_VERSION_TOO_LOW (constant)">Error::DS_DOMAIN_VERSION_TOO_LOW</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_ABANDON_SYNC-constant" title="Msf::Post::Windows::Error::DS_DRA_ABANDON_SYNC (constant)">Error::DS_DRA_ABANDON_SYNC</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_ACCESS_DENIED-constant" title="Msf::Post::Windows::Error::DS_DRA_ACCESS_DENIED (constant)">Error::DS_DRA_ACCESS_DENIED</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_BAD_DN-constant" title="Msf::Post::Windows::Error::DS_DRA_BAD_DN (constant)">Error::DS_DRA_BAD_DN</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_BAD_INSTANCE_TYPE-constant" title="Msf::Post::Windows::Error::DS_DRA_BAD_INSTANCE_TYPE (constant)">Error::DS_DRA_BAD_INSTANCE_TYPE</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_BAD_NC-constant" title="Msf::Post::Windows::Error::DS_DRA_BAD_NC (constant)">Error::DS_DRA_BAD_NC</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_BUSY-constant" title="Msf::Post::Windows::Error::DS_DRA_BUSY (constant)">Error::DS_DRA_BUSY</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_CONNECTION_FAILED-constant" title="Msf::Post::Windows::Error::DS_DRA_CONNECTION_FAILED (constant)">Error::DS_DRA_CONNECTION_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_CORRUPT_UTD_VECTOR-constant" title="Msf::Post::Windows::Error::DS_DRA_CORRUPT_UTD_VECTOR (constant)">Error::DS_DRA_CORRUPT_UTD_VECTOR</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_DB_ERROR-constant" title="Msf::Post::Windows::Error::DS_DRA_DB_ERROR (constant)">Error::DS_DRA_DB_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_DN_EXISTS-constant" title="Msf::Post::Windows::Error::DS_DRA_DN_EXISTS (constant)">Error::DS_DRA_DN_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_EARLIER_SCHEMA_CONLICT-constant" title="Msf::Post::Windows::Error::DS_DRA_EARLIER_SCHEMA_CONLICT (constant)">Error::DS_DRA_EARLIER_SCHEMA_CONLICT</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_EXTN_CONNECTION_FAILED-constant" title="Msf::Post::Windows::Error::DS_DRA_EXTN_CONNECTION_FAILED (constant)">Error::DS_DRA_EXTN_CONNECTION_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_GENERIC-constant" title="Msf::Post::Windows::Error::DS_DRA_GENERIC (constant)">Error::DS_DRA_GENERIC</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_INCOMPATIBLE_PARTIAL_SET-constant" title="Msf::Post::Windows::Error::DS_DRA_INCOMPATIBLE_PARTIAL_SET (constant)">Error::DS_DRA_INCOMPATIBLE_PARTIAL_SET</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_INCONSISTENT_DIT-constant" title="Msf::Post::Windows::Error::DS_DRA_INCONSISTENT_DIT (constant)">Error::DS_DRA_INCONSISTENT_DIT</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_INTERNAL_ERROR-constant" title="Msf::Post::Windows::Error::DS_DRA_INTERNAL_ERROR (constant)">Error::DS_DRA_INTERNAL_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_INVALID_PARAMETER-constant" title="Msf::Post::Windows::Error::DS_DRA_INVALID_PARAMETER (constant)">Error::DS_DRA_INVALID_PARAMETER</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_MAIL_PROBLEM-constant" title="Msf::Post::Windows::Error::DS_DRA_MAIL_PROBLEM (constant)">Error::DS_DRA_MAIL_PROBLEM</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_MISSING_KRBTGT_SECRET-constant" title="Msf::Post::Windows::Error::DS_DRA_MISSING_KRBTGT_SECRET (constant)">Error::DS_DRA_MISSING_KRBTGT_SECRET</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_MISSING_PARENT-constant" title="Msf::Post::Windows::Error::DS_DRA_MISSING_PARENT (constant)">Error::DS_DRA_MISSING_PARENT</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_NAME_COLLISION-constant" title="Msf::Post::Windows::Error::DS_DRA_NAME_COLLISION (constant)">Error::DS_DRA_NAME_COLLISION</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::DS_DRA_NOT_SUPPORTED (constant)">Error::DS_DRA_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_NO_REPLICA-constant" title="Msf::Post::Windows::Error::DS_DRA_NO_REPLICA (constant)">Error::DS_DRA_NO_REPLICA</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_OBJ_IS_REP_SOURCE-constant" title="Msf::Post::Windows::Error::DS_DRA_OBJ_IS_REP_SOURCE (constant)">Error::DS_DRA_OBJ_IS_REP_SOURCE</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_OBJ_NC_MISMATCH-constant" title="Msf::Post::Windows::Error::DS_DRA_OBJ_NC_MISMATCH (constant)">Error::DS_DRA_OBJ_NC_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_OUT_OF_MEM-constant" title="Msf::Post::Windows::Error::DS_DRA_OUT_OF_MEM (constant)">Error::DS_DRA_OUT_OF_MEM</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_OUT_SCHEDULE_WINDOW-constant" title="Msf::Post::Windows::Error::DS_DRA_OUT_SCHEDULE_WINDOW (constant)">Error::DS_DRA_OUT_SCHEDULE_WINDOW</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_PREEMPTED-constant" title="Msf::Post::Windows::Error::DS_DRA_PREEMPTED (constant)">Error::DS_DRA_PREEMPTED</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_RECYCLED_TARGET-constant" title="Msf::Post::Windows::Error::DS_DRA_RECYCLED_TARGET (constant)">Error::DS_DRA_RECYCLED_TARGET</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_REF_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::DS_DRA_REF_ALREADY_EXISTS (constant)">Error::DS_DRA_REF_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_REF_NOT_FOUND-constant" title="Msf::Post::Windows::Error::DS_DRA_REF_NOT_FOUND (constant)">Error::DS_DRA_REF_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_REPL_PENDING-constant" title="Msf::Post::Windows::Error::DS_DRA_REPL_PENDING (constant)">Error::DS_DRA_REPL_PENDING</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_RPC_CANCELLED-constant" title="Msf::Post::Windows::Error::DS_DRA_RPC_CANCELLED (constant)">Error::DS_DRA_RPC_CANCELLED</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_SCHEMA_CONFLICT-constant" title="Msf::Post::Windows::Error::DS_DRA_SCHEMA_CONFLICT (constant)">Error::DS_DRA_SCHEMA_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_SCHEMA_INFO_SHIP-constant" title="Msf::Post::Windows::Error::DS_DRA_SCHEMA_INFO_SHIP (constant)">Error::DS_DRA_SCHEMA_INFO_SHIP</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_SCHEMA_MISMATCH-constant" title="Msf::Post::Windows::Error::DS_DRA_SCHEMA_MISMATCH (constant)">Error::DS_DRA_SCHEMA_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_SECRETS_DENIED-constant" title="Msf::Post::Windows::Error::DS_DRA_SECRETS_DENIED (constant)">Error::DS_DRA_SECRETS_DENIED</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_SHUTDOWN-constant" title="Msf::Post::Windows::Error::DS_DRA_SHUTDOWN (constant)">Error::DS_DRA_SHUTDOWN</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_SINK_DISABLED-constant" title="Msf::Post::Windows::Error::DS_DRA_SINK_DISABLED (constant)">Error::DS_DRA_SINK_DISABLED</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_SOURCE_DISABLED-constant" title="Msf::Post::Windows::Error::DS_DRA_SOURCE_DISABLED (constant)">Error::DS_DRA_SOURCE_DISABLED</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_SOURCE_IS_PARTIAL_REPLICA-constant" title="Msf::Post::Windows::Error::DS_DRA_SOURCE_IS_PARTIAL_REPLICA (constant)">Error::DS_DRA_SOURCE_IS_PARTIAL_REPLICA</a></span>, <span class='object_link'><a href="Error.html#DS_DRA_SOURCE_REINSTALLED-constant" title="Msf::Post::Windows::Error::DS_DRA_SOURCE_REINSTALLED (constant)">Error::DS_DRA_SOURCE_REINSTALLED</a></span>, <span class='object_link'><a href="Error.html#DS_DRS_EXTENSIONS_CHANGED-constant" title="Msf::Post::Windows::Error::DS_DRS_EXTENSIONS_CHANGED (constant)">Error::DS_DRS_EXTENSIONS_CHANGED</a></span>, <span class='object_link'><a href="Error.html#DS_DSA_MUST_BE_INT_MASTER-constant" title="Msf::Post::Windows::Error::DS_DSA_MUST_BE_INT_MASTER (constant)">Error::DS_DSA_MUST_BE_INT_MASTER</a></span>, <span class='object_link'><a href="Error.html#DS_DST_DOMAIN_NOT_NATIVE-constant" title="Msf::Post::Windows::Error::DS_DST_DOMAIN_NOT_NATIVE (constant)">Error::DS_DST_DOMAIN_NOT_NATIVE</a></span>, <span class='object_link'><a href="Error.html#DS_DST_NC_MISMATCH-constant" title="Msf::Post::Windows::Error::DS_DST_NC_MISMATCH (constant)">Error::DS_DST_NC_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_DS_REQUIRED-constant" title="Msf::Post::Windows::Error::DS_DS_REQUIRED (constant)">Error::DS_DS_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#DS_DUPLICATE_ID_FOUND-constant" title="Msf::Post::Windows::Error::DS_DUPLICATE_ID_FOUND (constant)">Error::DS_DUPLICATE_ID_FOUND</a></span>, <span class='object_link'><a href="Error.html#DS_DUP_LDAP_DISPLAY_NAME-constant" title="Msf::Post::Windows::Error::DS_DUP_LDAP_DISPLAY_NAME (constant)">Error::DS_DUP_LDAP_DISPLAY_NAME</a></span>, <span class='object_link'><a href="Error.html#DS_DUP_LINK_ID-constant" title="Msf::Post::Windows::Error::DS_DUP_LINK_ID (constant)">Error::DS_DUP_LINK_ID</a></span>, <span class='object_link'><a href="Error.html#DS_DUP_MAPI_ID-constant" title="Msf::Post::Windows::Error::DS_DUP_MAPI_ID (constant)">Error::DS_DUP_MAPI_ID</a></span>, <span class='object_link'><a href="Error.html#DS_DUP_MSDS_INTID-constant" title="Msf::Post::Windows::Error::DS_DUP_MSDS_INTID (constant)">Error::DS_DUP_MSDS_INTID</a></span>, <span class='object_link'><a href="Error.html#DS_DUP_OID-constant" title="Msf::Post::Windows::Error::DS_DUP_OID (constant)">Error::DS_DUP_OID</a></span>, <span class='object_link'><a href="Error.html#DS_DUP_RDN-constant" title="Msf::Post::Windows::Error::DS_DUP_RDN (constant)">Error::DS_DUP_RDN</a></span>, <span class='object_link'><a href="Error.html#DS_DUP_SCHEMA_ID_GUID-constant" title="Msf::Post::Windows::Error::DS_DUP_SCHEMA_ID_GUID (constant)">Error::DS_DUP_SCHEMA_ID_GUID</a></span>, <span class='object_link'><a href="Error.html#DS_ENCODING_ERROR-constant" title="Msf::Post::Windows::Error::DS_ENCODING_ERROR (constant)">Error::DS_ENCODING_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_EPOCH_MISMATCH-constant" title="Msf::Post::Windows::Error::DS_EPOCH_MISMATCH (constant)">Error::DS_EPOCH_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_EXISTING_AD_CHILD_NC-constant" title="Msf::Post::Windows::Error::DS_EXISTING_AD_CHILD_NC (constant)">Error::DS_EXISTING_AD_CHILD_NC</a></span>, <span class='object_link'><a href="Error.html#DS_EXISTS_IN_AUX_CLS-constant" title="Msf::Post::Windows::Error::DS_EXISTS_IN_AUX_CLS (constant)">Error::DS_EXISTS_IN_AUX_CLS</a></span>, <span class='object_link'><a href="Error.html#DS_EXISTS_IN_MAY_HAVE-constant" title="Msf::Post::Windows::Error::DS_EXISTS_IN_MAY_HAVE (constant)">Error::DS_EXISTS_IN_MAY_HAVE</a></span>, <span class='object_link'><a href="Error.html#DS_EXISTS_IN_MUST_HAVE-constant" title="Msf::Post::Windows::Error::DS_EXISTS_IN_MUST_HAVE (constant)">Error::DS_EXISTS_IN_MUST_HAVE</a></span>, <span class='object_link'><a href="Error.html#DS_EXISTS_IN_POSS_SUP-constant" title="Msf::Post::Windows::Error::DS_EXISTS_IN_POSS_SUP (constant)">Error::DS_EXISTS_IN_POSS_SUP</a></span>, <span class='object_link'><a href="Error.html#DS_EXISTS_IN_RDNATTID-constant" title="Msf::Post::Windows::Error::DS_EXISTS_IN_RDNATTID (constant)">Error::DS_EXISTS_IN_RDNATTID</a></span>, <span class='object_link'><a href="Error.html#DS_EXISTS_IN_SUB_CLS-constant" title="Msf::Post::Windows::Error::DS_EXISTS_IN_SUB_CLS (constant)">Error::DS_EXISTS_IN_SUB_CLS</a></span>, <span class='object_link'><a href="Error.html#DS_FILTER_UNKNOWN-constant" title="Msf::Post::Windows::Error::DS_FILTER_UNKNOWN (constant)">Error::DS_FILTER_UNKNOWN</a></span>, <span class='object_link'><a href="Error.html#DS_FILTER_USES_CONTRUCTED_ATTRS-constant" title="Msf::Post::Windows::Error::DS_FILTER_USES_CONTRUCTED_ATTRS (constant)">Error::DS_FILTER_USES_CONTRUCTED_ATTRS</a></span>, <span class='object_link'><a href="Error.html#DS_FLAT_NAME_EXISTS_IN_FOREST-constant" title="Msf::Post::Windows::Error::DS_FLAT_NAME_EXISTS_IN_FOREST (constant)">Error::DS_FLAT_NAME_EXISTS_IN_FOREST</a></span>, <span class='object_link'><a href="Error.html#DS_FOREST_VERSION_TOO_HIGH-constant" title="Msf::Post::Windows::Error::DS_FOREST_VERSION_TOO_HIGH (constant)">Error::DS_FOREST_VERSION_TOO_HIGH</a></span>, <span class='object_link'><a href="Error.html#DS_FOREST_VERSION_TOO_LOW-constant" title="Msf::Post::Windows::Error::DS_FOREST_VERSION_TOO_LOW (constant)">Error::DS_FOREST_VERSION_TOO_LOW</a></span>, <span class='object_link'><a href="Error.html#DS_GCVERIFY_ERROR-constant" title="Msf::Post::Windows::Error::DS_GCVERIFY_ERROR (constant)">Error::DS_GCVERIFY_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_GC_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::DS_GC_NOT_AVAILABLE (constant)">Error::DS_GC_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#DS_GC_REQUIRED-constant" title="Msf::Post::Windows::Error::DS_GC_REQUIRED (constant)">Error::DS_GC_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#DS_GENERIC_ERROR-constant" title="Msf::Post::Windows::Error::DS_GENERIC_ERROR (constant)">Error::DS_GENERIC_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER-constant" title="Msf::Post::Windows::Error::DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER (constant)">Error::DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER</a></span>, <span class='object_link'><a href="Error.html#DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER-constant" title="Msf::Post::Windows::Error::DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER (constant)">Error::DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER</a></span>, <span class='object_link'><a href="Error.html#DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER-constant" title="Msf::Post::Windows::Error::DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER (constant)">Error::DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER</a></span>, <span class='object_link'><a href="Error.html#DS_GOVERNSID_MISSING-constant" title="Msf::Post::Windows::Error::DS_GOVERNSID_MISSING (constant)">Error::DS_GOVERNSID_MISSING</a></span>, <span class='object_link'><a href="Error.html#DS_GROUP_CONVERSION_ERROR-constant" title="Msf::Post::Windows::Error::DS_GROUP_CONVERSION_ERROR (constant)">Error::DS_GROUP_CONVERSION_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_HAVE_PRIMARY_MEMBERS-constant" title="Msf::Post::Windows::Error::DS_HAVE_PRIMARY_MEMBERS (constant)">Error::DS_HAVE_PRIMARY_MEMBERS</a></span>, <span class='object_link'><a href="Error.html#DS_HIERARCHY_TABLE_MALLOC_FAILED-constant" title="Msf::Post::Windows::Error::DS_HIERARCHY_TABLE_MALLOC_FAILED (constant)">Error::DS_HIERARCHY_TABLE_MALLOC_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_HIERARCHY_TABLE_TOO_DEEP-constant" title="Msf::Post::Windows::Error::DS_HIERARCHY_TABLE_TOO_DEEP (constant)">Error::DS_HIERARCHY_TABLE_TOO_DEEP</a></span>, <span class='object_link'><a href="Error.html#DS_ILLEGAL_BASE_SCHEMA_MOD-constant" title="Msf::Post::Windows::Error::DS_ILLEGAL_BASE_SCHEMA_MOD (constant)">Error::DS_ILLEGAL_BASE_SCHEMA_MOD</a></span>, <span class='object_link'><a href="Error.html#DS_ILLEGAL_MOD_OPERATION-constant" title="Msf::Post::Windows::Error::DS_ILLEGAL_MOD_OPERATION (constant)">Error::DS_ILLEGAL_MOD_OPERATION</a></span>, <span class='object_link'><a href="Error.html#DS_ILLEGAL_SUPERIOR-constant" title="Msf::Post::Windows::Error::DS_ILLEGAL_SUPERIOR (constant)">Error::DS_ILLEGAL_SUPERIOR</a></span>, <span class='object_link'><a href="Error.html#DS_ILLEGAL_XDOM_MOVE_OPERATION-constant" title="Msf::Post::Windows::Error::DS_ILLEGAL_XDOM_MOVE_OPERATION (constant)">Error::DS_ILLEGAL_XDOM_MOVE_OPERATION</a></span>, <span class='object_link'><a href="Error.html#DS_INAPPROPRIATE_AUTH-constant" title="Msf::Post::Windows::Error::DS_INAPPROPRIATE_AUTH (constant)">Error::DS_INAPPROPRIATE_AUTH</a></span>, <span class='object_link'><a href="Error.html#DS_INAPPROPRIATE_MATCHING-constant" title="Msf::Post::Windows::Error::DS_INAPPROPRIATE_MATCHING (constant)">Error::DS_INAPPROPRIATE_MATCHING</a></span>, <span class='object_link'><a href="Error.html#DS_INCOMPATIBLE_CONTROLS_USED-constant" title="Msf::Post::Windows::Error::DS_INCOMPATIBLE_CONTROLS_USED (constant)">Error::DS_INCOMPATIBLE_CONTROLS_USED</a></span>, <span class='object_link'><a href="Error.html#DS_INCOMPATIBLE_VERSION-constant" title="Msf::Post::Windows::Error::DS_INCOMPATIBLE_VERSION (constant)">Error::DS_INCOMPATIBLE_VERSION</a></span>, <span class='object_link'><a href="Error.html#DS_INCORRECT_ROLE_OWNER-constant" title="Msf::Post::Windows::Error::DS_INCORRECT_ROLE_OWNER (constant)">Error::DS_INCORRECT_ROLE_OWNER</a></span>, <span class='object_link'><a href="Error.html#DS_INIT_FAILURE-constant" title="Msf::Post::Windows::Error::DS_INIT_FAILURE (constant)">Error::DS_INIT_FAILURE</a></span>, <span class='object_link'><a href="Error.html#DS_INIT_FAILURE_CONSOLE-constant" title="Msf::Post::Windows::Error::DS_INIT_FAILURE_CONSOLE (constant)">Error::DS_INIT_FAILURE_CONSOLE</a></span>, <span class='object_link'><a href="Error.html#DS_INSTALL_NO_SCH_VERSION_IN_INIFILE-constant" title="Msf::Post::Windows::Error::DS_INSTALL_NO_SCH_VERSION_IN_INIFILE (constant)">Error::DS_INSTALL_NO_SCH_VERSION_IN_INIFILE</a></span>, <span class='object_link'><a href="Error.html#DS_INSTALL_NO_SRC_SCH_VERSION-constant" title="Msf::Post::Windows::Error::DS_INSTALL_NO_SRC_SCH_VERSION (constant)">Error::DS_INSTALL_NO_SRC_SCH_VERSION</a></span>, <span class='object_link'><a href="Error.html#DS_INSTALL_SCHEMA_MISMATCH-constant" title="Msf::Post::Windows::Error::DS_INSTALL_SCHEMA_MISMATCH (constant)">Error::DS_INSTALL_SCHEMA_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT-constant" title="Msf::Post::Windows::Error::DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT (constant)">Error::DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT</a></span>, <span class='object_link'><a href="Error.html#DS_INSUFF_ACCESS_RIGHTS-constant" title="Msf::Post::Windows::Error::DS_INSUFF_ACCESS_RIGHTS (constant)">Error::DS_INSUFF_ACCESS_RIGHTS</a></span>, <span class='object_link'><a href="Error.html#DS_INTERNAL_FAILURE-constant" title="Msf::Post::Windows::Error::DS_INTERNAL_FAILURE (constant)">Error::DS_INTERNAL_FAILURE</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_ATTRIBUTE_SYNTAX-constant" title="Msf::Post::Windows::Error::DS_INVALID_ATTRIBUTE_SYNTAX (constant)">Error::DS_INVALID_ATTRIBUTE_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_DMD-constant" title="Msf::Post::Windows::Error::DS_INVALID_DMD (constant)">Error::DS_INVALID_DMD</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_DN_SYNTAX-constant" title="Msf::Post::Windows::Error::DS_INVALID_DN_SYNTAX (constant)">Error::DS_INVALID_DN_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_GROUP_TYPE-constant" title="Msf::Post::Windows::Error::DS_INVALID_GROUP_TYPE (constant)">Error::DS_INVALID_GROUP_TYPE</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_LDAP_DISPLAY_NAME-constant" title="Msf::Post::Windows::Error::DS_INVALID_LDAP_DISPLAY_NAME (constant)">Error::DS_INVALID_LDAP_DISPLAY_NAME</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_NAME_FOR_SPN-constant" title="Msf::Post::Windows::Error::DS_INVALID_NAME_FOR_SPN (constant)">Error::DS_INVALID_NAME_FOR_SPN</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_ROLE_OWNER-constant" title="Msf::Post::Windows::Error::DS_INVALID_ROLE_OWNER (constant)">Error::DS_INVALID_ROLE_OWNER</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_SCRIPT-constant" title="Msf::Post::Windows::Error::DS_INVALID_SCRIPT (constant)">Error::DS_INVALID_SCRIPT</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_SEARCH_FLAG-constant" title="Msf::Post::Windows::Error::DS_INVALID_SEARCH_FLAG (constant)">Error::DS_INVALID_SEARCH_FLAG</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_SEARCH_FLAG_SUBTREE-constant" title="Msf::Post::Windows::Error::DS_INVALID_SEARCH_FLAG_SUBTREE (constant)">Error::DS_INVALID_SEARCH_FLAG_SUBTREE</a></span>, <span class='object_link'><a href="Error.html#DS_INVALID_SEARCH_FLAG_TUPLE-constant" title="Msf::Post::Windows::Error::DS_INVALID_SEARCH_FLAG_TUPLE (constant)">Error::DS_INVALID_SEARCH_FLAG_TUPLE</a></span>, <span class='object_link'><a href="Error.html#DS_IS_LEAF-constant" title="Msf::Post::Windows::Error::DS_IS_LEAF (constant)">Error::DS_IS_LEAF</a></span>, <span class='object_link'><a href="Error.html#DS_KEY_NOT_UNIQUE-constant" title="Msf::Post::Windows::Error::DS_KEY_NOT_UNIQUE (constant)">Error::DS_KEY_NOT_UNIQUE</a></span>, <span class='object_link'><a href="Error.html#DS_LDAP_SEND_QUEUE_FULL-constant" title="Msf::Post::Windows::Error::DS_LDAP_SEND_QUEUE_FULL (constant)">Error::DS_LDAP_SEND_QUEUE_FULL</a></span>, <span class='object_link'><a href="Error.html#DS_LINK_ID_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::DS_LINK_ID_NOT_AVAILABLE (constant)">Error::DS_LINK_ID_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER-constant" title="Msf::Post::Windows::Error::DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER (constant)">Error::DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER</a></span>, <span class='object_link'><a href="Error.html#DS_LOCAL_ERROR-constant" title="Msf::Post::Windows::Error::DS_LOCAL_ERROR (constant)">Error::DS_LOCAL_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_LOCAL_MEMBER_OF_LOCAL_ONLY-constant" title="Msf::Post::Windows::Error::DS_LOCAL_MEMBER_OF_LOCAL_ONLY (constant)">Error::DS_LOCAL_MEMBER_OF_LOCAL_ONLY</a></span>, <span class='object_link'><a href="Error.html#DS_LOOKUP_FAILURE-constant" title="Msf::Post::Windows::Error::DS_LOOKUP_FAILURE (constant)">Error::DS_LOOKUP_FAILURE</a></span>, <span class='object_link'><a href="Error.html#DS_LOOP_DETECT-constant" title="Msf::Post::Windows::Error::DS_LOOP_DETECT (constant)">Error::DS_LOOP_DETECT</a></span>, <span class='object_link'><a href="Error.html#DS_LOW_DSA_VERSION-constant" title="Msf::Post::Windows::Error::DS_LOW_DSA_VERSION (constant)">Error::DS_LOW_DSA_VERSION</a></span>, <span class='object_link'><a href="Error.html#DS_MACHINE_ACCOUNT_CREATED_PRENT4-constant" title="Msf::Post::Windows::Error::DS_MACHINE_ACCOUNT_CREATED_PRENT4 (constant)">Error::DS_MACHINE_ACCOUNT_CREATED_PRENT4</a></span>, <span class='object_link'><a href="Error.html#DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED-constant" title="Msf::Post::Windows::Error::DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED (constant)">Error::DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DS_MAPI_ID_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::DS_MAPI_ID_NOT_AVAILABLE (constant)">Error::DS_MAPI_ID_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#DS_MASTERDSA_REQUIRED-constant" title="Msf::Post::Windows::Error::DS_MASTERDSA_REQUIRED (constant)">Error::DS_MASTERDSA_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#DS_MAX_OBJ_SIZE_EXCEEDED-constant" title="Msf::Post::Windows::Error::DS_MAX_OBJ_SIZE_EXCEEDED (constant)">Error::DS_MAX_OBJ_SIZE_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DS_MEMBERSHIP_EVALUATED_LOCALLY-constant" title="Msf::Post::Windows::Error::DS_MEMBERSHIP_EVALUATED_LOCALLY (constant)">Error::DS_MEMBERSHIP_EVALUATED_LOCALLY</a></span>, <span class='object_link'><a href="Error.html#DS_MISSING_EXPECTED_ATT-constant" title="Msf::Post::Windows::Error::DS_MISSING_EXPECTED_ATT (constant)">Error::DS_MISSING_EXPECTED_ATT</a></span>, <span class='object_link'><a href="Error.html#DS_MISSING_FSMO_SETTINGS-constant" title="Msf::Post::Windows::Error::DS_MISSING_FSMO_SETTINGS (constant)">Error::DS_MISSING_FSMO_SETTINGS</a></span>, <span class='object_link'><a href="Error.html#DS_MISSING_INFRASTRUCTURE_CONTAINER-constant" title="Msf::Post::Windows::Error::DS_MISSING_INFRASTRUCTURE_CONTAINER (constant)">Error::DS_MISSING_INFRASTRUCTURE_CONTAINER</a></span>, <span class='object_link'><a href="Error.html#DS_MISSING_REQUIRED_ATT-constant" title="Msf::Post::Windows::Error::DS_MISSING_REQUIRED_ATT (constant)">Error::DS_MISSING_REQUIRED_ATT</a></span>, <span class='object_link'><a href="Error.html#DS_MISSING_SUPREF-constant" title="Msf::Post::Windows::Error::DS_MISSING_SUPREF (constant)">Error::DS_MISSING_SUPREF</a></span>, <span class='object_link'><a href="Error.html#DS_MODIFYDN_DISALLOWED_BY_FLAG-constant" title="Msf::Post::Windows::Error::DS_MODIFYDN_DISALLOWED_BY_FLAG (constant)">Error::DS_MODIFYDN_DISALLOWED_BY_FLAG</a></span>, <span class='object_link'><a href="Error.html#DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE-constant" title="Msf::Post::Windows::Error::DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE (constant)">Error::DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE</a></span>, <span class='object_link'><a href="Error.html#DS_MODIFYDN_WRONG_GRANDPARENT-constant" title="Msf::Post::Windows::Error::DS_MODIFYDN_WRONG_GRANDPARENT (constant)">Error::DS_MODIFYDN_WRONG_GRANDPARENT</a></span>, <span class='object_link'><a href="Error.html#DS_MUST_BE_RUN_ON_DST_DC-constant" title="Msf::Post::Windows::Error::DS_MUST_BE_RUN_ON_DST_DC (constant)">Error::DS_MUST_BE_RUN_ON_DST_DC</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_DOMAIN_ONLY-constant" title="Msf::Post::Windows::Error::DS_NAME_DOMAIN_ONLY (constant)">Error::DS_NAME_DOMAIN_ONLY</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_ERROR_NOT_UNIQUE-constant" title="Msf::Post::Windows::Error::DS_NAME_ERROR_NOT_UNIQUE (constant)">Error::DS_NAME_ERROR_NOT_UNIQUE</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_NOT_FOUND-constant" title="Msf::Post::Windows::Error::DS_NAME_NOT_FOUND (constant)">Error::DS_NAME_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_NOT_UNIQUE-constant" title="Msf::Post::Windows::Error::DS_NAME_NOT_UNIQUE (constant)">Error::DS_NAME_NOT_UNIQUE</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_NO_MAPPING-constant" title="Msf::Post::Windows::Error::DS_NAME_NO_MAPPING (constant)">Error::DS_NAME_NO_MAPPING</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_NO_SYNTACTICAL_MAPPING-constant" title="Msf::Post::Windows::Error::DS_NAME_NO_SYNTACTICAL_MAPPING (constant)">Error::DS_NAME_NO_SYNTACTICAL_MAPPING</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_REFERENCE_INVALID-constant" title="Msf::Post::Windows::Error::DS_NAME_REFERENCE_INVALID (constant)">Error::DS_NAME_REFERENCE_INVALID</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_RESOLVING-constant" title="Msf::Post::Windows::Error::DS_NAME_RESOLVING (constant)">Error::DS_NAME_RESOLVING</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_TOO_LONG-constant" title="Msf::Post::Windows::Error::DS_NAME_TOO_LONG (constant)">Error::DS_NAME_TOO_LONG</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_TOO_MANY_PARTS-constant" title="Msf::Post::Windows::Error::DS_NAME_TOO_MANY_PARTS (constant)">Error::DS_NAME_TOO_MANY_PARTS</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_TRUST_REFERRAL-constant" title="Msf::Post::Windows::Error::DS_NAME_TRUST_REFERRAL (constant)">Error::DS_NAME_TRUST_REFERRAL</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_TYPE_UNKNOWN-constant" title="Msf::Post::Windows::Error::DS_NAME_TYPE_UNKNOWN (constant)">Error::DS_NAME_TYPE_UNKNOWN</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_UNPARSEABLE-constant" title="Msf::Post::Windows::Error::DS_NAME_UNPARSEABLE (constant)">Error::DS_NAME_UNPARSEABLE</a></span>, <span class='object_link'><a href="Error.html#DS_NAME_VALUE_TOO_LONG-constant" title="Msf::Post::Windows::Error::DS_NAME_VALUE_TOO_LONG (constant)">Error::DS_NAME_VALUE_TOO_LONG</a></span>, <span class='object_link'><a href="Error.html#DS_NAMING_MASTER_GC-constant" title="Msf::Post::Windows::Error::DS_NAMING_MASTER_GC (constant)">Error::DS_NAMING_MASTER_GC</a></span>, <span class='object_link'><a href="Error.html#DS_NAMING_VIOLATION-constant" title="Msf::Post::Windows::Error::DS_NAMING_VIOLATION (constant)">Error::DS_NAMING_VIOLATION</a></span>, <span class='object_link'><a href="Error.html#DS_NCNAME_MISSING_CR_REF-constant" title="Msf::Post::Windows::Error::DS_NCNAME_MISSING_CR_REF (constant)">Error::DS_NCNAME_MISSING_CR_REF</a></span>, <span class='object_link'><a href="Error.html#DS_NCNAME_MUST_BE_NC-constant" title="Msf::Post::Windows::Error::DS_NCNAME_MUST_BE_NC (constant)">Error::DS_NCNAME_MUST_BE_NC</a></span>, <span class='object_link'><a href="Error.html#DS_NC_MUST_HAVE_NC_PARENT-constant" title="Msf::Post::Windows::Error::DS_NC_MUST_HAVE_NC_PARENT (constant)">Error::DS_NC_MUST_HAVE_NC_PARENT</a></span>, <span class='object_link'><a href="Error.html#DS_NC_STILL_HAS_DSAS-constant" title="Msf::Post::Windows::Error::DS_NC_STILL_HAS_DSAS (constant)">Error::DS_NC_STILL_HAS_DSAS</a></span>, <span class='object_link'><a href="Error.html#DS_NONEXISTENT_MAY_HAVE-constant" title="Msf::Post::Windows::Error::DS_NONEXISTENT_MAY_HAVE (constant)">Error::DS_NONEXISTENT_MAY_HAVE</a></span>, <span class='object_link'><a href="Error.html#DS_NONEXISTENT_MUST_HAVE-constant" title="Msf::Post::Windows::Error::DS_NONEXISTENT_MUST_HAVE (constant)">Error::DS_NONEXISTENT_MUST_HAVE</a></span>, <span class='object_link'><a href="Error.html#DS_NONEXISTENT_POSS_SUP-constant" title="Msf::Post::Windows::Error::DS_NONEXISTENT_POSS_SUP (constant)">Error::DS_NONEXISTENT_POSS_SUP</a></span>, <span class='object_link'><a href="Error.html#DS_NONSAFE_SCHEMA_CHANGE-constant" title="Msf::Post::Windows::Error::DS_NONSAFE_SCHEMA_CHANGE (constant)">Error::DS_NONSAFE_SCHEMA_CHANGE</a></span>, <span class='object_link'><a href="Error.html#DS_NON_ASQ_SEARCH-constant" title="Msf::Post::Windows::Error::DS_NON_ASQ_SEARCH (constant)">Error::DS_NON_ASQ_SEARCH</a></span>, <span class='object_link'><a href="Error.html#DS_NON_BASE_SEARCH-constant" title="Msf::Post::Windows::Error::DS_NON_BASE_SEARCH (constant)">Error::DS_NON_BASE_SEARCH</a></span>, <span class='object_link'><a href="Error.html#DS_NOTIFY_FILTER_TOO_COMPLEX-constant" title="Msf::Post::Windows::Error::DS_NOTIFY_FILTER_TOO_COMPLEX (constant)">Error::DS_NOTIFY_FILTER_TOO_COMPLEX</a></span>, <span class='object_link'><a href="Error.html#DS_NOT_AN_OBJECT-constant" title="Msf::Post::Windows::Error::DS_NOT_AN_OBJECT (constant)">Error::DS_NOT_AN_OBJECT</a></span>, <span class='object_link'><a href="Error.html#DS_NOT_AUTHORITIVE_FOR_DST_NC-constant" title="Msf::Post::Windows::Error::DS_NOT_AUTHORITIVE_FOR_DST_NC (constant)">Error::DS_NOT_AUTHORITIVE_FOR_DST_NC</a></span>, <span class='object_link'><a href="Error.html#DS_NOT_CLOSEST-constant" title="Msf::Post::Windows::Error::DS_NOT_CLOSEST (constant)">Error::DS_NOT_CLOSEST</a></span>, <span class='object_link'><a href="Error.html#DS_NOT_INSTALLED-constant" title="Msf::Post::Windows::Error::DS_NOT_INSTALLED (constant)">Error::DS_NOT_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#DS_NOT_ON_BACKLINK-constant" title="Msf::Post::Windows::Error::DS_NOT_ON_BACKLINK (constant)">Error::DS_NOT_ON_BACKLINK</a></span>, <span class='object_link'><a href="Error.html#DS_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::DS_NOT_SUPPORTED (constant)">Error::DS_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#DS_NOT_SUPPORTED_SORT_ORDER-constant" title="Msf::Post::Windows::Error::DS_NOT_SUPPORTED_SORT_ORDER (constant)">Error::DS_NOT_SUPPORTED_SORT_ORDER</a></span>, <span class='object_link'><a href="Error.html#DS_NO_ATTRIBUTE_OR_VALUE-constant" title="Msf::Post::Windows::Error::DS_NO_ATTRIBUTE_OR_VALUE (constant)">Error::DS_NO_ATTRIBUTE_OR_VALUE</a></span>, <span class='object_link'><a href="Error.html#DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN-constant" title="Msf::Post::Windows::Error::DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN (constant)">Error::DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN</a></span>, <span class='object_link'><a href="Error.html#DS_NO_CHAINED_EVAL-constant" title="Msf::Post::Windows::Error::DS_NO_CHAINED_EVAL (constant)">Error::DS_NO_CHAINED_EVAL</a></span>, <span class='object_link'><a href="Error.html#DS_NO_CHAINING-constant" title="Msf::Post::Windows::Error::DS_NO_CHAINING (constant)">Error::DS_NO_CHAINING</a></span>, <span class='object_link'><a href="Error.html#DS_NO_CHECKPOINT_WITH_PDC-constant" title="Msf::Post::Windows::Error::DS_NO_CHECKPOINT_WITH_PDC (constant)">Error::DS_NO_CHECKPOINT_WITH_PDC</a></span>, <span class='object_link'><a href="Error.html#DS_NO_CROSSREF_FOR_NC-constant" title="Msf::Post::Windows::Error::DS_NO_CROSSREF_FOR_NC (constant)">Error::DS_NO_CROSSREF_FOR_NC</a></span>, <span class='object_link'><a href="Error.html#DS_NO_DELETED_NAME-constant" title="Msf::Post::Windows::Error::DS_NO_DELETED_NAME (constant)">Error::DS_NO_DELETED_NAME</a></span>, <span class='object_link'><a href="Error.html#DS_NO_FPO_IN_UNIVERSAL_GROUPS-constant" title="Msf::Post::Windows::Error::DS_NO_FPO_IN_UNIVERSAL_GROUPS (constant)">Error::DS_NO_FPO_IN_UNIVERSAL_GROUPS</a></span>, <span class='object_link'><a href="Error.html#DS_NO_MORE_RIDS-constant" title="Msf::Post::Windows::Error::DS_NO_MORE_RIDS (constant)">Error::DS_NO_MORE_RIDS</a></span>, <span class='object_link'><a href="Error.html#DS_NO_MSDS_INTID-constant" title="Msf::Post::Windows::Error::DS_NO_MSDS_INTID (constant)">Error::DS_NO_MSDS_INTID</a></span>, <span class='object_link'><a href="Error.html#DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN-constant" title="Msf::Post::Windows::Error::DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN (constant)">Error::DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN</a></span>, <span class='object_link'><a href="Error.html#DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN-constant" title="Msf::Post::Windows::Error::DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN (constant)">Error::DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN</a></span>, <span class='object_link'><a href="Error.html#DS_NO_NTDSA_OBJECT-constant" title="Msf::Post::Windows::Error::DS_NO_NTDSA_OBJECT (constant)">Error::DS_NO_NTDSA_OBJECT</a></span>, <span class='object_link'><a href="Error.html#DS_NO_OBJECT_MOVE_IN_SCHEMA_NC-constant" title="Msf::Post::Windows::Error::DS_NO_OBJECT_MOVE_IN_SCHEMA_NC (constant)">Error::DS_NO_OBJECT_MOVE_IN_SCHEMA_NC</a></span>, <span class='object_link'><a href="Error.html#DS_NO_PARENT_OBJECT-constant" title="Msf::Post::Windows::Error::DS_NO_PARENT_OBJECT (constant)">Error::DS_NO_PARENT_OBJECT</a></span>, <span class='object_link'><a href="Error.html#DS_NO_PKT_PRIVACY_ON_CONNECTION-constant" title="Msf::Post::Windows::Error::DS_NO_PKT_PRIVACY_ON_CONNECTION (constant)">Error::DS_NO_PKT_PRIVACY_ON_CONNECTION</a></span>, <span class='object_link'><a href="Error.html#DS_NO_RDN_DEFINED_IN_SCHEMA-constant" title="Msf::Post::Windows::Error::DS_NO_RDN_DEFINED_IN_SCHEMA (constant)">Error::DS_NO_RDN_DEFINED_IN_SCHEMA</a></span>, <span class='object_link'><a href="Error.html#DS_NO_REF_DOMAIN-constant" title="Msf::Post::Windows::Error::DS_NO_REF_DOMAIN (constant)">Error::DS_NO_REF_DOMAIN</a></span>, <span class='object_link'><a href="Error.html#DS_NO_REQUESTED_ATTS_FOUND-constant" title="Msf::Post::Windows::Error::DS_NO_REQUESTED_ATTS_FOUND (constant)">Error::DS_NO_REQUESTED_ATTS_FOUND</a></span>, <span class='object_link'><a href="Error.html#DS_NO_RESULTS_RETURNED-constant" title="Msf::Post::Windows::Error::DS_NO_RESULTS_RETURNED (constant)">Error::DS_NO_RESULTS_RETURNED</a></span>, <span class='object_link'><a href="Error.html#DS_NO_RIDS_ALLOCATED-constant" title="Msf::Post::Windows::Error::DS_NO_RIDS_ALLOCATED (constant)">Error::DS_NO_RIDS_ALLOCATED</a></span>, <span class='object_link'><a href="Error.html#DS_NO_SERVER_OBJECT-constant" title="Msf::Post::Windows::Error::DS_NO_SERVER_OBJECT (constant)">Error::DS_NO_SERVER_OBJECT</a></span>, <span class='object_link'><a href="Error.html#DS_NO_SUCH_OBJECT-constant" title="Msf::Post::Windows::Error::DS_NO_SUCH_OBJECT (constant)">Error::DS_NO_SUCH_OBJECT</a></span>, <span class='object_link'><a href="Error.html#DS_NO_TREE_DELETE_ABOVE_NC-constant" title="Msf::Post::Windows::Error::DS_NO_TREE_DELETE_ABOVE_NC (constant)">Error::DS_NO_TREE_DELETE_ABOVE_NC</a></span>, <span class='object_link'><a href="Error.html#DS_NTDSCRIPT_PROCESS_ERROR-constant" title="Msf::Post::Windows::Error::DS_NTDSCRIPT_PROCESS_ERROR (constant)">Error::DS_NTDSCRIPT_PROCESS_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_NTDSCRIPT_SYNTAX_ERROR-constant" title="Msf::Post::Windows::Error::DS_NTDSCRIPT_SYNTAX_ERROR (constant)">Error::DS_NTDSCRIPT_SYNTAX_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_OBJECT_CLASS_REQUIRED-constant" title="Msf::Post::Windows::Error::DS_OBJECT_CLASS_REQUIRED (constant)">Error::DS_OBJECT_CLASS_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#DS_OBJECT_RESULTS_TOO_LARGE-constant" title="Msf::Post::Windows::Error::DS_OBJECT_RESULTS_TOO_LARGE (constant)">Error::DS_OBJECT_RESULTS_TOO_LARGE</a></span>, <span class='object_link'><a href="Error.html#DS_OBJ_CLASS_NOT_DEFINED-constant" title="Msf::Post::Windows::Error::DS_OBJ_CLASS_NOT_DEFINED (constant)">Error::DS_OBJ_CLASS_NOT_DEFINED</a></span>, <span class='object_link'><a href="Error.html#DS_OBJ_CLASS_NOT_SUBCLASS-constant" title="Msf::Post::Windows::Error::DS_OBJ_CLASS_NOT_SUBCLASS (constant)">Error::DS_OBJ_CLASS_NOT_SUBCLASS</a></span>, <span class='object_link'><a href="Error.html#DS_OBJ_CLASS_VIOLATION-constant" title="Msf::Post::Windows::Error::DS_OBJ_CLASS_VIOLATION (constant)">Error::DS_OBJ_CLASS_VIOLATION</a></span>, <span class='object_link'><a href="Error.html#DS_OBJ_GUID_EXISTS-constant" title="Msf::Post::Windows::Error::DS_OBJ_GUID_EXISTS (constant)">Error::DS_OBJ_GUID_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DS_OBJ_NOT_FOUND-constant" title="Msf::Post::Windows::Error::DS_OBJ_NOT_FOUND (constant)">Error::DS_OBJ_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#DS_OBJ_STRING_NAME_EXISTS-constant" title="Msf::Post::Windows::Error::DS_OBJ_STRING_NAME_EXISTS (constant)">Error::DS_OBJ_STRING_NAME_EXISTS</a></span>, <span class='object_link'><a href="Error.html#DS_OBJ_TOO_LARGE-constant" title="Msf::Post::Windows::Error::DS_OBJ_TOO_LARGE (constant)">Error::DS_OBJ_TOO_LARGE</a></span>, <span class='object_link'><a href="Error.html#DS_OFFSET_RANGE_ERROR-constant" title="Msf::Post::Windows::Error::DS_OFFSET_RANGE_ERROR (constant)">Error::DS_OFFSET_RANGE_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS-constant" title="Msf::Post::Windows::Error::DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS (constant)">Error::DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS</a></span>, <span class='object_link'><a href="Error.html#DS_OID_NOT_FOUND-constant" title="Msf::Post::Windows::Error::DS_OID_NOT_FOUND (constant)">Error::DS_OID_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#DS_OPERATIONS_ERROR-constant" title="Msf::Post::Windows::Error::DS_OPERATIONS_ERROR (constant)">Error::DS_OPERATIONS_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_OUT_OF_SCOPE-constant" title="Msf::Post::Windows::Error::DS_OUT_OF_SCOPE (constant)">Error::DS_OUT_OF_SCOPE</a></span>, <span class='object_link'><a href="Error.html#DS_OUT_OF_VERSION_STORE-constant" title="Msf::Post::Windows::Error::DS_OUT_OF_VERSION_STORE (constant)">Error::DS_OUT_OF_VERSION_STORE</a></span>, <span class='object_link'><a href="Error.html#DS_PARAM_ERROR-constant" title="Msf::Post::Windows::Error::DS_PARAM_ERROR (constant)">Error::DS_PARAM_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_PARENT_IS_AN_ALIAS-constant" title="Msf::Post::Windows::Error::DS_PARENT_IS_AN_ALIAS (constant)">Error::DS_PARENT_IS_AN_ALIAS</a></span>, <span class='object_link'><a href="Error.html#DS_PDC_OPERATION_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::DS_PDC_OPERATION_IN_PROGRESS (constant)">Error::DS_PDC_OPERATION_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#DS_POLICY_NOT_KNOWN-constant" title="Msf::Post::Windows::Error::DS_POLICY_NOT_KNOWN (constant)">Error::DS_POLICY_NOT_KNOWN</a></span>, <span class='object_link'><a href="Error.html#DS_PROTOCOL_ERROR-constant" title="Msf::Post::Windows::Error::DS_PROTOCOL_ERROR (constant)">Error::DS_PROTOCOL_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_RANGE_CONSTRAINT-constant" title="Msf::Post::Windows::Error::DS_RANGE_CONSTRAINT (constant)">Error::DS_RANGE_CONSTRAINT</a></span>, <span class='object_link'><a href="Error.html#DS_RDN_DOESNT_MATCH_SCHEMA-constant" title="Msf::Post::Windows::Error::DS_RDN_DOESNT_MATCH_SCHEMA (constant)">Error::DS_RDN_DOESNT_MATCH_SCHEMA</a></span>, <span class='object_link'><a href="Error.html#DS_RECALCSCHEMA_FAILED-constant" title="Msf::Post::Windows::Error::DS_RECALCSCHEMA_FAILED (constant)">Error::DS_RECALCSCHEMA_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_REFERRAL-constant" title="Msf::Post::Windows::Error::DS_REFERRAL (constant)">Error::DS_REFERRAL</a></span>, <span class='object_link'><a href="Error.html#DS_REFERRAL_LIMIT_EXCEEDED-constant" title="Msf::Post::Windows::Error::DS_REFERRAL_LIMIT_EXCEEDED (constant)">Error::DS_REFERRAL_LIMIT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DS_REFUSING_FSMO_ROLES-constant" title="Msf::Post::Windows::Error::DS_REFUSING_FSMO_ROLES (constant)">Error::DS_REFUSING_FSMO_ROLES</a></span>, <span class='object_link'><a href="Error.html#DS_REMOTE_CROSSREF_OP_FAILED-constant" title="Msf::Post::Windows::Error::DS_REMOTE_CROSSREF_OP_FAILED (constant)">Error::DS_REMOTE_CROSSREF_OP_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_REPLICATOR_ONLY-constant" title="Msf::Post::Windows::Error::DS_REPLICATOR_ONLY (constant)">Error::DS_REPLICATOR_ONLY</a></span>, <span class='object_link'><a href="Error.html#DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR-constant" title="Msf::Post::Windows::Error::DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR (constant)">Error::DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR</a></span>, <span class='object_link'><a href="Error.html#DS_REPL_LIFETIME_EXCEEDED-constant" title="Msf::Post::Windows::Error::DS_REPL_LIFETIME_EXCEEDED (constant)">Error::DS_REPL_LIFETIME_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DS_RESERVED_LINK_ID-constant" title="Msf::Post::Windows::Error::DS_RESERVED_LINK_ID (constant)">Error::DS_RESERVED_LINK_ID</a></span>, <span class='object_link'><a href="Error.html#DS_RESERVED_MAPI_ID-constant" title="Msf::Post::Windows::Error::DS_RESERVED_MAPI_ID (constant)">Error::DS_RESERVED_MAPI_ID</a></span>, <span class='object_link'><a href="Error.html#DS_RIDMGR_INIT_ERROR-constant" title="Msf::Post::Windows::Error::DS_RIDMGR_INIT_ERROR (constant)">Error::DS_RIDMGR_INIT_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_ROLE_NOT_VERIFIED-constant" title="Msf::Post::Windows::Error::DS_ROLE_NOT_VERIFIED (constant)">Error::DS_ROLE_NOT_VERIFIED</a></span>, <span class='object_link'><a href="Error.html#DS_ROOT_CANT_BE_SUBREF-constant" title="Msf::Post::Windows::Error::DS_ROOT_CANT_BE_SUBREF (constant)">Error::DS_ROOT_CANT_BE_SUBREF</a></span>, <span class='object_link'><a href="Error.html#DS_ROOT_MUST_BE_NC-constant" title="Msf::Post::Windows::Error::DS_ROOT_MUST_BE_NC (constant)">Error::DS_ROOT_MUST_BE_NC</a></span>, <span class='object_link'><a href="Error.html#DS_ROOT_REQUIRES_CLASS_TOP-constant" title="Msf::Post::Windows::Error::DS_ROOT_REQUIRES_CLASS_TOP (constant)">Error::DS_ROOT_REQUIRES_CLASS_TOP</a></span>, <span class='object_link'><a href="Error.html#DS_SAM_INIT_FAILURE-constant" title="Msf::Post::Windows::Error::DS_SAM_INIT_FAILURE (constant)">Error::DS_SAM_INIT_FAILURE</a></span>, <span class='object_link'><a href="Error.html#DS_SAM_INIT_FAILURE_CONSOLE-constant" title="Msf::Post::Windows::Error::DS_SAM_INIT_FAILURE_CONSOLE (constant)">Error::DS_SAM_INIT_FAILURE_CONSOLE</a></span>, <span class='object_link'><a href="Error.html#DS_SAM_NEED_BOOTKEY_FLOPPY-constant" title="Msf::Post::Windows::Error::DS_SAM_NEED_BOOTKEY_FLOPPY (constant)">Error::DS_SAM_NEED_BOOTKEY_FLOPPY</a></span>, <span class='object_link'><a href="Error.html#DS_SAM_NEED_BOOTKEY_PASSWORD-constant" title="Msf::Post::Windows::Error::DS_SAM_NEED_BOOTKEY_PASSWORD (constant)">Error::DS_SAM_NEED_BOOTKEY_PASSWORD</a></span>, <span class='object_link'><a href="Error.html#DS_SCHEMA_ALLOC_FAILED-constant" title="Msf::Post::Windows::Error::DS_SCHEMA_ALLOC_FAILED (constant)">Error::DS_SCHEMA_ALLOC_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_SCHEMA_NOT_LOADED-constant" title="Msf::Post::Windows::Error::DS_SCHEMA_NOT_LOADED (constant)">Error::DS_SCHEMA_NOT_LOADED</a></span>, <span class='object_link'><a href="Error.html#DS_SCHEMA_UPDATE_DISALLOWED-constant" title="Msf::Post::Windows::Error::DS_SCHEMA_UPDATE_DISALLOWED (constant)">Error::DS_SCHEMA_UPDATE_DISALLOWED</a></span>, <span class='object_link'><a href="Error.html#DS_SECURITY_CHECKING_ERROR-constant" title="Msf::Post::Windows::Error::DS_SECURITY_CHECKING_ERROR (constant)">Error::DS_SECURITY_CHECKING_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_SECURITY_ILLEGAL_MODIFY-constant" title="Msf::Post::Windows::Error::DS_SECURITY_ILLEGAL_MODIFY (constant)">Error::DS_SECURITY_ILLEGAL_MODIFY</a></span>, <span class='object_link'><a href="Error.html#DS_SEC_DESC_INVALID-constant" title="Msf::Post::Windows::Error::DS_SEC_DESC_INVALID (constant)">Error::DS_SEC_DESC_INVALID</a></span>, <span class='object_link'><a href="Error.html#DS_SEC_DESC_TOO_SHORT-constant" title="Msf::Post::Windows::Error::DS_SEC_DESC_TOO_SHORT (constant)">Error::DS_SEC_DESC_TOO_SHORT</a></span>, <span class='object_link'><a href="Error.html#DS_SEMANTIC_ATT_TEST-constant" title="Msf::Post::Windows::Error::DS_SEMANTIC_ATT_TEST (constant)">Error::DS_SEMANTIC_ATT_TEST</a></span>, <span class='object_link'><a href="Error.html#DS_SENSITIVE_GROUP_VIOLATION-constant" title="Msf::Post::Windows::Error::DS_SENSITIVE_GROUP_VIOLATION (constant)">Error::DS_SENSITIVE_GROUP_VIOLATION</a></span>, <span class='object_link'><a href="Error.html#DS_SERVER_DOWN-constant" title="Msf::Post::Windows::Error::DS_SERVER_DOWN (constant)">Error::DS_SERVER_DOWN</a></span>, <span class='object_link'><a href="Error.html#DS_SHUTTING_DOWN-constant" title="Msf::Post::Windows::Error::DS_SHUTTING_DOWN (constant)">Error::DS_SHUTTING_DOWN</a></span>, <span class='object_link'><a href="Error.html#DS_SINGLE_USER_MODE_FAILED-constant" title="Msf::Post::Windows::Error::DS_SINGLE_USER_MODE_FAILED (constant)">Error::DS_SINGLE_USER_MODE_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_SINGLE_VALUE_CONSTRAINT-constant" title="Msf::Post::Windows::Error::DS_SINGLE_VALUE_CONSTRAINT (constant)">Error::DS_SINGLE_VALUE_CONSTRAINT</a></span>, <span class='object_link'><a href="Error.html#DS_SIZELIMIT_EXCEEDED-constant" title="Msf::Post::Windows::Error::DS_SIZELIMIT_EXCEEDED (constant)">Error::DS_SIZELIMIT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DS_SORT_CONTROL_MISSING-constant" title="Msf::Post::Windows::Error::DS_SORT_CONTROL_MISSING (constant)">Error::DS_SORT_CONTROL_MISSING</a></span>, <span class='object_link'><a href="Error.html#DS_SOURCE_AUDITING_NOT_ENABLED-constant" title="Msf::Post::Windows::Error::DS_SOURCE_AUDITING_NOT_ENABLED (constant)">Error::DS_SOURCE_AUDITING_NOT_ENABLED</a></span>, <span class='object_link'><a href="Error.html#DS_SOURCE_DOMAIN_IN_FOREST-constant" title="Msf::Post::Windows::Error::DS_SOURCE_DOMAIN_IN_FOREST (constant)">Error::DS_SOURCE_DOMAIN_IN_FOREST</a></span>, <span class='object_link'><a href="Error.html#DS_SRC_AND_DST_NC_IDENTICAL-constant" title="Msf::Post::Windows::Error::DS_SRC_AND_DST_NC_IDENTICAL (constant)">Error::DS_SRC_AND_DST_NC_IDENTICAL</a></span>, <span class='object_link'><a href="Error.html#DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH-constant" title="Msf::Post::Windows::Error::DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH (constant)">Error::DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_SRC_DC_MUST_BE_SP4_OR_GREATER-constant" title="Msf::Post::Windows::Error::DS_SRC_DC_MUST_BE_SP4_OR_GREATER (constant)">Error::DS_SRC_DC_MUST_BE_SP4_OR_GREATER</a></span>, <span class='object_link'><a href="Error.html#DS_SRC_GUID_MISMATCH-constant" title="Msf::Post::Windows::Error::DS_SRC_GUID_MISMATCH (constant)">Error::DS_SRC_GUID_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_SRC_NAME_MISMATCH-constant" title="Msf::Post::Windows::Error::DS_SRC_NAME_MISMATCH (constant)">Error::DS_SRC_NAME_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_SRC_OBJ_NOT_GROUP_OR_USER-constant" title="Msf::Post::Windows::Error::DS_SRC_OBJ_NOT_GROUP_OR_USER (constant)">Error::DS_SRC_OBJ_NOT_GROUP_OR_USER</a></span>, <span class='object_link'><a href="Error.html#DS_SRC_SID_EXISTS_IN_FOREST-constant" title="Msf::Post::Windows::Error::DS_SRC_SID_EXISTS_IN_FOREST (constant)">Error::DS_SRC_SID_EXISTS_IN_FOREST</a></span>, <span class='object_link'><a href="Error.html#DS_STRING_SD_CONVERSION_FAILED-constant" title="Msf::Post::Windows::Error::DS_STRING_SD_CONVERSION_FAILED (constant)">Error::DS_STRING_SD_CONVERSION_FAILED</a></span>, <span class='object_link'><a href="Error.html#DS_STRONG_AUTH_REQUIRED-constant" title="Msf::Post::Windows::Error::DS_STRONG_AUTH_REQUIRED (constant)">Error::DS_STRONG_AUTH_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#DS_SUBREF_MUST_HAVE_PARENT-constant" title="Msf::Post::Windows::Error::DS_SUBREF_MUST_HAVE_PARENT (constant)">Error::DS_SUBREF_MUST_HAVE_PARENT</a></span>, <span class='object_link'><a href="Error.html#DS_SUBTREE_NOTIFY_NOT_NC_HEAD-constant" title="Msf::Post::Windows::Error::DS_SUBTREE_NOTIFY_NOT_NC_HEAD (constant)">Error::DS_SUBTREE_NOTIFY_NOT_NC_HEAD</a></span>, <span class='object_link'><a href="Error.html#DS_SUB_CLS_TEST_FAIL-constant" title="Msf::Post::Windows::Error::DS_SUB_CLS_TEST_FAIL (constant)">Error::DS_SUB_CLS_TEST_FAIL</a></span>, <span class='object_link'><a href="Error.html#DS_SYNTAX_MISMATCH-constant" title="Msf::Post::Windows::Error::DS_SYNTAX_MISMATCH (constant)">Error::DS_SYNTAX_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#DS_THREAD_LIMIT_EXCEEDED-constant" title="Msf::Post::Windows::Error::DS_THREAD_LIMIT_EXCEEDED (constant)">Error::DS_THREAD_LIMIT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DS_TIMELIMIT_EXCEEDED-constant" title="Msf::Post::Windows::Error::DS_TIMELIMIT_EXCEEDED (constant)">Error::DS_TIMELIMIT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#DS_TREE_DELETE_NOT_FINISHED-constant" title="Msf::Post::Windows::Error::DS_TREE_DELETE_NOT_FINISHED (constant)">Error::DS_TREE_DELETE_NOT_FINISHED</a></span>, <span class='object_link'><a href="Error.html#DS_UNABLE_TO_SURRENDER_ROLES-constant" title="Msf::Post::Windows::Error::DS_UNABLE_TO_SURRENDER_ROLES (constant)">Error::DS_UNABLE_TO_SURRENDER_ROLES</a></span>, <span class='object_link'><a href="Error.html#DS_UNAVAILABLE-constant" title="Msf::Post::Windows::Error::DS_UNAVAILABLE (constant)">Error::DS_UNAVAILABLE</a></span>, <span class='object_link'><a href="Error.html#DS_UNAVAILABLE_CRIT_EXTENSION-constant" title="Msf::Post::Windows::Error::DS_UNAVAILABLE_CRIT_EXTENSION (constant)">Error::DS_UNAVAILABLE_CRIT_EXTENSION</a></span>, <span class='object_link'><a href="Error.html#DS_UNICODEPWD_NOT_IN_QUOTES-constant" title="Msf::Post::Windows::Error::DS_UNICODEPWD_NOT_IN_QUOTES (constant)">Error::DS_UNICODEPWD_NOT_IN_QUOTES</a></span>, <span class='object_link'><a href="Error.html#DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER-constant" title="Msf::Post::Windows::Error::DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER (constant)">Error::DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER</a></span>, <span class='object_link'><a href="Error.html#DS_UNKNOWN_ERROR-constant" title="Msf::Post::Windows::Error::DS_UNKNOWN_ERROR (constant)">Error::DS_UNKNOWN_ERROR</a></span>, <span class='object_link'><a href="Error.html#DS_UNKNOWN_OPERATION-constant" title="Msf::Post::Windows::Error::DS_UNKNOWN_OPERATION (constant)">Error::DS_UNKNOWN_OPERATION</a></span>, <span class='object_link'><a href="Error.html#DS_UNWILLING_TO_PERFORM-constant" title="Msf::Post::Windows::Error::DS_UNWILLING_TO_PERFORM (constant)">Error::DS_UNWILLING_TO_PERFORM</a></span>, <span class='object_link'><a href="Error.html#DS_USER_BUFFER_TO_SMALL-constant" title="Msf::Post::Windows::Error::DS_USER_BUFFER_TO_SMALL (constant)">Error::DS_USER_BUFFER_TO_SMALL</a></span>, <span class='object_link'><a href="Error.html#DS_VERSION_CHECK_FAILURE-constant" title="Msf::Post::Windows::Error::DS_VERSION_CHECK_FAILURE (constant)">Error::DS_VERSION_CHECK_FAILURE</a></span>, <span class='object_link'><a href="Error.html#DS_WKO_CONTAINER_CANNOT_BE_SPECIAL-constant" title="Msf::Post::Windows::Error::DS_WKO_CONTAINER_CANNOT_BE_SPECIAL (constant)">Error::DS_WKO_CONTAINER_CANNOT_BE_SPECIAL</a></span>, <span class='object_link'><a href="Error.html#DS_WRONG_LINKED_ATT_SYNTAX-constant" title="Msf::Post::Windows::Error::DS_WRONG_LINKED_ATT_SYNTAX (constant)">Error::DS_WRONG_LINKED_ATT_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#DS_WRONG_OM_OBJ_CLASS-constant" title="Msf::Post::Windows::Error::DS_WRONG_OM_OBJ_CLASS (constant)">Error::DS_WRONG_OM_OBJ_CLASS</a></span>, <span class='object_link'><a href="Error.html#DUPLICATE_SERVICE_NAME-constant" title="Msf::Post::Windows::Error::DUPLICATE_SERVICE_NAME (constant)">Error::DUPLICATE_SERVICE_NAME</a></span>, <span class='object_link'><a href="Error.html#DUPLICATE_TAG-constant" title="Msf::Post::Windows::Error::DUPLICATE_TAG (constant)">Error::DUPLICATE_TAG</a></span>, <span class='object_link'><a href="Error.html#DUP_DOMAINNAME-constant" title="Msf::Post::Windows::Error::DUP_DOMAINNAME (constant)">Error::DUP_DOMAINNAME</a></span>, <span class='object_link'><a href="Error.html#DUP_NAME-constant" title="Msf::Post::Windows::Error::DUP_NAME (constant)">Error::DUP_NAME</a></span>, <span class='object_link'><a href="Error.html#DYNLINK_FROM_INVALID_RING-constant" title="Msf::Post::Windows::Error::DYNLINK_FROM_INVALID_RING (constant)">Error::DYNLINK_FROM_INVALID_RING</a></span>, <span class='object_link'><a href="Error.html#EAS_DIDNT_FIT-constant" title="Msf::Post::Windows::Error::EAS_DIDNT_FIT (constant)">Error::EAS_DIDNT_FIT</a></span>, <span class='object_link'><a href="Error.html#EAS_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::EAS_NOT_SUPPORTED (constant)">Error::EAS_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#EA_ACCESS_DENIED-constant" title="Msf::Post::Windows::Error::EA_ACCESS_DENIED (constant)">Error::EA_ACCESS_DENIED</a></span>, <span class='object_link'><a href="Error.html#EA_FILE_CORRUPT-constant" title="Msf::Post::Windows::Error::EA_FILE_CORRUPT (constant)">Error::EA_FILE_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#EA_LIST_INCONSISTENT-constant" title="Msf::Post::Windows::Error::EA_LIST_INCONSISTENT (constant)">Error::EA_LIST_INCONSISTENT</a></span>, <span class='object_link'><a href="Error.html#EA_TABLE_FULL-constant" title="Msf::Post::Windows::Error::EA_TABLE_FULL (constant)">Error::EA_TABLE_FULL</a></span>, <span class='object_link'><a href="Error.html#EC_CIRCULAR_FORWARDING-constant" title="Msf::Post::Windows::Error::EC_CIRCULAR_FORWARDING (constant)">Error::EC_CIRCULAR_FORWARDING</a></span>, <span class='object_link'><a href="Error.html#EC_CREDSTORE_FULL-constant" title="Msf::Post::Windows::Error::EC_CREDSTORE_FULL (constant)">Error::EC_CREDSTORE_FULL</a></span>, <span class='object_link'><a href="Error.html#EC_CRED_NOT_FOUND-constant" title="Msf::Post::Windows::Error::EC_CRED_NOT_FOUND (constant)">Error::EC_CRED_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#EC_LOG_DISABLED-constant" title="Msf::Post::Windows::Error::EC_LOG_DISABLED (constant)">Error::EC_LOG_DISABLED</a></span>, <span class='object_link'><a href="Error.html#EC_NO_ACTIVE_CHANNEL-constant" title="Msf::Post::Windows::Error::EC_NO_ACTIVE_CHANNEL (constant)">Error::EC_NO_ACTIVE_CHANNEL</a></span>, <span class='object_link'><a href="Error.html#EC_SUBSCRIPTION_CANNOT_ACTIVATE-constant" title="Msf::Post::Windows::Error::EC_SUBSCRIPTION_CANNOT_ACTIVATE (constant)">Error::EC_SUBSCRIPTION_CANNOT_ACTIVATE</a></span>, <span class='object_link'><a href="Error.html#EFS_ALG_BLOB_TOO_BIG-constant" title="Msf::Post::Windows::Error::EFS_ALG_BLOB_TOO_BIG (constant)">Error::EFS_ALG_BLOB_TOO_BIG</a></span>, <span class='object_link'><a href="Error.html#EFS_DISABLED-constant" title="Msf::Post::Windows::Error::EFS_DISABLED (constant)">Error::EFS_DISABLED</a></span>, <span class='object_link'><a href="Error.html#EFS_NOT_ALLOWED_IN_TRANSACTION-constant" title="Msf::Post::Windows::Error::EFS_NOT_ALLOWED_IN_TRANSACTION (constant)">Error::EFS_NOT_ALLOWED_IN_TRANSACTION</a></span>, <span class='object_link'><a href="Error.html#EFS_SERVER_NOT_TRUSTED-constant" title="Msf::Post::Windows::Error::EFS_SERVER_NOT_TRUSTED (constant)">Error::EFS_SERVER_NOT_TRUSTED</a></span>, <span class='object_link'><a href="Error.html#EFS_VERSION_NOT_SUPPORT-constant" title="Msf::Post::Windows::Error::EFS_VERSION_NOT_SUPPORT (constant)">Error::EFS_VERSION_NOT_SUPPORT</a></span>, <span class='object_link'><a href="Error.html#ELEVATION_REQUIRED-constant" title="Msf::Post::Windows::Error::ELEVATION_REQUIRED (constant)">Error::ELEVATION_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#EMPTY-constant" title="Msf::Post::Windows::Error::EMPTY (constant)">Error::EMPTY</a></span>, <span class='object_link'><a href="Error.html#ENCRYPTION_FAILED-constant" title="Msf::Post::Windows::Error::ENCRYPTION_FAILED (constant)">Error::ENCRYPTION_FAILED</a></span>, <span class='object_link'><a href="Error.html#END_OF_MEDIA-constant" title="Msf::Post::Windows::Error::END_OF_MEDIA (constant)">Error::END_OF_MEDIA</a></span>, <span class='object_link'><a href="Error.html#ENLISTMENT_NOT_FOUND-constant" title="Msf::Post::Windows::Error::ENLISTMENT_NOT_FOUND (constant)">Error::ENLISTMENT_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#ENLISTMENT_NOT_SUPERIOR-constant" title="Msf::Post::Windows::Error::ENLISTMENT_NOT_SUPERIOR (constant)">Error::ENLISTMENT_NOT_SUPERIOR</a></span>, <span class='object_link'><a href="Error.html#ENVVAR_NOT_FOUND-constant" title="Msf::Post::Windows::Error::ENVVAR_NOT_FOUND (constant)">Error::ENVVAR_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#EOM_OVERFLOW-constant" title="Msf::Post::Windows::Error::EOM_OVERFLOW (constant)">Error::EOM_OVERFLOW</a></span>, <span class='object_link'><a href="Error.html#EPT_S_CANT_CREATE-constant" title="Msf::Post::Windows::Error::EPT_S_CANT_CREATE (constant)">Error::EPT_S_CANT_CREATE</a></span>, <span class='object_link'><a href="Error.html#EPT_S_CANT_PERFORM_OP-constant" title="Msf::Post::Windows::Error::EPT_S_CANT_PERFORM_OP (constant)">Error::EPT_S_CANT_PERFORM_OP</a></span>, <span class='object_link'><a href="Error.html#EPT_S_INVALID_ENTRY-constant" title="Msf::Post::Windows::Error::EPT_S_INVALID_ENTRY (constant)">Error::EPT_S_INVALID_ENTRY</a></span>, <span class='object_link'><a href="Error.html#EPT_S_NOT_REGISTERED-constant" title="Msf::Post::Windows::Error::EPT_S_NOT_REGISTERED (constant)">Error::EPT_S_NOT_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#ERRORS_ENCOUNTERED-constant" title="Msf::Post::Windows::Error::ERRORS_ENCOUNTERED (constant)">Error::ERRORS_ENCOUNTERED</a></span>, <span class='object_link'><a href="Error.html#EVALUATION_EXPIRATION-constant" title="Msf::Post::Windows::Error::EVALUATION_EXPIRATION (constant)">Error::EVALUATION_EXPIRATION</a></span>, <span class='object_link'><a href="Error.html#EVENTLOG_CANT_START-constant" title="Msf::Post::Windows::Error::EVENTLOG_CANT_START (constant)">Error::EVENTLOG_CANT_START</a></span>, <span class='object_link'><a href="Error.html#EVENTLOG_FILE_CHANGED-constant" title="Msf::Post::Windows::Error::EVENTLOG_FILE_CHANGED (constant)">Error::EVENTLOG_FILE_CHANGED</a></span>, <span class='object_link'><a href="Error.html#EVENTLOG_FILE_CORRUPT-constant" title="Msf::Post::Windows::Error::EVENTLOG_FILE_CORRUPT (constant)">Error::EVENTLOG_FILE_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#EVENT_DONE-constant" title="Msf::Post::Windows::Error::EVENT_DONE (constant)">Error::EVENT_DONE</a></span>, <span class='object_link'><a href="Error.html#EVENT_PENDING-constant" title="Msf::Post::Windows::Error::EVENT_PENDING (constant)">Error::EVENT_PENDING</a></span>, <span class='object_link'><a href="Error.html#EVT_CANNOT_OPEN_CHANNEL_OF_QUERY-constant" title="Msf::Post::Windows::Error::EVT_CANNOT_OPEN_CHANNEL_OF_QUERY (constant)">Error::EVT_CANNOT_OPEN_CHANNEL_OF_QUERY</a></span>, <span class='object_link'><a href="Error.html#EVT_CHANNEL_CANNOT_ACTIVATE-constant" title="Msf::Post::Windows::Error::EVT_CHANNEL_CANNOT_ACTIVATE (constant)">Error::EVT_CHANNEL_CANNOT_ACTIVATE</a></span>, <span class='object_link'><a href="Error.html#EVT_CHANNEL_NOT_FOUND-constant" title="Msf::Post::Windows::Error::EVT_CHANNEL_NOT_FOUND (constant)">Error::EVT_CHANNEL_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#EVT_CONFIGURATION_ERROR-constant" title="Msf::Post::Windows::Error::EVT_CONFIGURATION_ERROR (constant)">Error::EVT_CONFIGURATION_ERROR</a></span>, <span class='object_link'><a href="Error.html#EVT_EVENT_DEFINITION_NOT_FOUND-constant" title="Msf::Post::Windows::Error::EVT_EVENT_DEFINITION_NOT_FOUND (constant)">Error::EVT_EVENT_DEFINITION_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#EVT_EVENT_TEMPLATE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::EVT_EVENT_TEMPLATE_NOT_FOUND (constant)">Error::EVT_EVENT_TEMPLATE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_ALREADYSCOPED-constant" title="Msf::Post::Windows::Error::EVT_FILTER_ALREADYSCOPED (constant)">Error::EVT_FILTER_ALREADYSCOPED</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_INVARG-constant" title="Msf::Post::Windows::Error::EVT_FILTER_INVARG (constant)">Error::EVT_FILTER_INVARG</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_INVTEST-constant" title="Msf::Post::Windows::Error::EVT_FILTER_INVTEST (constant)">Error::EVT_FILTER_INVTEST</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_INVTYPE-constant" title="Msf::Post::Windows::Error::EVT_FILTER_INVTYPE (constant)">Error::EVT_FILTER_INVTYPE</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_NOTELTSET-constant" title="Msf::Post::Windows::Error::EVT_FILTER_NOTELTSET (constant)">Error::EVT_FILTER_NOTELTSET</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_OUT_OF_RANGE-constant" title="Msf::Post::Windows::Error::EVT_FILTER_OUT_OF_RANGE (constant)">Error::EVT_FILTER_OUT_OF_RANGE</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_PARSEERR-constant" title="Msf::Post::Windows::Error::EVT_FILTER_PARSEERR (constant)">Error::EVT_FILTER_PARSEERR</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_TOO_COMPLEX-constant" title="Msf::Post::Windows::Error::EVT_FILTER_TOO_COMPLEX (constant)">Error::EVT_FILTER_TOO_COMPLEX</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_UNEXPECTEDTOKEN-constant" title="Msf::Post::Windows::Error::EVT_FILTER_UNEXPECTEDTOKEN (constant)">Error::EVT_FILTER_UNEXPECTEDTOKEN</a></span>, <span class='object_link'><a href="Error.html#EVT_FILTER_UNSUPPORTEDOP-constant" title="Msf::Post::Windows::Error::EVT_FILTER_UNSUPPORTEDOP (constant)">Error::EVT_FILTER_UNSUPPORTEDOP</a></span>, <span class='object_link'><a href="Error.html#EVT_INVALID_CHANNEL_PATH-constant" title="Msf::Post::Windows::Error::EVT_INVALID_CHANNEL_PATH (constant)">Error::EVT_INVALID_CHANNEL_PATH</a></span>, <span class='object_link'><a href="Error.html#EVT_INVALID_CHANNEL_PROPERTY_VALUE-constant" title="Msf::Post::Windows::Error::EVT_INVALID_CHANNEL_PROPERTY_VALUE (constant)">Error::EVT_INVALID_CHANNEL_PROPERTY_VALUE</a></span>, <span class='object_link'><a href="Error.html#EVT_INVALID_EVENT_DATA-constant" title="Msf::Post::Windows::Error::EVT_INVALID_EVENT_DATA (constant)">Error::EVT_INVALID_EVENT_DATA</a></span>, <span class='object_link'><a href="Error.html#EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL-constant" title="Msf::Post::Windows::Error::EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL (constant)">Error::EVT_INVALID_OPERATION_OVER_ENABLED_DIRECT_CHANNEL</a></span>, <span class='object_link'><a href="Error.html#EVT_INVALID_PUBLISHER_NAME-constant" title="Msf::Post::Windows::Error::EVT_INVALID_PUBLISHER_NAME (constant)">Error::EVT_INVALID_PUBLISHER_NAME</a></span>, <span class='object_link'><a href="Error.html#EVT_INVALID_PUBLISHER_PROPERTY_VALUE-constant" title="Msf::Post::Windows::Error::EVT_INVALID_PUBLISHER_PROPERTY_VALUE (constant)">Error::EVT_INVALID_PUBLISHER_PROPERTY_VALUE</a></span>, <span class='object_link'><a href="Error.html#EVT_INVALID_QUERY-constant" title="Msf::Post::Windows::Error::EVT_INVALID_QUERY (constant)">Error::EVT_INVALID_QUERY</a></span>, <span class='object_link'><a href="Error.html#EVT_MALFORMED_XML_TEXT-constant" title="Msf::Post::Windows::Error::EVT_MALFORMED_XML_TEXT (constant)">Error::EVT_MALFORMED_XML_TEXT</a></span>, <span class='object_link'><a href="Error.html#EVT_MAX_INSERTS_REACHED-constant" title="Msf::Post::Windows::Error::EVT_MAX_INSERTS_REACHED (constant)">Error::EVT_MAX_INSERTS_REACHED</a></span>, <span class='object_link'><a href="Error.html#EVT_MESSAGE_ID_NOT_FOUND-constant" title="Msf::Post::Windows::Error::EVT_MESSAGE_ID_NOT_FOUND (constant)">Error::EVT_MESSAGE_ID_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#EVT_MESSAGE_LOCALE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::EVT_MESSAGE_LOCALE_NOT_FOUND (constant)">Error::EVT_MESSAGE_LOCALE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#EVT_MESSAGE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::EVT_MESSAGE_NOT_FOUND (constant)">Error::EVT_MESSAGE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#EVT_NON_VALIDATING_MSXML-constant" title="Msf::Post::Windows::Error::EVT_NON_VALIDATING_MSXML (constant)">Error::EVT_NON_VALIDATING_MSXML</a></span>, <span class='object_link'><a href="Error.html#EVT_PUBLISHER_DISABLED-constant" title="Msf::Post::Windows::Error::EVT_PUBLISHER_DISABLED (constant)">Error::EVT_PUBLISHER_DISABLED</a></span>, <span class='object_link'><a href="Error.html#EVT_PUBLISHER_METADATA_NOT_FOUND-constant" title="Msf::Post::Windows::Error::EVT_PUBLISHER_METADATA_NOT_FOUND (constant)">Error::EVT_PUBLISHER_METADATA_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#EVT_QUERY_RESULT_INVALID_POSITION-constant" title="Msf::Post::Windows::Error::EVT_QUERY_RESULT_INVALID_POSITION (constant)">Error::EVT_QUERY_RESULT_INVALID_POSITION</a></span>, <span class='object_link'><a href="Error.html#EVT_QUERY_RESULT_STALE-constant" title="Msf::Post::Windows::Error::EVT_QUERY_RESULT_STALE (constant)">Error::EVT_QUERY_RESULT_STALE</a></span>, <span class='object_link'><a href="Error.html#EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL-constant" title="Msf::Post::Windows::Error::EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL (constant)">Error::EVT_SUBSCRIPTION_TO_DIRECT_CHANNEL</a></span>, <span class='object_link'><a href="Error.html#EVT_UNRESOLVED_PARAMETER_INSERT-constant" title="Msf::Post::Windows::Error::EVT_UNRESOLVED_PARAMETER_INSERT (constant)">Error::EVT_UNRESOLVED_PARAMETER_INSERT</a></span>, <span class='object_link'><a href="Error.html#EVT_UNRESOLVED_VALUE_INSERT-constant" title="Msf::Post::Windows::Error::EVT_UNRESOLVED_VALUE_INSERT (constant)">Error::EVT_UNRESOLVED_VALUE_INSERT</a></span>, <span class='object_link'><a href="Error.html#EVT_VERSION_TOO_NEW-constant" title="Msf::Post::Windows::Error::EVT_VERSION_TOO_NEW (constant)">Error::EVT_VERSION_TOO_NEW</a></span>, <span class='object_link'><a href="Error.html#EVT_VERSION_TOO_OLD-constant" title="Msf::Post::Windows::Error::EVT_VERSION_TOO_OLD (constant)">Error::EVT_VERSION_TOO_OLD</a></span>, <span class='object_link'><a href="Error.html#EXCEPTION_IN_RESOURCE_CALL-constant" title="Msf::Post::Windows::Error::EXCEPTION_IN_RESOURCE_CALL (constant)">Error::EXCEPTION_IN_RESOURCE_CALL</a></span>, <span class='object_link'><a href="Error.html#EXCEPTION_IN_SERVICE-constant" title="Msf::Post::Windows::Error::EXCEPTION_IN_SERVICE (constant)">Error::EXCEPTION_IN_SERVICE</a></span>, <span class='object_link'><a href="Error.html#EXCL_SEM_ALREADY_OWNED-constant" title="Msf::Post::Windows::Error::EXCL_SEM_ALREADY_OWNED (constant)">Error::EXCL_SEM_ALREADY_OWNED</a></span>, <span class='object_link'><a href="Error.html#EXE_CANNOT_MODIFY_SIGNED_BINARY-constant" title="Msf::Post::Windows::Error::EXE_CANNOT_MODIFY_SIGNED_BINARY (constant)">Error::EXE_CANNOT_MODIFY_SIGNED_BINARY</a></span>, <span class='object_link'><a href="Error.html#EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY-constant" title="Msf::Post::Windows::Error::EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY (constant)">Error::EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY</a></span>, <span class='object_link'><a href="Error.html#EXE_MACHINE_TYPE_MISMATCH-constant" title="Msf::Post::Windows::Error::EXE_MACHINE_TYPE_MISMATCH (constant)">Error::EXE_MACHINE_TYPE_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#EXE_MARKED_INVALID-constant" title="Msf::Post::Windows::Error::EXE_MARKED_INVALID (constant)">Error::EXE_MARKED_INVALID</a></span>, <span class='object_link'><a href="Error.html#EXPIRED_HANDLE-constant" title="Msf::Post::Windows::Error::EXPIRED_HANDLE (constant)">Error::EXPIRED_HANDLE</a></span>, <span class='object_link'><a href="Error.html#EXTENDED_ERROR-constant" title="Msf::Post::Windows::Error::EXTENDED_ERROR (constant)">Error::EXTENDED_ERROR</a></span>, <span class='object_link'><a href="Error.html#EXTRANEOUS_INFORMATION-constant" title="Msf::Post::Windows::Error::EXTRANEOUS_INFORMATION (constant)">Error::EXTRANEOUS_INFORMATION</a></span>, <span class='object_link'><a href="Error.html#FAILED_DRIVER_ENTRY-constant" title="Msf::Post::Windows::Error::FAILED_DRIVER_ENTRY (constant)">Error::FAILED_DRIVER_ENTRY</a></span>, <span class='object_link'><a href="Error.html#FAILED_SERVICE_CONTROLLER_CONNECT-constant" title="Msf::Post::Windows::Error::FAILED_SERVICE_CONTROLLER_CONNECT (constant)">Error::FAILED_SERVICE_CONTROLLER_CONNECT</a></span>, <span class='object_link'><a href="Error.html#FAIL_FAST_EXCEPTION-constant" title="Msf::Post::Windows::Error::FAIL_FAST_EXCEPTION (constant)">Error::FAIL_FAST_EXCEPTION</a></span>, <span class='object_link'><a href="Error.html#FAIL_I24-constant" title="Msf::Post::Windows::Error::FAIL_I24 (constant)">Error::FAIL_I24</a></span>, <span class='object_link'><a href="Error.html#FAIL_NOACTION_REBOOT-constant" title="Msf::Post::Windows::Error::FAIL_NOACTION_REBOOT (constant)">Error::FAIL_NOACTION_REBOOT</a></span>, <span class='object_link'><a href="Error.html#FAIL_REBOOT_INITIATED-constant" title="Msf::Post::Windows::Error::FAIL_REBOOT_INITIATED (constant)">Error::FAIL_REBOOT_INITIATED</a></span>, <span class='object_link'><a href="Error.html#FAIL_REBOOT_REQUIRED-constant" title="Msf::Post::Windows::Error::FAIL_REBOOT_REQUIRED (constant)">Error::FAIL_REBOOT_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#FAIL_RESTART-constant" title="Msf::Post::Windows::Error::FAIL_RESTART (constant)">Error::FAIL_RESTART</a></span>, <span class='object_link'><a href="Error.html#FAIL_SHUTDOWN-constant" title="Msf::Post::Windows::Error::FAIL_SHUTDOWN (constant)">Error::FAIL_SHUTDOWN</a></span>, <span class='object_link'><a href="Error.html#FATAL_APP_EXIT-constant" title="Msf::Post::Windows::Error::FATAL_APP_EXIT (constant)">Error::FATAL_APP_EXIT</a></span>, <span class='object_link'><a href="Error.html#FILEMARK_DETECTED-constant" title="Msf::Post::Windows::Error::FILEMARK_DETECTED (constant)">Error::FILEMARK_DETECTED</a></span>, <span class='object_link'><a href="Error.html#FILENAME_EXCED_RANGE-constant" title="Msf::Post::Windows::Error::FILENAME_EXCED_RANGE (constant)">Error::FILENAME_EXCED_RANGE</a></span>, <span class='object_link'><a href="Error.html#FILE_CHECKED_OUT-constant" title="Msf::Post::Windows::Error::FILE_CHECKED_OUT (constant)">Error::FILE_CHECKED_OUT</a></span>, <span class='object_link'><a href="Error.html#FILE_CORRUPT-constant" title="Msf::Post::Windows::Error::FILE_CORRUPT (constant)">Error::FILE_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#FILE_ENCRYPTED-constant" title="Msf::Post::Windows::Error::FILE_ENCRYPTED (constant)">Error::FILE_ENCRYPTED</a></span>, <span class='object_link'><a href="Error.html#FILE_EXISTS-constant" title="Msf::Post::Windows::Error::FILE_EXISTS (constant)">Error::FILE_EXISTS</a></span>, <span class='object_link'><a href="Error.html#FILE_IDENTITY_NOT_PERSISTENT-constant" title="Msf::Post::Windows::Error::FILE_IDENTITY_NOT_PERSISTENT (constant)">Error::FILE_IDENTITY_NOT_PERSISTENT</a></span>, <span class='object_link'><a href="Error.html#FILE_INVALID-constant" title="Msf::Post::Windows::Error::FILE_INVALID (constant)">Error::FILE_INVALID</a></span>, <span class='object_link'><a href="Error.html#FILE_NOT_ENCRYPTED-constant" title="Msf::Post::Windows::Error::FILE_NOT_ENCRYPTED (constant)">Error::FILE_NOT_ENCRYPTED</a></span>, <span class='object_link'><a href="Error.html#FILE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::FILE_NOT_FOUND (constant)">Error::FILE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#FILE_OFFLINE-constant" title="Msf::Post::Windows::Error::FILE_OFFLINE (constant)">Error::FILE_OFFLINE</a></span>, <span class='object_link'><a href="Error.html#FILE_READ_ONLY-constant" title="Msf::Post::Windows::Error::FILE_READ_ONLY (constant)">Error::FILE_READ_ONLY</a></span>, <span class='object_link'><a href="Error.html#FILE_SHARE_RESOURCE_CONFLICT-constant" title="Msf::Post::Windows::Error::FILE_SHARE_RESOURCE_CONFLICT (constant)">Error::FILE_SHARE_RESOURCE_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#FILE_SYSTEM_LIMITATION-constant" title="Msf::Post::Windows::Error::FILE_SYSTEM_LIMITATION (constant)">Error::FILE_SYSTEM_LIMITATION</a></span>, <span class='object_link'><a href="Error.html#FILE_TOO_LARGE-constant" title="Msf::Post::Windows::Error::FILE_TOO_LARGE (constant)">Error::FILE_TOO_LARGE</a></span>, <span class='object_link'><a href="Error.html#FIRMWARE_UPDATED-constant" title="Msf::Post::Windows::Error::FIRMWARE_UPDATED (constant)">Error::FIRMWARE_UPDATED</a></span>, <span class='object_link'><a href="Error.html#FLOATED_SECTION-constant" title="Msf::Post::Windows::Error::FLOATED_SECTION (constant)">Error::FLOATED_SECTION</a></span>, <span class='object_link'><a href="Error.html#FLOAT_MULTIPLE_FAULTS-constant" title="Msf::Post::Windows::Error::FLOAT_MULTIPLE_FAULTS (constant)">Error::FLOAT_MULTIPLE_FAULTS</a></span>, <span class='object_link'><a href="Error.html#FLOAT_MULTIPLE_TRAPS-constant" title="Msf::Post::Windows::Error::FLOAT_MULTIPLE_TRAPS (constant)">Error::FLOAT_MULTIPLE_TRAPS</a></span>, <span class='object_link'><a href="Error.html#FLOPPY_BAD_REGISTERS-constant" title="Msf::Post::Windows::Error::FLOPPY_BAD_REGISTERS (constant)">Error::FLOPPY_BAD_REGISTERS</a></span>, <span class='object_link'><a href="Error.html#FLOPPY_ID_MARK_NOT_FOUND-constant" title="Msf::Post::Windows::Error::FLOPPY_ID_MARK_NOT_FOUND (constant)">Error::FLOPPY_ID_MARK_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#FLOPPY_UNKNOWN_ERROR-constant" title="Msf::Post::Windows::Error::FLOPPY_UNKNOWN_ERROR (constant)">Error::FLOPPY_UNKNOWN_ERROR</a></span>, <span class='object_link'><a href="Error.html#FLOPPY_VOLUME-constant" title="Msf::Post::Windows::Error::FLOPPY_VOLUME (constant)">Error::FLOPPY_VOLUME</a></span>, <span class='object_link'><a href="Error.html#FLOPPY_WRONG_CYLINDER-constant" title="Msf::Post::Windows::Error::FLOPPY_WRONG_CYLINDER (constant)">Error::FLOPPY_WRONG_CYLINDER</a></span>, <span class='object_link'><a href="Error.html#FORMS_AUTH_REQUIRED-constant" title="Msf::Post::Windows::Error::FORMS_AUTH_REQUIRED (constant)">Error::FORMS_AUTH_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#FOUND_OUT_OF_SCOPE-constant" title="Msf::Post::Windows::Error::FOUND_OUT_OF_SCOPE (constant)">Error::FOUND_OUT_OF_SCOPE</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_AUTHENTICATION-constant" title="Msf::Post::Windows::Error::FRS_ERR_AUTHENTICATION (constant)">Error::FRS_ERR_AUTHENTICATION</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_CHILD_TO_PARENT_COMM-constant" title="Msf::Post::Windows::Error::FRS_ERR_CHILD_TO_PARENT_COMM (constant)">Error::FRS_ERR_CHILD_TO_PARENT_COMM</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_INSUFFICIENT_PRIV-constant" title="Msf::Post::Windows::Error::FRS_ERR_INSUFFICIENT_PRIV (constant)">Error::FRS_ERR_INSUFFICIENT_PRIV</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_INTERNAL-constant" title="Msf::Post::Windows::Error::FRS_ERR_INTERNAL (constant)">Error::FRS_ERR_INTERNAL</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_INTERNAL_API-constant" title="Msf::Post::Windows::Error::FRS_ERR_INTERNAL_API (constant)">Error::FRS_ERR_INTERNAL_API</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_INVALID_API_SEQUENCE-constant" title="Msf::Post::Windows::Error::FRS_ERR_INVALID_API_SEQUENCE (constant)">Error::FRS_ERR_INVALID_API_SEQUENCE</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_INVALID_SERVICE_PARAMETER-constant" title="Msf::Post::Windows::Error::FRS_ERR_INVALID_SERVICE_PARAMETER (constant)">Error::FRS_ERR_INVALID_SERVICE_PARAMETER</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_PARENT_AUTHENTICATION-constant" title="Msf::Post::Windows::Error::FRS_ERR_PARENT_AUTHENTICATION (constant)">Error::FRS_ERR_PARENT_AUTHENTICATION</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_PARENT_INSUFFICIENT_PRIV-constant" title="Msf::Post::Windows::Error::FRS_ERR_PARENT_INSUFFICIENT_PRIV (constant)">Error::FRS_ERR_PARENT_INSUFFICIENT_PRIV</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_PARENT_TO_CHILD_COMM-constant" title="Msf::Post::Windows::Error::FRS_ERR_PARENT_TO_CHILD_COMM (constant)">Error::FRS_ERR_PARENT_TO_CHILD_COMM</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_SERVICE_COMM-constant" title="Msf::Post::Windows::Error::FRS_ERR_SERVICE_COMM (constant)">Error::FRS_ERR_SERVICE_COMM</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_STARTING_SERVICE-constant" title="Msf::Post::Windows::Error::FRS_ERR_STARTING_SERVICE (constant)">Error::FRS_ERR_STARTING_SERVICE</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_STOPPING_SERVICE-constant" title="Msf::Post::Windows::Error::FRS_ERR_STOPPING_SERVICE (constant)">Error::FRS_ERR_STOPPING_SERVICE</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_SYSVOL_DEMOTE-constant" title="Msf::Post::Windows::Error::FRS_ERR_SYSVOL_DEMOTE (constant)">Error::FRS_ERR_SYSVOL_DEMOTE</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_SYSVOL_IS_BUSY-constant" title="Msf::Post::Windows::Error::FRS_ERR_SYSVOL_IS_BUSY (constant)">Error::FRS_ERR_SYSVOL_IS_BUSY</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_SYSVOL_POPULATE-constant" title="Msf::Post::Windows::Error::FRS_ERR_SYSVOL_POPULATE (constant)">Error::FRS_ERR_SYSVOL_POPULATE</a></span>, <span class='object_link'><a href="Error.html#FRS_ERR_SYSVOL_POPULATE_TIMEOUT-constant" title="Msf::Post::Windows::Error::FRS_ERR_SYSVOL_POPULATE_TIMEOUT (constant)">Error::FRS_ERR_SYSVOL_POPULATE_TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#FSFILTER_OP_COMPLETED_SUCCESSFULLY-constant" title="Msf::Post::Windows::Error::FSFILTER_OP_COMPLETED_SUCCESSFULLY (constant)">Error::FSFILTER_OP_COMPLETED_SUCCESSFULLY</a></span>, <span class='object_link'><a href="Error.html#FS_DRIVER_REQUIRED-constant" title="Msf::Post::Windows::Error::FS_DRIVER_REQUIRED (constant)">Error::FS_DRIVER_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#FT_READ_RECOVERY_FROM_BACKUP-constant" title="Msf::Post::Windows::Error::FT_READ_RECOVERY_FROM_BACKUP (constant)">Error::FT_READ_RECOVERY_FROM_BACKUP</a></span>, <span class='object_link'><a href="Error.html#FT_WRITE_RECOVERY-constant" title="Msf::Post::Windows::Error::FT_WRITE_RECOVERY (constant)">Error::FT_WRITE_RECOVERY</a></span>, <span class='object_link'><a href="Error.html#FULLSCREEN_MODE-constant" title="Msf::Post::Windows::Error::FULLSCREEN_MODE (constant)">Error::FULLSCREEN_MODE</a></span>, <span class='object_link'><a href="Error.html#FULL_BACKUP-constant" title="Msf::Post::Windows::Error::FULL_BACKUP (constant)">Error::FULL_BACKUP</a></span>, <span class='object_link'><a href="Error.html#FUNCTION_FAILED-constant" title="Msf::Post::Windows::Error::FUNCTION_FAILED (constant)">Error::FUNCTION_FAILED</a></span>, <span class='object_link'><a href="Error.html#FUNCTION_NOT_CALLED-constant" title="Msf::Post::Windows::Error::FUNCTION_NOT_CALLED (constant)">Error::FUNCTION_NOT_CALLED</a></span>, <span class='object_link'><a href="Error.html#GENERIC_COMMAND_FAILED-constant" title="Msf::Post::Windows::Error::GENERIC_COMMAND_FAILED (constant)">Error::GENERIC_COMMAND_FAILED</a></span>, <span class='object_link'><a href="Error.html#GENERIC_NOT_MAPPED-constant" title="Msf::Post::Windows::Error::GENERIC_NOT_MAPPED (constant)">Error::GENERIC_NOT_MAPPED</a></span>, <span class='object_link'><a href="Error.html#GEN_FAILURE-constant" title="Msf::Post::Windows::Error::GEN_FAILURE (constant)">Error::GEN_FAILURE</a></span>, <span class='object_link'><a href="Error.html#GLOBAL_ONLY_HOOK-constant" title="Msf::Post::Windows::Error::GLOBAL_ONLY_HOOK (constant)">Error::GLOBAL_ONLY_HOOK</a></span>, <span class='object_link'><a href="Error.html#GRACEFUL_DISCONNECT-constant" title="Msf::Post::Windows::Error::GRACEFUL_DISCONNECT (constant)">Error::GRACEFUL_DISCONNECT</a></span>, <span class='object_link'><a href="Error.html#GROUP_EXISTS-constant" title="Msf::Post::Windows::Error::GROUP_EXISTS (constant)">Error::GROUP_EXISTS</a></span>, <span class='object_link'><a href="Error.html#GROUP_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::GROUP_NOT_AVAILABLE (constant)">Error::GROUP_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#GROUP_NOT_FOUND-constant" title="Msf::Post::Windows::Error::GROUP_NOT_FOUND (constant)">Error::GROUP_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#GROUP_NOT_ONLINE-constant" title="Msf::Post::Windows::Error::GROUP_NOT_ONLINE (constant)">Error::GROUP_NOT_ONLINE</a></span>, <span class='object_link'><a href="Error.html#GUID_SUBSTITUTION_MADE-constant" title="Msf::Post::Windows::Error::GUID_SUBSTITUTION_MADE (constant)">Error::GUID_SUBSTITUTION_MADE</a></span>, <span class='object_link'><a href="Error.html#HANDLES_CLOSED-constant" title="Msf::Post::Windows::Error::HANDLES_CLOSED (constant)">Error::HANDLES_CLOSED</a></span>, <span class='object_link'><a href="Error.html#HANDLE_DISK_FULL-constant" title="Msf::Post::Windows::Error::HANDLE_DISK_FULL (constant)">Error::HANDLE_DISK_FULL</a></span>, <span class='object_link'><a href="Error.html#HANDLE_EOF-constant" title="Msf::Post::Windows::Error::HANDLE_EOF (constant)">Error::HANDLE_EOF</a></span>, <span class='object_link'><a href="Error.html#HANDLE_NO_LONGER_VALID-constant" title="Msf::Post::Windows::Error::HANDLE_NO_LONGER_VALID (constant)">Error::HANDLE_NO_LONGER_VALID</a></span>, <span class='object_link'><a href="Error.html#HASH_NOT_PRESENT-constant" title="Msf::Post::Windows::Error::HASH_NOT_PRESENT (constant)">Error::HASH_NOT_PRESENT</a></span>, <span class='object_link'><a href="Error.html#HASH_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::HASH_NOT_SUPPORTED (constant)">Error::HASH_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#HEURISTIC_DAMAGE_POSSIBLE-constant" title="Msf::Post::Windows::Error::HEURISTIC_DAMAGE_POSSIBLE (constant)">Error::HEURISTIC_DAMAGE_POSSIBLE</a></span>, <span class='object_link'><a href="Error.html#HIBERNATED-constant" title="Msf::Post::Windows::Error::HIBERNATED (constant)">Error::HIBERNATED</a></span>, <span class='object_link'><a href="Error.html#HIBERNATION_FAILURE-constant" title="Msf::Post::Windows::Error::HIBERNATION_FAILURE (constant)">Error::HIBERNATION_FAILURE</a></span>, <span class='object_link'><a href="Error.html#HOOK_NEEDS_HMOD-constant" title="Msf::Post::Windows::Error::HOOK_NEEDS_HMOD (constant)">Error::HOOK_NEEDS_HMOD</a></span>, <span class='object_link'><a href="Error.html#HOOK_NOT_INSTALLED-constant" title="Msf::Post::Windows::Error::HOOK_NOT_INSTALLED (constant)">Error::HOOK_NOT_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#HOOK_TYPE_NOT_ALLOWED-constant" title="Msf::Post::Windows::Error::HOOK_TYPE_NOT_ALLOWED (constant)">Error::HOOK_TYPE_NOT_ALLOWED</a></span>, <span class='object_link'><a href="Error.html#HOST_DOWN-constant" title="Msf::Post::Windows::Error::HOST_DOWN (constant)">Error::HOST_DOWN</a></span>, <span class='object_link'><a href="Error.html#HOST_NODE_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::HOST_NODE_NOT_AVAILABLE (constant)">Error::HOST_NODE_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#HOST_NODE_NOT_GROUP_OWNER-constant" title="Msf::Post::Windows::Error::HOST_NODE_NOT_GROUP_OWNER (constant)">Error::HOST_NODE_NOT_GROUP_OWNER</a></span>, <span class='object_link'><a href="Error.html#HOST_NODE_NOT_RESOURCE_OWNER-constant" title="Msf::Post::Windows::Error::HOST_NODE_NOT_RESOURCE_OWNER (constant)">Error::HOST_NODE_NOT_RESOURCE_OWNER</a></span>, <span class='object_link'><a href="Error.html#HOST_UNREACHABLE-constant" title="Msf::Post::Windows::Error::HOST_UNREACHABLE (constant)">Error::HOST_UNREACHABLE</a></span>, <span class='object_link'><a href="Error.html#HOTKEY_ALREADY_REGISTERED-constant" title="Msf::Post::Windows::Error::HOTKEY_ALREADY_REGISTERED (constant)">Error::HOTKEY_ALREADY_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#HOTKEY_NOT_REGISTERED-constant" title="Msf::Post::Windows::Error::HOTKEY_NOT_REGISTERED (constant)">Error::HOTKEY_NOT_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#HWNDS_HAVE_DIFF_PARENT-constant" title="Msf::Post::Windows::Error::HWNDS_HAVE_DIFF_PARENT (constant)">Error::HWNDS_HAVE_DIFF_PARENT</a></span>, <span class='object_link'><a href="Error.html#ICM_NOT_ENABLED-constant" title="Msf::Post::Windows::Error::ICM_NOT_ENABLED (constant)">Error::ICM_NOT_ENABLED</a></span>, <span class='object_link'><a href="Error.html#IEPORT_FULL-constant" title="Msf::Post::Windows::Error::IEPORT_FULL (constant)">Error::IEPORT_FULL</a></span>, <span class='object_link'><a href="Error.html#ILLEGAL_CHARACTER-constant" title="Msf::Post::Windows::Error::ILLEGAL_CHARACTER (constant)">Error::ILLEGAL_CHARACTER</a></span>, <span class='object_link'><a href="Error.html#ILLEGAL_DLL_RELOCATION-constant" title="Msf::Post::Windows::Error::ILLEGAL_DLL_RELOCATION (constant)">Error::ILLEGAL_DLL_RELOCATION</a></span>, <span class='object_link'><a href="Error.html#ILLEGAL_ELEMENT_ADDRESS-constant" title="Msf::Post::Windows::Error::ILLEGAL_ELEMENT_ADDRESS (constant)">Error::ILLEGAL_ELEMENT_ADDRESS</a></span>, <span class='object_link'><a href="Error.html#ILLEGAL_FLOAT_CONTEXT-constant" title="Msf::Post::Windows::Error::ILLEGAL_FLOAT_CONTEXT (constant)">Error::ILLEGAL_FLOAT_CONTEXT</a></span>, <span class='object_link'><a href="Error.html#ILL_FORMED_PASSWORD-constant" title="Msf::Post::Windows::Error::ILL_FORMED_PASSWORD (constant)">Error::ILL_FORMED_PASSWORD</a></span>, <span class='object_link'><a href="Error.html#IMAGE_MACHINE_TYPE_MISMATCH-constant" title="Msf::Post::Windows::Error::IMAGE_MACHINE_TYPE_MISMATCH (constant)">Error::IMAGE_MACHINE_TYPE_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#IMAGE_MACHINE_TYPE_MISMATCH_EXE-constant" title="Msf::Post::Windows::Error::IMAGE_MACHINE_TYPE_MISMATCH_EXE (constant)">Error::IMAGE_MACHINE_TYPE_MISMATCH_EXE</a></span>, <span class='object_link'><a href="Error.html#IMAGE_NOT_AT_BASE-constant" title="Msf::Post::Windows::Error::IMAGE_NOT_AT_BASE (constant)">Error::IMAGE_NOT_AT_BASE</a></span>, <span class='object_link'><a href="Error.html#IMAGE_SUBSYSTEM_NOT_PRESENT-constant" title="Msf::Post::Windows::Error::IMAGE_SUBSYSTEM_NOT_PRESENT (constant)">Error::IMAGE_SUBSYSTEM_NOT_PRESENT</a></span>, <span class='object_link'><a href="Error.html#IMPLEMENTATION_LIMIT-constant" title="Msf::Post::Windows::Error::IMPLEMENTATION_LIMIT (constant)">Error::IMPLEMENTATION_LIMIT</a></span>, <span class='object_link'><a href="Error.html#IMPLICIT_TRANSACTION_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::IMPLICIT_TRANSACTION_NOT_SUPPORTED (constant)">Error::IMPLICIT_TRANSACTION_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#INCOMPATIBLE_SERVICE_PRIVILEGE-constant" title="Msf::Post::Windows::Error::INCOMPATIBLE_SERVICE_PRIVILEGE (constant)">Error::INCOMPATIBLE_SERVICE_PRIVILEGE</a></span>, <span class='object_link'><a href="Error.html#INCOMPATIBLE_SERVICE_SID_TYPE-constant" title="Msf::Post::Windows::Error::INCOMPATIBLE_SERVICE_SID_TYPE (constant)">Error::INCOMPATIBLE_SERVICE_SID_TYPE</a></span>, <span class='object_link'><a href="Error.html#INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING-constant" title="Msf::Post::Windows::Error::INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING (constant)">Error::INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING</a></span>, <span class='object_link'><a href="Error.html#INCORRECT_ADDRESS-constant" title="Msf::Post::Windows::Error::INCORRECT_ADDRESS (constant)">Error::INCORRECT_ADDRESS</a></span>, <span class='object_link'><a href="Error.html#INCORRECT_SIZE-constant" title="Msf::Post::Windows::Error::INCORRECT_SIZE (constant)">Error::INCORRECT_SIZE</a></span>, <span class='object_link'><a href="Error.html#INC_BACKUP-constant" title="Msf::Post::Windows::Error::INC_BACKUP (constant)">Error::INC_BACKUP</a></span>, <span class='object_link'><a href="Error.html#INDEX_ABSENT-constant" title="Msf::Post::Windows::Error::INDEX_ABSENT (constant)">Error::INDEX_ABSENT</a></span>, <span class='object_link'><a href="Error.html#INDIGENOUS_TYPE-constant" title="Msf::Post::Windows::Error::INDIGENOUS_TYPE (constant)">Error::INDIGENOUS_TYPE</a></span>, <span class='object_link'><a href="Error.html#INDOUBT_TRANSACTIONS_EXIST-constant" title="Msf::Post::Windows::Error::INDOUBT_TRANSACTIONS_EXIST (constant)">Error::INDOUBT_TRANSACTIONS_EXIST</a></span>, <span class='object_link'><a href="Error.html#INFLOOP_IN_RELOC_CHAIN-constant" title="Msf::Post::Windows::Error::INFLOOP_IN_RELOC_CHAIN (constant)">Error::INFLOOP_IN_RELOC_CHAIN</a></span>, <span class='object_link'><a href="Error.html#INSTALL_ALREADY_RUNNING-constant" title="Msf::Post::Windows::Error::INSTALL_ALREADY_RUNNING (constant)">Error::INSTALL_ALREADY_RUNNING</a></span>, <span class='object_link'><a href="Error.html#INSTALL_FAILURE-constant" title="Msf::Post::Windows::Error::INSTALL_FAILURE (constant)">Error::INSTALL_FAILURE</a></span>, <span class='object_link'><a href="Error.html#INSTALL_LANGUAGE_UNSUPPORTED-constant" title="Msf::Post::Windows::Error::INSTALL_LANGUAGE_UNSUPPORTED (constant)">Error::INSTALL_LANGUAGE_UNSUPPORTED</a></span>, <span class='object_link'><a href="Error.html#INSTALL_LOG_FAILURE-constant" title="Msf::Post::Windows::Error::INSTALL_LOG_FAILURE (constant)">Error::INSTALL_LOG_FAILURE</a></span>, <span class='object_link'><a href="Error.html#INSTALL_NOTUSED-constant" title="Msf::Post::Windows::Error::INSTALL_NOTUSED (constant)">Error::INSTALL_NOTUSED</a></span>, <span class='object_link'><a href="Error.html#INSTALL_PACKAGE_INVALID-constant" title="Msf::Post::Windows::Error::INSTALL_PACKAGE_INVALID (constant)">Error::INSTALL_PACKAGE_INVALID</a></span>, <span class='object_link'><a href="Error.html#INSTALL_PACKAGE_OPEN_FAILED-constant" title="Msf::Post::Windows::Error::INSTALL_PACKAGE_OPEN_FAILED (constant)">Error::INSTALL_PACKAGE_OPEN_FAILED</a></span>, <span class='object_link'><a href="Error.html#INSTALL_PACKAGE_REJECTED-constant" title="Msf::Post::Windows::Error::INSTALL_PACKAGE_REJECTED (constant)">Error::INSTALL_PACKAGE_REJECTED</a></span>, <span class='object_link'><a href="Error.html#INSTALL_PACKAGE_VERSION-constant" title="Msf::Post::Windows::Error::INSTALL_PACKAGE_VERSION (constant)">Error::INSTALL_PACKAGE_VERSION</a></span>, <span class='object_link'><a href="Error.html#INSTALL_PLATFORM_UNSUPPORTED-constant" title="Msf::Post::Windows::Error::INSTALL_PLATFORM_UNSUPPORTED (constant)">Error::INSTALL_PLATFORM_UNSUPPORTED</a></span>, <span class='object_link'><a href="Error.html#INSTALL_REMOTE_DISALLOWED-constant" title="Msf::Post::Windows::Error::INSTALL_REMOTE_DISALLOWED (constant)">Error::INSTALL_REMOTE_DISALLOWED</a></span>, <span class='object_link'><a href="Error.html#INSTALL_REMOTE_PROHIBITED-constant" title="Msf::Post::Windows::Error::INSTALL_REMOTE_PROHIBITED (constant)">Error::INSTALL_REMOTE_PROHIBITED</a></span>, <span class='object_link'><a href="Error.html#INSTALL_SERVICE_FAILURE-constant" title="Msf::Post::Windows::Error::INSTALL_SERVICE_FAILURE (constant)">Error::INSTALL_SERVICE_FAILURE</a></span>, <span class='object_link'><a href="Error.html#INSTALL_SERVICE_SAFEBOOT-constant" title="Msf::Post::Windows::Error::INSTALL_SERVICE_SAFEBOOT (constant)">Error::INSTALL_SERVICE_SAFEBOOT</a></span>, <span class='object_link'><a href="Error.html#INSTALL_SOURCE_ABSENT-constant" title="Msf::Post::Windows::Error::INSTALL_SOURCE_ABSENT (constant)">Error::INSTALL_SOURCE_ABSENT</a></span>, <span class='object_link'><a href="Error.html#INSTALL_SUSPEND-constant" title="Msf::Post::Windows::Error::INSTALL_SUSPEND (constant)">Error::INSTALL_SUSPEND</a></span>, <span class='object_link'><a href="Error.html#INSTALL_TEMP_UNWRITABLE-constant" title="Msf::Post::Windows::Error::INSTALL_TEMP_UNWRITABLE (constant)">Error::INSTALL_TEMP_UNWRITABLE</a></span>, <span class='object_link'><a href="Error.html#INSTALL_TRANSFORM_FAILURE-constant" title="Msf::Post::Windows::Error::INSTALL_TRANSFORM_FAILURE (constant)">Error::INSTALL_TRANSFORM_FAILURE</a></span>, <span class='object_link'><a href="Error.html#INSTALL_TRANSFORM_REJECTED-constant" title="Msf::Post::Windows::Error::INSTALL_TRANSFORM_REJECTED (constant)">Error::INSTALL_TRANSFORM_REJECTED</a></span>, <span class='object_link'><a href="Error.html#INSTALL_UI_FAILURE-constant" title="Msf::Post::Windows::Error::INSTALL_UI_FAILURE (constant)">Error::INSTALL_UI_FAILURE</a></span>, <span class='object_link'><a href="Error.html#INSTALL_USEREXIT-constant" title="Msf::Post::Windows::Error::INSTALL_USEREXIT (constant)">Error::INSTALL_USEREXIT</a></span>, <span class='object_link'><a href="Error.html#INSTRUCTION_MISALIGNMENT-constant" title="Msf::Post::Windows::Error::INSTRUCTION_MISALIGNMENT (constant)">Error::INSTRUCTION_MISALIGNMENT</a></span>, <span class='object_link'><a href="Error.html#INSUFFICIENT_BUFFER-constant" title="Msf::Post::Windows::Error::INSUFFICIENT_BUFFER (constant)">Error::INSUFFICIENT_BUFFER</a></span>, <span class='object_link'><a href="Error.html#INSUFFICIENT_LOGON_INFO-constant" title="Msf::Post::Windows::Error::INSUFFICIENT_LOGON_INFO (constant)">Error::INSUFFICIENT_LOGON_INFO</a></span>, <span class='object_link'><a href="Error.html#INSUFFICIENT_POWER-constant" title="Msf::Post::Windows::Error::INSUFFICIENT_POWER (constant)">Error::INSUFFICIENT_POWER</a></span>, <span class='object_link'><a href="Error.html#INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE-constant" title="Msf::Post::Windows::Error::INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE (constant)">Error::INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE</a></span>, <span class='object_link'><a href="Error.html#INTERNAL_DB_CORRUPTION-constant" title="Msf::Post::Windows::Error::INTERNAL_DB_CORRUPTION (constant)">Error::INTERNAL_DB_CORRUPTION</a></span>, <span class='object_link'><a href="Error.html#INTERNAL_DB_ERROR-constant" title="Msf::Post::Windows::Error::INTERNAL_DB_ERROR (constant)">Error::INTERNAL_DB_ERROR</a></span>, <span class='object_link'><a href="Error.html#INTERNAL_ERROR-constant" title="Msf::Post::Windows::Error::INTERNAL_ERROR (constant)">Error::INTERNAL_ERROR</a></span>, <span class='object_link'><a href="Error.html#INTERRUPT_STILL_CONNECTED-constant" title="Msf::Post::Windows::Error::INTERRUPT_STILL_CONNECTED (constant)">Error::INTERRUPT_STILL_CONNECTED</a></span>, <span class='object_link'><a href="Error.html#INTERRUPT_VECTOR_ALREADY_CONNECTED-constant" title="Msf::Post::Windows::Error::INTERRUPT_VECTOR_ALREADY_CONNECTED (constant)">Error::INTERRUPT_VECTOR_ALREADY_CONNECTED</a></span>, <span class='object_link'><a href="Error.html#INVALID_ACCEL_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_ACCEL_HANDLE (constant)">Error::INVALID_ACCEL_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_ACCESS-constant" title="Msf::Post::Windows::Error::INVALID_ACCESS (constant)">Error::INVALID_ACCESS</a></span>, <span class='object_link'><a href="Error.html#INVALID_ACCOUNT_NAME-constant" title="Msf::Post::Windows::Error::INVALID_ACCOUNT_NAME (constant)">Error::INVALID_ACCOUNT_NAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_ACE_CONDITION-constant" title="Msf::Post::Windows::Error::INVALID_ACE_CONDITION (constant)">Error::INVALID_ACE_CONDITION</a></span>, <span class='object_link'><a href="Error.html#INVALID_ACL-constant" title="Msf::Post::Windows::Error::INVALID_ACL (constant)">Error::INVALID_ACL</a></span>, <span class='object_link'><a href="Error.html#INVALID_ADDRESS-constant" title="Msf::Post::Windows::Error::INVALID_ADDRESS (constant)">Error::INVALID_ADDRESS</a></span>, <span class='object_link'><a href="Error.html#INVALID_AT_INTERRUPT_TIME-constant" title="Msf::Post::Windows::Error::INVALID_AT_INTERRUPT_TIME (constant)">Error::INVALID_AT_INTERRUPT_TIME</a></span>, <span class='object_link'><a href="Error.html#INVALID_BLOCK-constant" title="Msf::Post::Windows::Error::INVALID_BLOCK (constant)">Error::INVALID_BLOCK</a></span>, <span class='object_link'><a href="Error.html#INVALID_BLOCK_LENGTH-constant" title="Msf::Post::Windows::Error::INVALID_BLOCK_LENGTH (constant)">Error::INVALID_BLOCK_LENGTH</a></span>, <span class='object_link'><a href="Error.html#INVALID_CATEGORY-constant" title="Msf::Post::Windows::Error::INVALID_CATEGORY (constant)">Error::INVALID_CATEGORY</a></span>, <span class='object_link'><a href="Error.html#INVALID_CLEANER-constant" title="Msf::Post::Windows::Error::INVALID_CLEANER (constant)">Error::INVALID_CLEANER</a></span>, <span class='object_link'><a href="Error.html#INVALID_CLUSTER_IPV6_ADDRESS-constant" title="Msf::Post::Windows::Error::INVALID_CLUSTER_IPV6_ADDRESS (constant)">Error::INVALID_CLUSTER_IPV6_ADDRESS</a></span>, <span class='object_link'><a href="Error.html#INVALID_CMM-constant" title="Msf::Post::Windows::Error::INVALID_CMM (constant)">Error::INVALID_CMM</a></span>, <span class='object_link'><a href="Error.html#INVALID_COLORINDEX-constant" title="Msf::Post::Windows::Error::INVALID_COLORINDEX (constant)">Error::INVALID_COLORINDEX</a></span>, <span class='object_link'><a href="Error.html#INVALID_COLORSPACE-constant" title="Msf::Post::Windows::Error::INVALID_COLORSPACE (constant)">Error::INVALID_COLORSPACE</a></span>, <span class='object_link'><a href="Error.html#INVALID_COMBOBOX_MESSAGE-constant" title="Msf::Post::Windows::Error::INVALID_COMBOBOX_MESSAGE (constant)">Error::INVALID_COMBOBOX_MESSAGE</a></span>, <span class='object_link'><a href="Error.html#INVALID_COMMAND_LINE-constant" title="Msf::Post::Windows::Error::INVALID_COMMAND_LINE (constant)">Error::INVALID_COMMAND_LINE</a></span>, <span class='object_link'><a href="Error.html#INVALID_COMPUTERNAME-constant" title="Msf::Post::Windows::Error::INVALID_COMPUTERNAME (constant)">Error::INVALID_COMPUTERNAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_CRUNTIME_PARAMETER-constant" title="Msf::Post::Windows::Error::INVALID_CRUNTIME_PARAMETER (constant)">Error::INVALID_CRUNTIME_PARAMETER</a></span>, <span class='object_link'><a href="Error.html#INVALID_CURSOR_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_CURSOR_HANDLE (constant)">Error::INVALID_CURSOR_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_DATA-constant" title="Msf::Post::Windows::Error::INVALID_DATA (constant)">Error::INVALID_DATA</a></span>, <span class='object_link'><a href="Error.html#INVALID_DATATYPE-constant" title="Msf::Post::Windows::Error::INVALID_DATATYPE (constant)">Error::INVALID_DATATYPE</a></span>, <span class='object_link'><a href="Error.html#INVALID_DEVICE_OBJECT_PARAMETER-constant" title="Msf::Post::Windows::Error::INVALID_DEVICE_OBJECT_PARAMETER (constant)">Error::INVALID_DEVICE_OBJECT_PARAMETER</a></span>, <span class='object_link'><a href="Error.html#INVALID_DLL-constant" title="Msf::Post::Windows::Error::INVALID_DLL (constant)">Error::INVALID_DLL</a></span>, <span class='object_link'><a href="Error.html#INVALID_DOMAINNAME-constant" title="Msf::Post::Windows::Error::INVALID_DOMAINNAME (constant)">Error::INVALID_DOMAINNAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_DOMAIN_ROLE-constant" title="Msf::Post::Windows::Error::INVALID_DOMAIN_ROLE (constant)">Error::INVALID_DOMAIN_ROLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_DOMAIN_STATE-constant" title="Msf::Post::Windows::Error::INVALID_DOMAIN_STATE (constant)">Error::INVALID_DOMAIN_STATE</a></span>, <span class='object_link'><a href="Error.html#INVALID_DRIVE-constant" title="Msf::Post::Windows::Error::INVALID_DRIVE (constant)">Error::INVALID_DRIVE</a></span>, <span class='object_link'><a href="Error.html#INVALID_DRIVE_OBJECT-constant" title="Msf::Post::Windows::Error::INVALID_DRIVE_OBJECT (constant)">Error::INVALID_DRIVE_OBJECT</a></span>, <span class='object_link'><a href="Error.html#INVALID_DWP_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_DWP_HANDLE (constant)">Error::INVALID_DWP_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_EA_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_EA_HANDLE (constant)">Error::INVALID_EA_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_EA_NAME-constant" title="Msf::Post::Windows::Error::INVALID_EA_NAME (constant)">Error::INVALID_EA_NAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_EDIT_HEIGHT-constant" title="Msf::Post::Windows::Error::INVALID_EDIT_HEIGHT (constant)">Error::INVALID_EDIT_HEIGHT</a></span>, <span class='object_link'><a href="Error.html#INVALID_ENVIRONMENT-constant" title="Msf::Post::Windows::Error::INVALID_ENVIRONMENT (constant)">Error::INVALID_ENVIRONMENT</a></span>, <span class='object_link'><a href="Error.html#INVALID_EVENTNAME-constant" title="Msf::Post::Windows::Error::INVALID_EVENTNAME (constant)">Error::INVALID_EVENTNAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_EVENT_COUNT-constant" title="Msf::Post::Windows::Error::INVALID_EVENT_COUNT (constant)">Error::INVALID_EVENT_COUNT</a></span>, <span class='object_link'><a href="Error.html#INVALID_EXE_SIGNATURE-constant" title="Msf::Post::Windows::Error::INVALID_EXE_SIGNATURE (constant)">Error::INVALID_EXE_SIGNATURE</a></span>, <span class='object_link'><a href="Error.html#INVALID_FIELD-constant" title="Msf::Post::Windows::Error::INVALID_FIELD (constant)">Error::INVALID_FIELD</a></span>, <span class='object_link'><a href="Error.html#INVALID_FILTER_PROC-constant" title="Msf::Post::Windows::Error::INVALID_FILTER_PROC (constant)">Error::INVALID_FILTER_PROC</a></span>, <span class='object_link'><a href="Error.html#INVALID_FLAGS-constant" title="Msf::Post::Windows::Error::INVALID_FLAGS (constant)">Error::INVALID_FLAGS</a></span>, <span class='object_link'><a href="Error.html#INVALID_FLAG_NUMBER-constant" title="Msf::Post::Windows::Error::INVALID_FLAG_NUMBER (constant)">Error::INVALID_FLAG_NUMBER</a></span>, <span class='object_link'><a href="Error.html#INVALID_FORM_NAME-constant" title="Msf::Post::Windows::Error::INVALID_FORM_NAME (constant)">Error::INVALID_FORM_NAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_FORM_SIZE-constant" title="Msf::Post::Windows::Error::INVALID_FORM_SIZE (constant)">Error::INVALID_FORM_SIZE</a></span>, <span class='object_link'><a href="Error.html#INVALID_FUNCTION-constant" title="Msf::Post::Windows::Error::INVALID_FUNCTION (constant)">Error::INVALID_FUNCTION</a></span>, <span class='object_link'><a href="Error.html#INVALID_GROUPNAME-constant" title="Msf::Post::Windows::Error::INVALID_GROUPNAME (constant)">Error::INVALID_GROUPNAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_GROUP_ATTRIBUTES-constant" title="Msf::Post::Windows::Error::INVALID_GROUP_ATTRIBUTES (constant)">Error::INVALID_GROUP_ATTRIBUTES</a></span>, <span class='object_link'><a href="Error.html#INVALID_GW_COMMAND-constant" title="Msf::Post::Windows::Error::INVALID_GW_COMMAND (constant)">Error::INVALID_GW_COMMAND</a></span>, <span class='object_link'><a href="Error.html#INVALID_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_HANDLE (constant)">Error::INVALID_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_HANDLE_STATE-constant" title="Msf::Post::Windows::Error::INVALID_HANDLE_STATE (constant)">Error::INVALID_HANDLE_STATE</a></span>, <span class='object_link'><a href="Error.html#INVALID_HANDLE_VALUE-constant" title="Msf::Post::Windows::Error::INVALID_HANDLE_VALUE (constant)">Error::INVALID_HANDLE_VALUE</a></span>, <span class='object_link'><a href="Error.html#INVALID_HOOK_FILTER-constant" title="Msf::Post::Windows::Error::INVALID_HOOK_FILTER (constant)">Error::INVALID_HOOK_FILTER</a></span>, <span class='object_link'><a href="Error.html#INVALID_HOOK_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_HOOK_HANDLE (constant)">Error::INVALID_HOOK_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_HW_PROFILE-constant" title="Msf::Post::Windows::Error::INVALID_HW_PROFILE (constant)">Error::INVALID_HW_PROFILE</a></span>, <span class='object_link'><a href="Error.html#INVALID_ICON_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_ICON_HANDLE (constant)">Error::INVALID_ICON_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_ID_AUTHORITY-constant" title="Msf::Post::Windows::Error::INVALID_ID_AUTHORITY (constant)">Error::INVALID_ID_AUTHORITY</a></span>, <span class='object_link'><a href="Error.html#INVALID_IMAGE_HASH-constant" title="Msf::Post::Windows::Error::INVALID_IMAGE_HASH (constant)">Error::INVALID_IMAGE_HASH</a></span>, <span class='object_link'><a href="Error.html#INVALID_IMPORT_OF_NON_DLL-constant" title="Msf::Post::Windows::Error::INVALID_IMPORT_OF_NON_DLL (constant)">Error::INVALID_IMPORT_OF_NON_DLL</a></span>, <span class='object_link'><a href="Error.html#INVALID_INDEX-constant" title="Msf::Post::Windows::Error::INVALID_INDEX (constant)">Error::INVALID_INDEX</a></span>, <span class='object_link'><a href="Error.html#INVALID_KEYBOARD_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_KEYBOARD_HANDLE (constant)">Error::INVALID_KEYBOARD_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_LABEL-constant" title="Msf::Post::Windows::Error::INVALID_LABEL (constant)">Error::INVALID_LABEL</a></span>, <span class='object_link'><a href="Error.html#INVALID_LB_MESSAGE-constant" title="Msf::Post::Windows::Error::INVALID_LB_MESSAGE (constant)">Error::INVALID_LB_MESSAGE</a></span>, <span class='object_link'><a href="Error.html#INVALID_LDT_DESCRIPTOR-constant" title="Msf::Post::Windows::Error::INVALID_LDT_DESCRIPTOR (constant)">Error::INVALID_LDT_DESCRIPTOR</a></span>, <span class='object_link'><a href="Error.html#INVALID_LDT_OFFSET-constant" title="Msf::Post::Windows::Error::INVALID_LDT_OFFSET (constant)">Error::INVALID_LDT_OFFSET</a></span>, <span class='object_link'><a href="Error.html#INVALID_LDT_SIZE-constant" title="Msf::Post::Windows::Error::INVALID_LDT_SIZE (constant)">Error::INVALID_LDT_SIZE</a></span>, <span class='object_link'><a href="Error.html#INVALID_LEVEL-constant" title="Msf::Post::Windows::Error::INVALID_LEVEL (constant)">Error::INVALID_LEVEL</a></span>, <span class='object_link'><a href="Error.html#INVALID_LIBRARY-constant" title="Msf::Post::Windows::Error::INVALID_LIBRARY (constant)">Error::INVALID_LIBRARY</a></span>, <span class='object_link'><a href="Error.html#INVALID_LIST_FORMAT-constant" title="Msf::Post::Windows::Error::INVALID_LIST_FORMAT (constant)">Error::INVALID_LIST_FORMAT</a></span>, <span class='object_link'><a href="Error.html#INVALID_LOCK_RANGE-constant" title="Msf::Post::Windows::Error::INVALID_LOCK_RANGE (constant)">Error::INVALID_LOCK_RANGE</a></span>, <span class='object_link'><a href="Error.html#INVALID_LOGON_HOURS-constant" title="Msf::Post::Windows::Error::INVALID_LOGON_HOURS (constant)">Error::INVALID_LOGON_HOURS</a></span>, <span class='object_link'><a href="Error.html#INVALID_LOGON_TYPE-constant" title="Msf::Post::Windows::Error::INVALID_LOGON_TYPE (constant)">Error::INVALID_LOGON_TYPE</a></span>, <span class='object_link'><a href="Error.html#INVALID_MEDIA-constant" title="Msf::Post::Windows::Error::INVALID_MEDIA (constant)">Error::INVALID_MEDIA</a></span>, <span class='object_link'><a href="Error.html#INVALID_MEDIA_POOL-constant" title="Msf::Post::Windows::Error::INVALID_MEDIA_POOL (constant)">Error::INVALID_MEDIA_POOL</a></span>, <span class='object_link'><a href="Error.html#INVALID_MEMBER-constant" title="Msf::Post::Windows::Error::INVALID_MEMBER (constant)">Error::INVALID_MEMBER</a></span>, <span class='object_link'><a href="Error.html#INVALID_MENU_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_MENU_HANDLE (constant)">Error::INVALID_MENU_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_MESSAGE-constant" title="Msf::Post::Windows::Error::INVALID_MESSAGE (constant)">Error::INVALID_MESSAGE</a></span>, <span class='object_link'><a href="Error.html#INVALID_MESSAGEDEST-constant" title="Msf::Post::Windows::Error::INVALID_MESSAGEDEST (constant)">Error::INVALID_MESSAGEDEST</a></span>, <span class='object_link'><a href="Error.html#INVALID_MESSAGENAME-constant" title="Msf::Post::Windows::Error::INVALID_MESSAGENAME (constant)">Error::INVALID_MESSAGENAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_MINALLOCSIZE-constant" title="Msf::Post::Windows::Error::INVALID_MINALLOCSIZE (constant)">Error::INVALID_MINALLOCSIZE</a></span>, <span class='object_link'><a href="Error.html#INVALID_MODULETYPE-constant" title="Msf::Post::Windows::Error::INVALID_MODULETYPE (constant)">Error::INVALID_MODULETYPE</a></span>, <span class='object_link'><a href="Error.html#INVALID_MONITOR_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_MONITOR_HANDLE (constant)">Error::INVALID_MONITOR_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_MSGBOX_STYLE-constant" title="Msf::Post::Windows::Error::INVALID_MSGBOX_STYLE (constant)">Error::INVALID_MSGBOX_STYLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_NAME-constant" title="Msf::Post::Windows::Error::INVALID_NAME (constant)">Error::INVALID_NAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_NETNAME-constant" title="Msf::Post::Windows::Error::INVALID_NETNAME (constant)">Error::INVALID_NETNAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_OPERATION-constant" title="Msf::Post::Windows::Error::INVALID_OPERATION (constant)">Error::INVALID_OPERATION</a></span>, <span class='object_link'><a href="Error.html#INVALID_OPERATION_ON_QUORUM-constant" title="Msf::Post::Windows::Error::INVALID_OPERATION_ON_QUORUM (constant)">Error::INVALID_OPERATION_ON_QUORUM</a></span>, <span class='object_link'><a href="Error.html#INVALID_OPLOCK_PROTOCOL-constant" title="Msf::Post::Windows::Error::INVALID_OPLOCK_PROTOCOL (constant)">Error::INVALID_OPLOCK_PROTOCOL</a></span>, <span class='object_link'><a href="Error.html#INVALID_ORDINAL-constant" title="Msf::Post::Windows::Error::INVALID_ORDINAL (constant)">Error::INVALID_ORDINAL</a></span>, <span class='object_link'><a href="Error.html#INVALID_OWNER-constant" title="Msf::Post::Windows::Error::INVALID_OWNER (constant)">Error::INVALID_OWNER</a></span>, <span class='object_link'><a href="Error.html#INVALID_PARAMETER-constant" title="Msf::Post::Windows::Error::INVALID_PARAMETER (constant)">Error::INVALID_PARAMETER</a></span>, <span class='object_link'><a href="Error.html#INVALID_PASSWORD-constant" title="Msf::Post::Windows::Error::INVALID_PASSWORD (constant)">Error::INVALID_PASSWORD</a></span>, <span class='object_link'><a href="Error.html#INVALID_PASSWORDNAME-constant" title="Msf::Post::Windows::Error::INVALID_PASSWORDNAME (constant)">Error::INVALID_PASSWORDNAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_PATCH_XML-constant" title="Msf::Post::Windows::Error::INVALID_PATCH_XML (constant)">Error::INVALID_PATCH_XML</a></span>, <span class='object_link'><a href="Error.html#INVALID_PIXEL_FORMAT-constant" title="Msf::Post::Windows::Error::INVALID_PIXEL_FORMAT (constant)">Error::INVALID_PIXEL_FORMAT</a></span>, <span class='object_link'><a href="Error.html#INVALID_PLUGPLAY_DEVICE_PATH-constant" title="Msf::Post::Windows::Error::INVALID_PLUGPLAY_DEVICE_PATH (constant)">Error::INVALID_PLUGPLAY_DEVICE_PATH</a></span>, <span class='object_link'><a href="Error.html#INVALID_PORT_ATTRIBUTES-constant" title="Msf::Post::Windows::Error::INVALID_PORT_ATTRIBUTES (constant)">Error::INVALID_PORT_ATTRIBUTES</a></span>, <span class='object_link'><a href="Error.html#INVALID_PRIMARY_GROUP-constant" title="Msf::Post::Windows::Error::INVALID_PRIMARY_GROUP (constant)">Error::INVALID_PRIMARY_GROUP</a></span>, <span class='object_link'><a href="Error.html#INVALID_PRINTER_COMMAND-constant" title="Msf::Post::Windows::Error::INVALID_PRINTER_COMMAND (constant)">Error::INVALID_PRINTER_COMMAND</a></span>, <span class='object_link'><a href="Error.html#INVALID_PRINTER_NAME-constant" title="Msf::Post::Windows::Error::INVALID_PRINTER_NAME (constant)">Error::INVALID_PRINTER_NAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_PRINTER_STATE-constant" title="Msf::Post::Windows::Error::INVALID_PRINTER_STATE (constant)">Error::INVALID_PRINTER_STATE</a></span>, <span class='object_link'><a href="Error.html#INVALID_PRINT_MONITOR-constant" title="Msf::Post::Windows::Error::INVALID_PRINT_MONITOR (constant)">Error::INVALID_PRINT_MONITOR</a></span>, <span class='object_link'><a href="Error.html#INVALID_PRIORITY-constant" title="Msf::Post::Windows::Error::INVALID_PRIORITY (constant)">Error::INVALID_PRIORITY</a></span>, <span class='object_link'><a href="Error.html#INVALID_PROFILE-constant" title="Msf::Post::Windows::Error::INVALID_PROFILE (constant)">Error::INVALID_PROFILE</a></span>, <span class='object_link'><a href="Error.html#INVALID_QUOTA_LOWER-constant" title="Msf::Post::Windows::Error::INVALID_QUOTA_LOWER (constant)">Error::INVALID_QUOTA_LOWER</a></span>, <span class='object_link'><a href="Error.html#INVALID_REPARSE_DATA-constant" title="Msf::Post::Windows::Error::INVALID_REPARSE_DATA (constant)">Error::INVALID_REPARSE_DATA</a></span>, <span class='object_link'><a href="Error.html#INVALID_SCROLLBAR_RANGE-constant" title="Msf::Post::Windows::Error::INVALID_SCROLLBAR_RANGE (constant)">Error::INVALID_SCROLLBAR_RANGE</a></span>, <span class='object_link'><a href="Error.html#INVALID_SECURITY_DESCR-constant" title="Msf::Post::Windows::Error::INVALID_SECURITY_DESCR (constant)">Error::INVALID_SECURITY_DESCR</a></span>, <span class='object_link'><a href="Error.html#INVALID_SEGDPL-constant" title="Msf::Post::Windows::Error::INVALID_SEGDPL (constant)">Error::INVALID_SEGDPL</a></span>, <span class='object_link'><a href="Error.html#INVALID_SEGMENT_NUMBER-constant" title="Msf::Post::Windows::Error::INVALID_SEGMENT_NUMBER (constant)">Error::INVALID_SEGMENT_NUMBER</a></span>, <span class='object_link'><a href="Error.html#INVALID_SEPARATOR_FILE-constant" title="Msf::Post::Windows::Error::INVALID_SEPARATOR_FILE (constant)">Error::INVALID_SEPARATOR_FILE</a></span>, <span class='object_link'><a href="Error.html#INVALID_SERVER_STATE-constant" title="Msf::Post::Windows::Error::INVALID_SERVER_STATE (constant)">Error::INVALID_SERVER_STATE</a></span>, <span class='object_link'><a href="Error.html#INVALID_SERVICENAME-constant" title="Msf::Post::Windows::Error::INVALID_SERVICENAME (constant)">Error::INVALID_SERVICENAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_SERVICE_ACCOUNT-constant" title="Msf::Post::Windows::Error::INVALID_SERVICE_ACCOUNT (constant)">Error::INVALID_SERVICE_ACCOUNT</a></span>, <span class='object_link'><a href="Error.html#INVALID_SERVICE_CONTROL-constant" title="Msf::Post::Windows::Error::INVALID_SERVICE_CONTROL (constant)">Error::INVALID_SERVICE_CONTROL</a></span>, <span class='object_link'><a href="Error.html#INVALID_SERVICE_LOCK-constant" title="Msf::Post::Windows::Error::INVALID_SERVICE_LOCK (constant)">Error::INVALID_SERVICE_LOCK</a></span>, <span class='object_link'><a href="Error.html#INVALID_SHARENAME-constant" title="Msf::Post::Windows::Error::INVALID_SHARENAME (constant)">Error::INVALID_SHARENAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_SHOWWIN_COMMAND-constant" title="Msf::Post::Windows::Error::INVALID_SHOWWIN_COMMAND (constant)">Error::INVALID_SHOWWIN_COMMAND</a></span>, <span class='object_link'><a href="Error.html#INVALID_SID-constant" title="Msf::Post::Windows::Error::INVALID_SID (constant)">Error::INVALID_SID</a></span>, <span class='object_link'><a href="Error.html#INVALID_SIGNAL_NUMBER-constant" title="Msf::Post::Windows::Error::INVALID_SIGNAL_NUMBER (constant)">Error::INVALID_SIGNAL_NUMBER</a></span>, <span class='object_link'><a href="Error.html#INVALID_SPI_VALUE-constant" title="Msf::Post::Windows::Error::INVALID_SPI_VALUE (constant)">Error::INVALID_SPI_VALUE</a></span>, <span class='object_link'><a href="Error.html#INVALID_STACKSEG-constant" title="Msf::Post::Windows::Error::INVALID_STACKSEG (constant)">Error::INVALID_STACKSEG</a></span>, <span class='object_link'><a href="Error.html#INVALID_STARTING_CODESEG-constant" title="Msf::Post::Windows::Error::INVALID_STARTING_CODESEG (constant)">Error::INVALID_STARTING_CODESEG</a></span>, <span class='object_link'><a href="Error.html#INVALID_STATE-constant" title="Msf::Post::Windows::Error::INVALID_STATE (constant)">Error::INVALID_STATE</a></span>, <span class='object_link'><a href="Error.html#INVALID_SUB_AUTHORITY-constant" title="Msf::Post::Windows::Error::INVALID_SUB_AUTHORITY (constant)">Error::INVALID_SUB_AUTHORITY</a></span>, <span class='object_link'><a href="Error.html#INVALID_TABLE-constant" title="Msf::Post::Windows::Error::INVALID_TABLE (constant)">Error::INVALID_TABLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_TARGET_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_TARGET_HANDLE (constant)">Error::INVALID_TARGET_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_TASK_INDEX-constant" title="Msf::Post::Windows::Error::INVALID_TASK_INDEX (constant)">Error::INVALID_TASK_INDEX</a></span>, <span class='object_link'><a href="Error.html#INVALID_TASK_NAME-constant" title="Msf::Post::Windows::Error::INVALID_TASK_NAME (constant)">Error::INVALID_TASK_NAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_THREAD_ID-constant" title="Msf::Post::Windows::Error::INVALID_THREAD_ID (constant)">Error::INVALID_THREAD_ID</a></span>, <span class='object_link'><a href="Error.html#INVALID_TIME-constant" title="Msf::Post::Windows::Error::INVALID_TIME (constant)">Error::INVALID_TIME</a></span>, <span class='object_link'><a href="Error.html#INVALID_TRANSACTION-constant" title="Msf::Post::Windows::Error::INVALID_TRANSACTION (constant)">Error::INVALID_TRANSACTION</a></span>, <span class='object_link'><a href="Error.html#INVALID_TRANSFORM-constant" title="Msf::Post::Windows::Error::INVALID_TRANSFORM (constant)">Error::INVALID_TRANSFORM</a></span>, <span class='object_link'><a href="Error.html#INVALID_UNWIND_TARGET-constant" title="Msf::Post::Windows::Error::INVALID_UNWIND_TARGET (constant)">Error::INVALID_UNWIND_TARGET</a></span>, <span class='object_link'><a href="Error.html#INVALID_USER_BUFFER-constant" title="Msf::Post::Windows::Error::INVALID_USER_BUFFER (constant)">Error::INVALID_USER_BUFFER</a></span>, <span class='object_link'><a href="Error.html#INVALID_USER_PRINCIPAL_NAME-constant" title="Msf::Post::Windows::Error::INVALID_USER_PRINCIPAL_NAME (constant)">Error::INVALID_USER_PRINCIPAL_NAME</a></span>, <span class='object_link'><a href="Error.html#INVALID_VARIANT-constant" title="Msf::Post::Windows::Error::INVALID_VARIANT (constant)">Error::INVALID_VARIANT</a></span>, <span class='object_link'><a href="Error.html#INVALID_VERIFY_SWITCH-constant" title="Msf::Post::Windows::Error::INVALID_VERIFY_SWITCH (constant)">Error::INVALID_VERIFY_SWITCH</a></span>, <span class='object_link'><a href="Error.html#INVALID_WINDOW_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_WINDOW_HANDLE (constant)">Error::INVALID_WINDOW_HANDLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_WINDOW_STYLE-constant" title="Msf::Post::Windows::Error::INVALID_WINDOW_STYLE (constant)">Error::INVALID_WINDOW_STYLE</a></span>, <span class='object_link'><a href="Error.html#INVALID_WORKSTATION-constant" title="Msf::Post::Windows::Error::INVALID_WORKSTATION (constant)">Error::INVALID_WORKSTATION</a></span>, <span class='object_link'><a href="Error.html#IOPL_NOT_ENABLED-constant" title="Msf::Post::Windows::Error::IOPL_NOT_ENABLED (constant)">Error::IOPL_NOT_ENABLED</a></span>, <span class='object_link'><a href="Error.html#IO_DEVICE-constant" title="Msf::Post::Windows::Error::IO_DEVICE (constant)">Error::IO_DEVICE</a></span>, <span class='object_link'><a href="Error.html#IO_INCOMPLETE-constant" title="Msf::Post::Windows::Error::IO_INCOMPLETE (constant)">Error::IO_INCOMPLETE</a></span>, <span class='object_link'><a href="Error.html#IO_PENDING-constant" title="Msf::Post::Windows::Error::IO_PENDING (constant)">Error::IO_PENDING</a></span>, <span class='object_link'><a href="Error.html#IO_PRIVILEGE_FAILED-constant" title="Msf::Post::Windows::Error::IO_PRIVILEGE_FAILED (constant)">Error::IO_PRIVILEGE_FAILED</a></span>, <span class='object_link'><a href="Error.html#IO_REISSUE_AS_CACHED-constant" title="Msf::Post::Windows::Error::IO_REISSUE_AS_CACHED (constant)">Error::IO_REISSUE_AS_CACHED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_AUTH_FIREWALL_DROP-constant" title="Msf::Post::Windows::Error::IPSEC_AUTH_FIREWALL_DROP (constant)">Error::IPSEC_AUTH_FIREWALL_DROP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_BAD_SPI-constant" title="Msf::Post::Windows::Error::IPSEC_BAD_SPI (constant)">Error::IPSEC_BAD_SPI</a></span>, <span class='object_link'><a href="Error.html#IPSEC_CLEAR_TEXT_DROP-constant" title="Msf::Post::Windows::Error::IPSEC_CLEAR_TEXT_DROP (constant)">Error::IPSEC_CLEAR_TEXT_DROP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DEFAULT_MM_AUTH_NOT_FOUND-constant" title="Msf::Post::Windows::Error::IPSEC_DEFAULT_MM_AUTH_NOT_FOUND (constant)">Error::IPSEC_DEFAULT_MM_AUTH_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DEFAULT_MM_POLICY_NOT_FOUND-constant" title="Msf::Post::Windows::Error::IPSEC_DEFAULT_MM_POLICY_NOT_FOUND (constant)">Error::IPSEC_DEFAULT_MM_POLICY_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DEFAULT_QM_POLICY_NOT_FOUND-constant" title="Msf::Post::Windows::Error::IPSEC_DEFAULT_QM_POLICY_NOT_FOUND (constant)">Error::IPSEC_DEFAULT_QM_POLICY_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DOSP_BLOCK-constant" title="Msf::Post::Windows::Error::IPSEC_DOSP_BLOCK (constant)">Error::IPSEC_DOSP_BLOCK</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DOSP_INVALID_PACKET-constant" title="Msf::Post::Windows::Error::IPSEC_DOSP_INVALID_PACKET (constant)">Error::IPSEC_DOSP_INVALID_PACKET</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DOSP_KEYMOD_NOT_ALLOWED-constant" title="Msf::Post::Windows::Error::IPSEC_DOSP_KEYMOD_NOT_ALLOWED (constant)">Error::IPSEC_DOSP_KEYMOD_NOT_ALLOWED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DOSP_MAX_ENTRIES-constant" title="Msf::Post::Windows::Error::IPSEC_DOSP_MAX_ENTRIES (constant)">Error::IPSEC_DOSP_MAX_ENTRIES</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES-constant" title="Msf::Post::Windows::Error::IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES (constant)">Error::IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DOSP_NOT_INSTALLED-constant" title="Msf::Post::Windows::Error::IPSEC_DOSP_NOT_INSTALLED (constant)">Error::IPSEC_DOSP_NOT_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DOSP_RECEIVED_MULTICAST-constant" title="Msf::Post::Windows::Error::IPSEC_DOSP_RECEIVED_MULTICAST (constant)">Error::IPSEC_DOSP_RECEIVED_MULTICAST</a></span>, <span class='object_link'><a href="Error.html#IPSEC_DOSP_STATE_LOOKUP_FAILED-constant" title="Msf::Post::Windows::Error::IPSEC_DOSP_STATE_LOOKUP_FAILED (constant)">Error::IPSEC_DOSP_STATE_LOOKUP_FAILED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_ADD_UPDATE_KEY_FAILED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_ADD_UPDATE_KEY_FAILED (constant)">Error::IPSEC_IKE_ADD_UPDATE_KEY_FAILED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_ATTRIB_FAIL-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_ATTRIB_FAIL (constant)">Error::IPSEC_IKE_ATTRIB_FAIL</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_AUTHORIZATION_FAILURE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_AUTHORIZATION_FAILURE (constant)">Error::IPSEC_IKE_AUTHORIZATION_FAILURE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY (constant)">Error::IPSEC_IKE_AUTHORIZATION_FAILURE_WITH_OPTIONAL_RETRY</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_AUTH_FAIL-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_AUTH_FAIL (constant)">Error::IPSEC_IKE_AUTH_FAIL</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_BENIGN_REINIT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_BENIGN_REINIT (constant)">Error::IPSEC_IKE_BENIGN_REINIT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH (constant)">Error::IPSEC_IKE_CERT_CHAIN_POLICY_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_CGA_AUTH_FAILED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_CGA_AUTH_FAILED (constant)">Error::IPSEC_IKE_CGA_AUTH_FAILED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_COEXISTENCE_SUPPRESS-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_COEXISTENCE_SUPPRESS (constant)">Error::IPSEC_IKE_COEXISTENCE_SUPPRESS</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED (constant)">Error::IPSEC_IKE_CRITICAL_PAYLOAD_NOT_RECOGNIZED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_CRL_FAILED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_CRL_FAILED (constant)">Error::IPSEC_IKE_CRL_FAILED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_DECRYPT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_DECRYPT (constant)">Error::IPSEC_IKE_DECRYPT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_DH_FAIL-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_DH_FAIL (constant)">Error::IPSEC_IKE_DH_FAIL</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_DH_FAILURE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_DH_FAILURE (constant)">Error::IPSEC_IKE_DH_FAILURE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_DOS_COOKIE_SENT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_DOS_COOKIE_SENT (constant)">Error::IPSEC_IKE_DOS_COOKIE_SENT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_DROP_NO_RESPONSE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_DROP_NO_RESPONSE (constant)">Error::IPSEC_IKE_DROP_NO_RESPONSE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_ENCRYPT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_ENCRYPT (constant)">Error::IPSEC_IKE_ENCRYPT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_ERROR-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_ERROR (constant)">Error::IPSEC_IKE_ERROR</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_FAILQUERYSSP-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_FAILQUERYSSP (constant)">Error::IPSEC_IKE_FAILQUERYSSP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_FAILSSPINIT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_FAILSSPINIT (constant)">Error::IPSEC_IKE_FAILSSPINIT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_GENERAL_PROCESSING_ERROR-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_GENERAL_PROCESSING_ERROR (constant)">Error::IPSEC_IKE_GENERAL_PROCESSING_ERROR</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_GETSPIFAIL-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_GETSPIFAIL (constant)">Error::IPSEC_IKE_GETSPIFAIL</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE (constant)">Error::IPSEC_IKE_INNER_IP_ASSIGNMENT_FAILURE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_AUTH_ALG-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_AUTH_ALG (constant)">Error::IPSEC_IKE_INVALID_AUTH_ALG</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_AUTH_PAYLOAD-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_AUTH_PAYLOAD (constant)">Error::IPSEC_IKE_INVALID_AUTH_PAYLOAD</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_CERT_KEYLEN-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_CERT_KEYLEN (constant)">Error::IPSEC_IKE_INVALID_CERT_KEYLEN</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_CERT_TYPE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_CERT_TYPE (constant)">Error::IPSEC_IKE_INVALID_CERT_TYPE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_COOKIE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_COOKIE (constant)">Error::IPSEC_IKE_INVALID_COOKIE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_ENCRYPT_ALG-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_ENCRYPT_ALG (constant)">Error::IPSEC_IKE_INVALID_ENCRYPT_ALG</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_FILTER-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_FILTER (constant)">Error::IPSEC_IKE_INVALID_FILTER</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_GROUP-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_GROUP (constant)">Error::IPSEC_IKE_INVALID_GROUP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_HASH-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_HASH (constant)">Error::IPSEC_IKE_INVALID_HASH</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_HASH_ALG-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_HASH_ALG (constant)">Error::IPSEC_IKE_INVALID_HASH_ALG</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_HASH_SIZE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_HASH_SIZE (constant)">Error::IPSEC_IKE_INVALID_HASH_SIZE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_HEADER-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_HEADER (constant)">Error::IPSEC_IKE_INVALID_HEADER</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_KEY_USAGE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_KEY_USAGE (constant)">Error::IPSEC_IKE_INVALID_KEY_USAGE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_MM_FOR_QM-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_MM_FOR_QM (constant)">Error::IPSEC_IKE_INVALID_MM_FOR_QM</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_PAYLOAD-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_PAYLOAD (constant)">Error::IPSEC_IKE_INVALID_PAYLOAD</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_POLICY-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_POLICY (constant)">Error::IPSEC_IKE_INVALID_POLICY</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY (constant)">Error::IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_SIG-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_SIG (constant)">Error::IPSEC_IKE_INVALID_SIG</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_SIGNATURE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_SIGNATURE (constant)">Error::IPSEC_IKE_INVALID_SIGNATURE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_INVALID_SITUATION-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_INVALID_SITUATION (constant)">Error::IPSEC_IKE_INVALID_SITUATION</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_KERBEROS_ERROR-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_KERBEROS_ERROR (constant)">Error::IPSEC_IKE_KERBEROS_ERROR</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL (constant)">Error::IPSEC_IKE_KILL_DUMMY_NAP_TUNNEL</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_LOAD_FAILED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_LOAD_FAILED (constant)">Error::IPSEC_IKE_LOAD_FAILED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_LOAD_SOFT_SA-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_LOAD_SOFT_SA (constant)">Error::IPSEC_IKE_LOAD_SOFT_SA</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_MM_ACQUIRE_DROP-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_MM_ACQUIRE_DROP (constant)">Error::IPSEC_IKE_MM_ACQUIRE_DROP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_MM_DELAY_DROP-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_MM_DELAY_DROP (constant)">Error::IPSEC_IKE_MM_DELAY_DROP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_MM_EXPIRED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_MM_EXPIRED (constant)">Error::IPSEC_IKE_MM_EXPIRED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_MM_LIMIT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_MM_LIMIT (constant)">Error::IPSEC_IKE_MM_LIMIT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NEGOTIATION_DISABLED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NEGOTIATION_DISABLED (constant)">Error::IPSEC_IKE_NEGOTIATION_DISABLED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NEGOTIATION_PENDING-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NEGOTIATION_PENDING (constant)">Error::IPSEC_IKE_NEGOTIATION_PENDING</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NEG_STATUS_END-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NEG_STATUS_END (constant)">Error::IPSEC_IKE_NEG_STATUS_END</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NOTCBPRIV-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NOTCBPRIV (constant)">Error::IPSEC_IKE_NOTCBPRIV</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NO_CERT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NO_CERT (constant)">Error::IPSEC_IKE_NO_CERT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NO_MM_POLICY-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NO_MM_POLICY (constant)">Error::IPSEC_IKE_NO_MM_POLICY</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NO_PEER_CERT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NO_PEER_CERT (constant)">Error::IPSEC_IKE_NO_PEER_CERT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NO_POLICY-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NO_POLICY (constant)">Error::IPSEC_IKE_NO_POLICY</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NO_PRIVATE_KEY-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NO_PRIVATE_KEY (constant)">Error::IPSEC_IKE_NO_PRIVATE_KEY</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_NO_PUBLIC_KEY-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_NO_PUBLIC_KEY (constant)">Error::IPSEC_IKE_NO_PUBLIC_KEY</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_OUT_OF_MEMORY-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_OUT_OF_MEMORY (constant)">Error::IPSEC_IKE_OUT_OF_MEMORY</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PEER_CRL_FAILED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PEER_CRL_FAILED (constant)">Error::IPSEC_IKE_PEER_CRL_FAILED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE (constant)">Error::IPSEC_IKE_PEER_DOESNT_SUPPORT_MOBIKE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PEER_MM_ASSUMED_INVALID-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PEER_MM_ASSUMED_INVALID (constant)">Error::IPSEC_IKE_PEER_MM_ASSUMED_INVALID</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_POLICY_CHANGE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_POLICY_CHANGE (constant)">Error::IPSEC_IKE_POLICY_CHANGE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_POLICY_MATCH-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_POLICY_MATCH (constant)">Error::IPSEC_IKE_POLICY_MATCH</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR (constant)">Error::IPSEC_IKE_PROCESS_ERR</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_CERT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_CERT (constant)">Error::IPSEC_IKE_PROCESS_ERR_CERT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_CERT_REQ-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_CERT_REQ (constant)">Error::IPSEC_IKE_PROCESS_ERR_CERT_REQ</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_DELETE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_DELETE (constant)">Error::IPSEC_IKE_PROCESS_ERR_DELETE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_HASH-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_HASH (constant)">Error::IPSEC_IKE_PROCESS_ERR_HASH</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_ID-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_ID (constant)">Error::IPSEC_IKE_PROCESS_ERR_ID</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_KE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_KE (constant)">Error::IPSEC_IKE_PROCESS_ERR_KE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_NATOA-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_NATOA (constant)">Error::IPSEC_IKE_PROCESS_ERR_NATOA</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_NONCE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_NONCE (constant)">Error::IPSEC_IKE_PROCESS_ERR_NONCE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_NOTIFY-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_NOTIFY (constant)">Error::IPSEC_IKE_PROCESS_ERR_NOTIFY</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_PROP-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_PROP (constant)">Error::IPSEC_IKE_PROCESS_ERR_PROP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_SA-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_SA (constant)">Error::IPSEC_IKE_PROCESS_ERR_SA</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_SIG-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_SIG (constant)">Error::IPSEC_IKE_PROCESS_ERR_SIG</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_TRANS-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_TRANS (constant)">Error::IPSEC_IKE_PROCESS_ERR_TRANS</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_PROCESS_ERR_VENDOR-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_PROCESS_ERR_VENDOR (constant)">Error::IPSEC_IKE_PROCESS_ERR_VENDOR</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_QM_ACQUIRE_DROP-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_QM_ACQUIRE_DROP (constant)">Error::IPSEC_IKE_QM_ACQUIRE_DROP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_QM_DELAY_DROP-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_QM_DELAY_DROP (constant)">Error::IPSEC_IKE_QM_DELAY_DROP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_QM_EXPIRED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_QM_EXPIRED (constant)">Error::IPSEC_IKE_QM_EXPIRED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_QM_LIMIT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_QM_LIMIT (constant)">Error::IPSEC_IKE_QM_LIMIT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_QM_LIMIT_REAP-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_QM_LIMIT_REAP (constant)">Error::IPSEC_IKE_QM_LIMIT_REAP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_QUEUE_DROP_MM-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_QUEUE_DROP_MM (constant)">Error::IPSEC_IKE_QUEUE_DROP_MM</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_QUEUE_DROP_NO_MM-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_QUEUE_DROP_NO_MM (constant)">Error::IPSEC_IKE_QUEUE_DROP_NO_MM</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_RATELIMIT_DROP-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_RATELIMIT_DROP (constant)">Error::IPSEC_IKE_RATELIMIT_DROP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING (constant)">Error::IPSEC_IKE_REQUIRE_CP_PAYLOAD_MISSING</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_RPC_DELETE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_RPC_DELETE (constant)">Error::IPSEC_IKE_RPC_DELETE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_SA_DELETED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_SA_DELETED (constant)">Error::IPSEC_IKE_SA_DELETED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_SA_REAPED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_SA_REAPED (constant)">Error::IPSEC_IKE_SA_REAPED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_SECLOADFAIL-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_SECLOADFAIL (constant)">Error::IPSEC_IKE_SECLOADFAIL</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_SHUTTING_DOWN-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_SHUTTING_DOWN (constant)">Error::IPSEC_IKE_SHUTTING_DOWN</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_SOFT_SA_TORN_DOWN-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_SOFT_SA_TORN_DOWN (constant)">Error::IPSEC_IKE_SOFT_SA_TORN_DOWN</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_SRVACQFAIL-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_SRVACQFAIL (constant)">Error::IPSEC_IKE_SRVACQFAIL</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_SRVQUERYCRED-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_SRVQUERYCRED (constant)">Error::IPSEC_IKE_SRVQUERYCRED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE (constant)">Error::IPSEC_IKE_STRONG_CRED_AUTHORIZATION_AND_CERTMAP_FAILURE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE (constant)">Error::IPSEC_IKE_STRONG_CRED_AUTHORIZATION_FAILURE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_TIMED_OUT-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_TIMED_OUT (constant)">Error::IPSEC_IKE_TIMED_OUT</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_TOO_MANY_FILTERS-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_TOO_MANY_FILTERS (constant)">Error::IPSEC_IKE_TOO_MANY_FILTERS</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_UNEXPECTED_MESSAGE_ID-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_UNEXPECTED_MESSAGE_ID (constant)">Error::IPSEC_IKE_UNEXPECTED_MESSAGE_ID</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_UNKNOWN_DOI-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_UNKNOWN_DOI (constant)">Error::IPSEC_IKE_UNKNOWN_DOI</a></span>, <span class='object_link'><a href="Error.html#IPSEC_IKE_UNSUPPORTED_ID-constant" title="Msf::Post::Windows::Error::IPSEC_IKE_UNSUPPORTED_ID (constant)">Error::IPSEC_IKE_UNSUPPORTED_ID</a></span>, <span class='object_link'><a href="Error.html#IPSEC_INTEGRITY_CHECK_FAILED-constant" title="Msf::Post::Windows::Error::IPSEC_INTEGRITY_CHECK_FAILED (constant)">Error::IPSEC_INTEGRITY_CHECK_FAILED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_INVALID_PACKET-constant" title="Msf::Post::Windows::Error::IPSEC_INVALID_PACKET (constant)">Error::IPSEC_INVALID_PACKET</a></span>, <span class='object_link'><a href="Error.html#IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING-constant" title="Msf::Post::Windows::Error::IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING (constant)">Error::IPSEC_KEY_MODULE_IMPERSONATION_NEGOTIATION_PENDING</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_AUTH_EXISTS-constant" title="Msf::Post::Windows::Error::IPSEC_MM_AUTH_EXISTS (constant)">Error::IPSEC_MM_AUTH_EXISTS</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_AUTH_IN_USE-constant" title="Msf::Post::Windows::Error::IPSEC_MM_AUTH_IN_USE (constant)">Error::IPSEC_MM_AUTH_IN_USE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_AUTH_NOT_FOUND-constant" title="Msf::Post::Windows::Error::IPSEC_MM_AUTH_NOT_FOUND (constant)">Error::IPSEC_MM_AUTH_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_AUTH_PENDING_DELETION-constant" title="Msf::Post::Windows::Error::IPSEC_MM_AUTH_PENDING_DELETION (constant)">Error::IPSEC_MM_AUTH_PENDING_DELETION</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_FILTER_EXISTS-constant" title="Msf::Post::Windows::Error::IPSEC_MM_FILTER_EXISTS (constant)">Error::IPSEC_MM_FILTER_EXISTS</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_FILTER_NOT_FOUND-constant" title="Msf::Post::Windows::Error::IPSEC_MM_FILTER_NOT_FOUND (constant)">Error::IPSEC_MM_FILTER_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_FILTER_PENDING_DELETION-constant" title="Msf::Post::Windows::Error::IPSEC_MM_FILTER_PENDING_DELETION (constant)">Error::IPSEC_MM_FILTER_PENDING_DELETION</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_POLICY_EXISTS-constant" title="Msf::Post::Windows::Error::IPSEC_MM_POLICY_EXISTS (constant)">Error::IPSEC_MM_POLICY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_POLICY_IN_USE-constant" title="Msf::Post::Windows::Error::IPSEC_MM_POLICY_IN_USE (constant)">Error::IPSEC_MM_POLICY_IN_USE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_POLICY_NOT_FOUND-constant" title="Msf::Post::Windows::Error::IPSEC_MM_POLICY_NOT_FOUND (constant)">Error::IPSEC_MM_POLICY_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#IPSEC_MM_POLICY_PENDING_DELETION-constant" title="Msf::Post::Windows::Error::IPSEC_MM_POLICY_PENDING_DELETION (constant)">Error::IPSEC_MM_POLICY_PENDING_DELETION</a></span>, <span class='object_link'><a href="Error.html#IPSEC_QM_POLICY_EXISTS-constant" title="Msf::Post::Windows::Error::IPSEC_QM_POLICY_EXISTS (constant)">Error::IPSEC_QM_POLICY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#IPSEC_QM_POLICY_IN_USE-constant" title="Msf::Post::Windows::Error::IPSEC_QM_POLICY_IN_USE (constant)">Error::IPSEC_QM_POLICY_IN_USE</a></span>, <span class='object_link'><a href="Error.html#IPSEC_QM_POLICY_NOT_FOUND-constant" title="Msf::Post::Windows::Error::IPSEC_QM_POLICY_NOT_FOUND (constant)">Error::IPSEC_QM_POLICY_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#IPSEC_QM_POLICY_PENDING_DELETION-constant" title="Msf::Post::Windows::Error::IPSEC_QM_POLICY_PENDING_DELETION (constant)">Error::IPSEC_QM_POLICY_PENDING_DELETION</a></span>, <span class='object_link'><a href="Error.html#IPSEC_REPLAY_CHECK_FAILED-constant" title="Msf::Post::Windows::Error::IPSEC_REPLAY_CHECK_FAILED (constant)">Error::IPSEC_REPLAY_CHECK_FAILED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_SA_LIFETIME_EXPIRED-constant" title="Msf::Post::Windows::Error::IPSEC_SA_LIFETIME_EXPIRED (constant)">Error::IPSEC_SA_LIFETIME_EXPIRED</a></span>, <span class='object_link'><a href="Error.html#IPSEC_THROTTLE_DROP-constant" title="Msf::Post::Windows::Error::IPSEC_THROTTLE_DROP (constant)">Error::IPSEC_THROTTLE_DROP</a></span>, <span class='object_link'><a href="Error.html#IPSEC_TRANSPORT_FILTER_EXISTS-constant" title="Msf::Post::Windows::Error::IPSEC_TRANSPORT_FILTER_EXISTS (constant)">Error::IPSEC_TRANSPORT_FILTER_EXISTS</a></span>, <span class='object_link'><a href="Error.html#IPSEC_TRANSPORT_FILTER_NOT_FOUND-constant" title="Msf::Post::Windows::Error::IPSEC_TRANSPORT_FILTER_NOT_FOUND (constant)">Error::IPSEC_TRANSPORT_FILTER_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#IPSEC_TRANSPORT_FILTER_PENDING_DELETION-constant" title="Msf::Post::Windows::Error::IPSEC_TRANSPORT_FILTER_PENDING_DELETION (constant)">Error::IPSEC_TRANSPORT_FILTER_PENDING_DELETION</a></span>, <span class='object_link'><a href="Error.html#IPSEC_TUNNEL_FILTER_EXISTS-constant" title="Msf::Post::Windows::Error::IPSEC_TUNNEL_FILTER_EXISTS (constant)">Error::IPSEC_TUNNEL_FILTER_EXISTS</a></span>, <span class='object_link'><a href="Error.html#IPSEC_TUNNEL_FILTER_NOT_FOUND-constant" title="Msf::Post::Windows::Error::IPSEC_TUNNEL_FILTER_NOT_FOUND (constant)">Error::IPSEC_TUNNEL_FILTER_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#IPSEC_TUNNEL_FILTER_PENDING_DELETION-constant" title="Msf::Post::Windows::Error::IPSEC_TUNNEL_FILTER_PENDING_DELETION (constant)">Error::IPSEC_TUNNEL_FILTER_PENDING_DELETION</a></span>, <span class='object_link'><a href="Error.html#IPSEC_WRONG_SA-constant" title="Msf::Post::Windows::Error::IPSEC_WRONG_SA (constant)">Error::IPSEC_WRONG_SA</a></span>, <span class='object_link'><a href="Error.html#IP_ADDRESS_CONFLICT1-constant" title="Msf::Post::Windows::Error::IP_ADDRESS_CONFLICT1 (constant)">Error::IP_ADDRESS_CONFLICT1</a></span>, <span class='object_link'><a href="Error.html#IP_ADDRESS_CONFLICT2-constant" title="Msf::Post::Windows::Error::IP_ADDRESS_CONFLICT2 (constant)">Error::IP_ADDRESS_CONFLICT2</a></span>, <span class='object_link'><a href="Error.html#IRQ_BUSY-constant" title="Msf::Post::Windows::Error::IRQ_BUSY (constant)">Error::IRQ_BUSY</a></span>, <span class='object_link'><a href="Error.html#IS_JOINED-constant" title="Msf::Post::Windows::Error::IS_JOINED (constant)">Error::IS_JOINED</a></span>, <span class='object_link'><a href="Error.html#IS_JOIN_PATH-constant" title="Msf::Post::Windows::Error::IS_JOIN_PATH (constant)">Error::IS_JOIN_PATH</a></span>, <span class='object_link'><a href="Error.html#IS_JOIN_TARGET-constant" title="Msf::Post::Windows::Error::IS_JOIN_TARGET (constant)">Error::IS_JOIN_TARGET</a></span>, <span class='object_link'><a href="Error.html#IS_SUBSTED-constant" title="Msf::Post::Windows::Error::IS_SUBSTED (constant)">Error::IS_SUBSTED</a></span>, <span class='object_link'><a href="Error.html#IS_SUBST_PATH-constant" title="Msf::Post::Windows::Error::IS_SUBST_PATH (constant)">Error::IS_SUBST_PATH</a></span>, <span class='object_link'><a href="Error.html#IS_SUBST_TARGET-constant" title="Msf::Post::Windows::Error::IS_SUBST_TARGET (constant)">Error::IS_SUBST_TARGET</a></span>, <span class='object_link'><a href="Error.html#ITERATED_DATA_EXCEEDS_64k-constant" title="Msf::Post::Windows::Error::ITERATED_DATA_EXCEEDS_64k (constant)">Error::ITERATED_DATA_EXCEEDS_64k</a></span>, <span class='object_link'><a href="Error.html#JOIN_TO_JOIN-constant" title="Msf::Post::Windows::Error::JOIN_TO_JOIN (constant)">Error::JOIN_TO_JOIN</a></span>, <span class='object_link'><a href="Error.html#JOIN_TO_SUBST-constant" title="Msf::Post::Windows::Error::JOIN_TO_SUBST (constant)">Error::JOIN_TO_SUBST</a></span>, <span class='object_link'><a href="Error.html#JOURNAL_DELETE_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::JOURNAL_DELETE_IN_PROGRESS (constant)">Error::JOURNAL_DELETE_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#JOURNAL_ENTRY_DELETED-constant" title="Msf::Post::Windows::Error::JOURNAL_ENTRY_DELETED (constant)">Error::JOURNAL_ENTRY_DELETED</a></span>, <span class='object_link'><a href="Error.html#JOURNAL_HOOK_SET-constant" title="Msf::Post::Windows::Error::JOURNAL_HOOK_SET (constant)">Error::JOURNAL_HOOK_SET</a></span>, <span class='object_link'><a href="Error.html#JOURNAL_NOT_ACTIVE-constant" title="Msf::Post::Windows::Error::JOURNAL_NOT_ACTIVE (constant)">Error::JOURNAL_NOT_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#KERNEL_APC-constant" title="Msf::Post::Windows::Error::KERNEL_APC (constant)">Error::KERNEL_APC</a></span>, <span class='object_link'><a href="Error.html#KEY_DELETED-constant" title="Msf::Post::Windows::Error::KEY_DELETED (constant)">Error::KEY_DELETED</a></span>, <span class='object_link'><a href="Error.html#KEY_HAS_CHILDREN-constant" title="Msf::Post::Windows::Error::KEY_HAS_CHILDREN (constant)">Error::KEY_HAS_CHILDREN</a></span>, <span class='object_link'><a href="Error.html#KM_DRIVER_BLOCKED-constant" title="Msf::Post::Windows::Error::KM_DRIVER_BLOCKED (constant)">Error::KM_DRIVER_BLOCKED</a></span>, <span class='object_link'><a href="Error.html#LABEL_TOO_LONG-constant" title="Msf::Post::Windows::Error::LABEL_TOO_LONG (constant)">Error::LABEL_TOO_LONG</a></span>, <span class='object_link'><a href="Error.html#LAST_ADMIN-constant" title="Msf::Post::Windows::Error::LAST_ADMIN (constant)">Error::LAST_ADMIN</a></span>, <span class='object_link'><a href="Error.html#LB_WITHOUT_TABSTOPS-constant" title="Msf::Post::Windows::Error::LB_WITHOUT_TABSTOPS (constant)">Error::LB_WITHOUT_TABSTOPS</a></span>, <span class='object_link'><a href="Error.html#LIBRARY_FULL-constant" title="Msf::Post::Windows::Error::LIBRARY_FULL (constant)">Error::LIBRARY_FULL</a></span>, <span class='object_link'><a href="Error.html#LIBRARY_OFFLINE-constant" title="Msf::Post::Windows::Error::LIBRARY_OFFLINE (constant)">Error::LIBRARY_OFFLINE</a></span>, <span class='object_link'><a href="Error.html#LICENSE_QUOTA_EXCEEDED-constant" title="Msf::Post::Windows::Error::LICENSE_QUOTA_EXCEEDED (constant)">Error::LICENSE_QUOTA_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#LISTBOX_ID_NOT_FOUND-constant" title="Msf::Post::Windows::Error::LISTBOX_ID_NOT_FOUND (constant)">Error::LISTBOX_ID_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#LM_CROSS_ENCRYPTION_REQUIRED-constant" title="Msf::Post::Windows::Error::LM_CROSS_ENCRYPTION_REQUIRED (constant)">Error::LM_CROSS_ENCRYPTION_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#LOCAL_USER_SESSION_KEY-constant" title="Msf::Post::Windows::Error::LOCAL_USER_SESSION_KEY (constant)">Error::LOCAL_USER_SESSION_KEY</a></span>, <span class='object_link'><a href="Error.html#LOCKED-constant" title="Msf::Post::Windows::Error::LOCKED (constant)">Error::LOCKED</a></span>, <span class='object_link'><a href="Error.html#LOCK_FAILED-constant" title="Msf::Post::Windows::Error::LOCK_FAILED (constant)">Error::LOCK_FAILED</a></span>, <span class='object_link'><a href="Error.html#LOCK_VIOLATION-constant" title="Msf::Post::Windows::Error::LOCK_VIOLATION (constant)">Error::LOCK_VIOLATION</a></span>, <span class='object_link'><a href="Error.html#LOGIN_TIME_RESTRICTION-constant" title="Msf::Post::Windows::Error::LOGIN_TIME_RESTRICTION (constant)">Error::LOGIN_TIME_RESTRICTION</a></span>, <span class='object_link'><a href="Error.html#LOGIN_WKSTA_RESTRICTION-constant" title="Msf::Post::Windows::Error::LOGIN_WKSTA_RESTRICTION (constant)">Error::LOGIN_WKSTA_RESTRICTION</a></span>, <span class='object_link'><a href="Error.html#LOGON_FAILURE-constant" title="Msf::Post::Windows::Error::LOGON_FAILURE (constant)">Error::LOGON_FAILURE</a></span>, <span class='object_link'><a href="Error.html#LOGON_NOT_GRANTED-constant" title="Msf::Post::Windows::Error::LOGON_NOT_GRANTED (constant)">Error::LOGON_NOT_GRANTED</a></span>, <span class='object_link'><a href="Error.html#LOGON_SERVER_CONFLICT-constant" title="Msf::Post::Windows::Error::LOGON_SERVER_CONFLICT (constant)">Error::LOGON_SERVER_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#LOGON_SESSION_COLLISION-constant" title="Msf::Post::Windows::Error::LOGON_SESSION_COLLISION (constant)">Error::LOGON_SESSION_COLLISION</a></span>, <span class='object_link'><a href="Error.html#LOGON_SESSION_EXISTS-constant" title="Msf::Post::Windows::Error::LOGON_SESSION_EXISTS (constant)">Error::LOGON_SESSION_EXISTS</a></span>, <span class='object_link'><a href="Error.html#LOGON_TYPE_NOT_GRANTED-constant" title="Msf::Post::Windows::Error::LOGON_TYPE_NOT_GRANTED (constant)">Error::LOGON_TYPE_NOT_GRANTED</a></span>, <span class='object_link'><a href="Error.html#LOG_APPENDED_FLUSH_FAILED-constant" title="Msf::Post::Windows::Error::LOG_APPENDED_FLUSH_FAILED (constant)">Error::LOG_APPENDED_FLUSH_FAILED</a></span>, <span class='object_link'><a href="Error.html#LOG_ARCHIVE_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::LOG_ARCHIVE_IN_PROGRESS (constant)">Error::LOG_ARCHIVE_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#LOG_ARCHIVE_NOT_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::LOG_ARCHIVE_NOT_IN_PROGRESS (constant)">Error::LOG_ARCHIVE_NOT_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#LOG_BLOCKS_EXHAUSTED-constant" title="Msf::Post::Windows::Error::LOG_BLOCKS_EXHAUSTED (constant)">Error::LOG_BLOCKS_EXHAUSTED</a></span>, <span class='object_link'><a href="Error.html#LOG_BLOCK_INCOMPLETE-constant" title="Msf::Post::Windows::Error::LOG_BLOCK_INCOMPLETE (constant)">Error::LOG_BLOCK_INCOMPLETE</a></span>, <span class='object_link'><a href="Error.html#LOG_BLOCK_INVALID-constant" title="Msf::Post::Windows::Error::LOG_BLOCK_INVALID (constant)">Error::LOG_BLOCK_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_BLOCK_VERSION-constant" title="Msf::Post::Windows::Error::LOG_BLOCK_VERSION (constant)">Error::LOG_BLOCK_VERSION</a></span>, <span class='object_link'><a href="Error.html#LOG_CANT_DELETE-constant" title="Msf::Post::Windows::Error::LOG_CANT_DELETE (constant)">Error::LOG_CANT_DELETE</a></span>, <span class='object_link'><a href="Error.html#LOG_CLIENT_ALREADY_REGISTERED-constant" title="Msf::Post::Windows::Error::LOG_CLIENT_ALREADY_REGISTERED (constant)">Error::LOG_CLIENT_ALREADY_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#LOG_CLIENT_NOT_REGISTERED-constant" title="Msf::Post::Windows::Error::LOG_CLIENT_NOT_REGISTERED (constant)">Error::LOG_CLIENT_NOT_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#LOG_CONTAINER_LIMIT_EXCEEDED-constant" title="Msf::Post::Windows::Error::LOG_CONTAINER_LIMIT_EXCEEDED (constant)">Error::LOG_CONTAINER_LIMIT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#LOG_CONTAINER_OPEN_FAILED-constant" title="Msf::Post::Windows::Error::LOG_CONTAINER_OPEN_FAILED (constant)">Error::LOG_CONTAINER_OPEN_FAILED</a></span>, <span class='object_link'><a href="Error.html#LOG_CONTAINER_READ_FAILED-constant" title="Msf::Post::Windows::Error::LOG_CONTAINER_READ_FAILED (constant)">Error::LOG_CONTAINER_READ_FAILED</a></span>, <span class='object_link'><a href="Error.html#LOG_CONTAINER_STATE_INVALID-constant" title="Msf::Post::Windows::Error::LOG_CONTAINER_STATE_INVALID (constant)">Error::LOG_CONTAINER_STATE_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_CONTAINER_WRITE_FAILED-constant" title="Msf::Post::Windows::Error::LOG_CONTAINER_WRITE_FAILED (constant)">Error::LOG_CONTAINER_WRITE_FAILED</a></span>, <span class='object_link'><a href="Error.html#LOG_CORRUPTION_DETECTED-constant" title="Msf::Post::Windows::Error::LOG_CORRUPTION_DETECTED (constant)">Error::LOG_CORRUPTION_DETECTED</a></span>, <span class='object_link'><a href="Error.html#LOG_DEDICATED-constant" title="Msf::Post::Windows::Error::LOG_DEDICATED (constant)">Error::LOG_DEDICATED</a></span>, <span class='object_link'><a href="Error.html#LOG_EPHEMERAL-constant" title="Msf::Post::Windows::Error::LOG_EPHEMERAL (constant)">Error::LOG_EPHEMERAL</a></span>, <span class='object_link'><a href="Error.html#LOG_FILE_FULL-constant" title="Msf::Post::Windows::Error::LOG_FILE_FULL (constant)">Error::LOG_FILE_FULL</a></span>, <span class='object_link'><a href="Error.html#LOG_FULL-constant" title="Msf::Post::Windows::Error::LOG_FULL (constant)">Error::LOG_FULL</a></span>, <span class='object_link'><a href="Error.html#LOG_FULL_HANDLER_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::LOG_FULL_HANDLER_IN_PROGRESS (constant)">Error::LOG_FULL_HANDLER_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#LOG_GROWTH_FAILED-constant" title="Msf::Post::Windows::Error::LOG_GROWTH_FAILED (constant)">Error::LOG_GROWTH_FAILED</a></span>, <span class='object_link'><a href="Error.html#LOG_HARD_ERROR-constant" title="Msf::Post::Windows::Error::LOG_HARD_ERROR (constant)">Error::LOG_HARD_ERROR</a></span>, <span class='object_link'><a href="Error.html#LOG_INCONSISTENT_SECURITY-constant" title="Msf::Post::Windows::Error::LOG_INCONSISTENT_SECURITY (constant)">Error::LOG_INCONSISTENT_SECURITY</a></span>, <span class='object_link'><a href="Error.html#LOG_INVALID_RANGE-constant" title="Msf::Post::Windows::Error::LOG_INVALID_RANGE (constant)">Error::LOG_INVALID_RANGE</a></span>, <span class='object_link'><a href="Error.html#LOG_METADATA_CORRUPT-constant" title="Msf::Post::Windows::Error::LOG_METADATA_CORRUPT (constant)">Error::LOG_METADATA_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#LOG_METADATA_FLUSH_FAILED-constant" title="Msf::Post::Windows::Error::LOG_METADATA_FLUSH_FAILED (constant)">Error::LOG_METADATA_FLUSH_FAILED</a></span>, <span class='object_link'><a href="Error.html#LOG_METADATA_INCONSISTENT-constant" title="Msf::Post::Windows::Error::LOG_METADATA_INCONSISTENT (constant)">Error::LOG_METADATA_INCONSISTENT</a></span>, <span class='object_link'><a href="Error.html#LOG_METADATA_INVALID-constant" title="Msf::Post::Windows::Error::LOG_METADATA_INVALID (constant)">Error::LOG_METADATA_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_MULTIPLEXED-constant" title="Msf::Post::Windows::Error::LOG_MULTIPLEXED (constant)">Error::LOG_MULTIPLEXED</a></span>, <span class='object_link'><a href="Error.html#LOG_NOT_ENOUGH_CONTAINERS-constant" title="Msf::Post::Windows::Error::LOG_NOT_ENOUGH_CONTAINERS (constant)">Error::LOG_NOT_ENOUGH_CONTAINERS</a></span>, <span class='object_link'><a href="Error.html#LOG_NO_RESTART-constant" title="Msf::Post::Windows::Error::LOG_NO_RESTART (constant)">Error::LOG_NO_RESTART</a></span>, <span class='object_link'><a href="Error.html#LOG_PINNED-constant" title="Msf::Post::Windows::Error::LOG_PINNED (constant)">Error::LOG_PINNED</a></span>, <span class='object_link'><a href="Error.html#LOG_PINNED_ARCHIVE_TAIL-constant" title="Msf::Post::Windows::Error::LOG_PINNED_ARCHIVE_TAIL (constant)">Error::LOG_PINNED_ARCHIVE_TAIL</a></span>, <span class='object_link'><a href="Error.html#LOG_PINNED_RESERVATION-constant" title="Msf::Post::Windows::Error::LOG_PINNED_RESERVATION (constant)">Error::LOG_PINNED_RESERVATION</a></span>, <span class='object_link'><a href="Error.html#LOG_POLICY_ALREADY_INSTALLED-constant" title="Msf::Post::Windows::Error::LOG_POLICY_ALREADY_INSTALLED (constant)">Error::LOG_POLICY_ALREADY_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#LOG_POLICY_CONFLICT-constant" title="Msf::Post::Windows::Error::LOG_POLICY_CONFLICT (constant)">Error::LOG_POLICY_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#LOG_POLICY_INVALID-constant" title="Msf::Post::Windows::Error::LOG_POLICY_INVALID (constant)">Error::LOG_POLICY_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_POLICY_NOT_INSTALLED-constant" title="Msf::Post::Windows::Error::LOG_POLICY_NOT_INSTALLED (constant)">Error::LOG_POLICY_NOT_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#LOG_READ_CONTEXT_INVALID-constant" title="Msf::Post::Windows::Error::LOG_READ_CONTEXT_INVALID (constant)">Error::LOG_READ_CONTEXT_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_READ_MODE_INVALID-constant" title="Msf::Post::Windows::Error::LOG_READ_MODE_INVALID (constant)">Error::LOG_READ_MODE_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_RECORDS_RESERVED_INVALID-constant" title="Msf::Post::Windows::Error::LOG_RECORDS_RESERVED_INVALID (constant)">Error::LOG_RECORDS_RESERVED_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_RECORD_NONEXISTENT-constant" title="Msf::Post::Windows::Error::LOG_RECORD_NONEXISTENT (constant)">Error::LOG_RECORD_NONEXISTENT</a></span>, <span class='object_link'><a href="Error.html#LOG_RESERVATION_INVALID-constant" title="Msf::Post::Windows::Error::LOG_RESERVATION_INVALID (constant)">Error::LOG_RESERVATION_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_RESIZE_INVALID_SIZE-constant" title="Msf::Post::Windows::Error::LOG_RESIZE_INVALID_SIZE (constant)">Error::LOG_RESIZE_INVALID_SIZE</a></span>, <span class='object_link'><a href="Error.html#LOG_RESTART_INVALID-constant" title="Msf::Post::Windows::Error::LOG_RESTART_INVALID (constant)">Error::LOG_RESTART_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_SECTOR_INVALID-constant" title="Msf::Post::Windows::Error::LOG_SECTOR_INVALID (constant)">Error::LOG_SECTOR_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_SECTOR_PARITY_INVALID-constant" title="Msf::Post::Windows::Error::LOG_SECTOR_PARITY_INVALID (constant)">Error::LOG_SECTOR_PARITY_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_SECTOR_REMAPPED-constant" title="Msf::Post::Windows::Error::LOG_SECTOR_REMAPPED (constant)">Error::LOG_SECTOR_REMAPPED</a></span>, <span class='object_link'><a href="Error.html#LOG_SPACE_RESERVED_INVALID-constant" title="Msf::Post::Windows::Error::LOG_SPACE_RESERVED_INVALID (constant)">Error::LOG_SPACE_RESERVED_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_START_OF_LOG-constant" title="Msf::Post::Windows::Error::LOG_START_OF_LOG (constant)">Error::LOG_START_OF_LOG</a></span>, <span class='object_link'><a href="Error.html#LOG_STATE_INVALID-constant" title="Msf::Post::Windows::Error::LOG_STATE_INVALID (constant)">Error::LOG_STATE_INVALID</a></span>, <span class='object_link'><a href="Error.html#LOG_TAIL_INVALID-constant" title="Msf::Post::Windows::Error::LOG_TAIL_INVALID (constant)">Error::LOG_TAIL_INVALID</a></span>, <span class='object_link'><a href="Error.html#LONGJUMP-constant" title="Msf::Post::Windows::Error::LONGJUMP (constant)">Error::LONGJUMP</a></span>, <span class='object_link'><a href="Error.html#LOST_WRITEBEHIND_DATA-constant" title="Msf::Post::Windows::Error::LOST_WRITEBEHIND_DATA (constant)">Error::LOST_WRITEBEHIND_DATA</a></span>, <span class='object_link'><a href="Error.html#LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR-constant" title="Msf::Post::Windows::Error::LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR (constant)">Error::LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR</a></span>, <span class='object_link'><a href="Error.html#LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED-constant" title="Msf::Post::Windows::Error::LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED (constant)">Error::LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED</a></span>, <span class='object_link'><a href="Error.html#LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR-constant" title="Msf::Post::Windows::Error::LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR (constant)">Error::LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR</a></span>, <span class='object_link'><a href="Error.html#LUIDS_EXHAUSTED-constant" title="Msf::Post::Windows::Error::LUIDS_EXHAUSTED (constant)">Error::LUIDS_EXHAUSTED</a></span>, <span class='object_link'><a href="Error.html#MACHINE_LOCKED-constant" title="Msf::Post::Windows::Error::MACHINE_LOCKED (constant)">Error::MACHINE_LOCKED</a></span>, <span class='object_link'><a href="Error.html#MAGAZINE_NOT_PRESENT-constant" title="Msf::Post::Windows::Error::MAGAZINE_NOT_PRESENT (constant)">Error::MAGAZINE_NOT_PRESENT</a></span>, <span class='object_link'><a href="Error.html#MALFORMED_SUBSTITUTION_STRING-constant" title="Msf::Post::Windows::Error::MALFORMED_SUBSTITUTION_STRING (constant)">Error::MALFORMED_SUBSTITUTION_STRING</a></span>, <span class='object_link'><a href="Error.html#MAPPED_ALIGNMENT-constant" title="Msf::Post::Windows::Error::MAPPED_ALIGNMENT (constant)">Error::MAPPED_ALIGNMENT</a></span>, <span class='object_link'><a href="Error.html#MARSHALL_OVERFLOW-constant" title="Msf::Post::Windows::Error::MARSHALL_OVERFLOW (constant)">Error::MARSHALL_OVERFLOW</a></span>, <span class='object_link'><a href="Error.html#MAX_SESSIONS_REACHED-constant" title="Msf::Post::Windows::Error::MAX_SESSIONS_REACHED (constant)">Error::MAX_SESSIONS_REACHED</a></span>, <span class='object_link'><a href="Error.html#MAX_THRDS_REACHED-constant" title="Msf::Post::Windows::Error::MAX_THRDS_REACHED (constant)">Error::MAX_THRDS_REACHED</a></span>, <span class='object_link'><a href="Error.html#MCA_EXCEPTION-constant" title="Msf::Post::Windows::Error::MCA_EXCEPTION (constant)">Error::MCA_EXCEPTION</a></span>, <span class='object_link'><a href="Error.html#MCA_INTERNAL_ERROR-constant" title="Msf::Post::Windows::Error::MCA_INTERNAL_ERROR (constant)">Error::MCA_INTERNAL_ERROR</a></span>, <span class='object_link'><a href="Error.html#MCA_INVALID_CAPABILITIES_STRING-constant" title="Msf::Post::Windows::Error::MCA_INVALID_CAPABILITIES_STRING (constant)">Error::MCA_INVALID_CAPABILITIES_STRING</a></span>, <span class='object_link'><a href="Error.html#MCA_INVALID_TECHNOLOGY_TYPE_RETURNED-constant" title="Msf::Post::Windows::Error::MCA_INVALID_TECHNOLOGY_TYPE_RETURNED (constant)">Error::MCA_INVALID_TECHNOLOGY_TYPE_RETURNED</a></span>, <span class='object_link'><a href="Error.html#MCA_INVALID_VCP_VERSION-constant" title="Msf::Post::Windows::Error::MCA_INVALID_VCP_VERSION (constant)">Error::MCA_INVALID_VCP_VERSION</a></span>, <span class='object_link'><a href="Error.html#MCA_MCCS_VERSION_MISMATCH-constant" title="Msf::Post::Windows::Error::MCA_MCCS_VERSION_MISMATCH (constant)">Error::MCA_MCCS_VERSION_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION-constant" title="Msf::Post::Windows::Error::MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION (constant)">Error::MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION</a></span>, <span class='object_link'><a href="Error.html#MCA_OCCURED-constant" title="Msf::Post::Windows::Error::MCA_OCCURED (constant)">Error::MCA_OCCURED</a></span>, <span class='object_link'><a href="Error.html#MCA_UNSUPPORTED_COLOR_TEMPERATURE-constant" title="Msf::Post::Windows::Error::MCA_UNSUPPORTED_COLOR_TEMPERATURE (constant)">Error::MCA_UNSUPPORTED_COLOR_TEMPERATURE</a></span>, <span class='object_link'><a href="Error.html#MCA_UNSUPPORTED_MCCS_VERSION-constant" title="Msf::Post::Windows::Error::MCA_UNSUPPORTED_MCCS_VERSION (constant)">Error::MCA_UNSUPPORTED_MCCS_VERSION</a></span>, <span class='object_link'><a href="Error.html#MEDIA_CHANGED-constant" title="Msf::Post::Windows::Error::MEDIA_CHANGED (constant)">Error::MEDIA_CHANGED</a></span>, <span class='object_link'><a href="Error.html#MEDIA_CHECK-constant" title="Msf::Post::Windows::Error::MEDIA_CHECK (constant)">Error::MEDIA_CHECK</a></span>, <span class='object_link'><a href="Error.html#MEDIA_INCOMPATIBLE-constant" title="Msf::Post::Windows::Error::MEDIA_INCOMPATIBLE (constant)">Error::MEDIA_INCOMPATIBLE</a></span>, <span class='object_link'><a href="Error.html#MEDIA_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::MEDIA_NOT_AVAILABLE (constant)">Error::MEDIA_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#MEDIA_OFFLINE-constant" title="Msf::Post::Windows::Error::MEDIA_OFFLINE (constant)">Error::MEDIA_OFFLINE</a></span>, <span class='object_link'><a href="Error.html#MEDIA_UNAVAILABLE-constant" title="Msf::Post::Windows::Error::MEDIA_UNAVAILABLE (constant)">Error::MEDIA_UNAVAILABLE</a></span>, <span class='object_link'><a href="Error.html#MEDIUM_NOT_ACCESSIBLE-constant" title="Msf::Post::Windows::Error::MEDIUM_NOT_ACCESSIBLE (constant)">Error::MEDIUM_NOT_ACCESSIBLE</a></span>, <span class='object_link'><a href="Error.html#MEMBERS_PRIMARY_GROUP-constant" title="Msf::Post::Windows::Error::MEMBERS_PRIMARY_GROUP (constant)">Error::MEMBERS_PRIMARY_GROUP</a></span>, <span class='object_link'><a href="Error.html#MEMBER_IN_ALIAS-constant" title="Msf::Post::Windows::Error::MEMBER_IN_ALIAS (constant)">Error::MEMBER_IN_ALIAS</a></span>, <span class='object_link'><a href="Error.html#MEMBER_IN_GROUP-constant" title="Msf::Post::Windows::Error::MEMBER_IN_GROUP (constant)">Error::MEMBER_IN_GROUP</a></span>, <span class='object_link'><a href="Error.html#MEMBER_NOT_IN_ALIAS-constant" title="Msf::Post::Windows::Error::MEMBER_NOT_IN_ALIAS (constant)">Error::MEMBER_NOT_IN_ALIAS</a></span>, <span class='object_link'><a href="Error.html#MEMBER_NOT_IN_GROUP-constant" title="Msf::Post::Windows::Error::MEMBER_NOT_IN_GROUP (constant)">Error::MEMBER_NOT_IN_GROUP</a></span>, <span class='object_link'><a href="Error.html#MEMORY_HARDWARE-constant" title="Msf::Post::Windows::Error::MEMORY_HARDWARE (constant)">Error::MEMORY_HARDWARE</a></span>, <span class='object_link'><a href="Error.html#MENU_ITEM_NOT_FOUND-constant" title="Msf::Post::Windows::Error::MENU_ITEM_NOT_FOUND (constant)">Error::MENU_ITEM_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#MESSAGE_EXCEEDS_MAX_SIZE-constant" title="Msf::Post::Windows::Error::MESSAGE_EXCEEDS_MAX_SIZE (constant)">Error::MESSAGE_EXCEEDS_MAX_SIZE</a></span>, <span class='object_link'><a href="Error.html#MESSAGE_SYNC_ONLY-constant" title="Msf::Post::Windows::Error::MESSAGE_SYNC_ONLY (constant)">Error::MESSAGE_SYNC_ONLY</a></span>, <span class='object_link'><a href="Error.html#METAFILE_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::METAFILE_NOT_SUPPORTED (constant)">Error::METAFILE_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#META_EXPANSION_TOO_LONG-constant" title="Msf::Post::Windows::Error::META_EXPANSION_TOO_LONG (constant)">Error::META_EXPANSION_TOO_LONG</a></span>, <span class='object_link'><a href="Error.html#MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION-constant" title="Msf::Post::Windows::Error::MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION (constant)">Error::MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION</a></span>, <span class='object_link'><a href="Error.html#MISSING_SYSTEMFILE-constant" title="Msf::Post::Windows::Error::MISSING_SYSTEMFILE (constant)">Error::MISSING_SYSTEMFILE</a></span>, <span class='object_link'><a href="Error.html#MOD_NOT_FOUND-constant" title="Msf::Post::Windows::Error::MOD_NOT_FOUND (constant)">Error::MOD_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#MORE_DATA-constant" title="Msf::Post::Windows::Error::MORE_DATA (constant)">Error::MORE_DATA</a></span>, <span class='object_link'><a href="Error.html#MORE_WRITES-constant" title="Msf::Post::Windows::Error::MORE_WRITES (constant)">Error::MORE_WRITES</a></span>, <span class='object_link'><a href="Error.html#MOUNT_POINT_NOT_RESOLVED-constant" title="Msf::Post::Windows::Error::MOUNT_POINT_NOT_RESOLVED (constant)">Error::MOUNT_POINT_NOT_RESOLVED</a></span>, <span class='object_link'><a href="Error.html#MP_PROCESSOR_MISMATCH-constant" title="Msf::Post::Windows::Error::MP_PROCESSOR_MISMATCH (constant)">Error::MP_PROCESSOR_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#MR_MID_NOT_FOUND-constant" title="Msf::Post::Windows::Error::MR_MID_NOT_FOUND (constant)">Error::MR_MID_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#MUI_FILE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::MUI_FILE_NOT_FOUND (constant)">Error::MUI_FILE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#MUI_FILE_NOT_LOADED-constant" title="Msf::Post::Windows::Error::MUI_FILE_NOT_LOADED (constant)">Error::MUI_FILE_NOT_LOADED</a></span>, <span class='object_link'><a href="Error.html#MUI_INTLSETTINGS_INVALID_LOCALE_NAME-constant" title="Msf::Post::Windows::Error::MUI_INTLSETTINGS_INVALID_LOCALE_NAME (constant)">Error::MUI_INTLSETTINGS_INVALID_LOCALE_NAME</a></span>, <span class='object_link'><a href="Error.html#MUI_INTLSETTINGS_UILANG_NOT_INSTALLED-constant" title="Msf::Post::Windows::Error::MUI_INTLSETTINGS_UILANG_NOT_INSTALLED (constant)">Error::MUI_INTLSETTINGS_UILANG_NOT_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#MUI_INVALID_FILE-constant" title="Msf::Post::Windows::Error::MUI_INVALID_FILE (constant)">Error::MUI_INVALID_FILE</a></span>, <span class='object_link'><a href="Error.html#MUI_INVALID_LOCALE_NAME-constant" title="Msf::Post::Windows::Error::MUI_INVALID_LOCALE_NAME (constant)">Error::MUI_INVALID_LOCALE_NAME</a></span>, <span class='object_link'><a href="Error.html#MUI_INVALID_RC_CONFIG-constant" title="Msf::Post::Windows::Error::MUI_INVALID_RC_CONFIG (constant)">Error::MUI_INVALID_RC_CONFIG</a></span>, <span class='object_link'><a href="Error.html#MUI_INVALID_ULTIMATEFALLBACK_NAME-constant" title="Msf::Post::Windows::Error::MUI_INVALID_ULTIMATEFALLBACK_NAME (constant)">Error::MUI_INVALID_ULTIMATEFALLBACK_NAME</a></span>, <span class='object_link'><a href="Error.html#MULTIPLE_FAULT_VIOLATION-constant" title="Msf::Post::Windows::Error::MULTIPLE_FAULT_VIOLATION (constant)">Error::MULTIPLE_FAULT_VIOLATION</a></span>, <span class='object_link'><a href="Error.html#MUTANT_LIMIT_EXCEEDED-constant" title="Msf::Post::Windows::Error::MUTANT_LIMIT_EXCEEDED (constant)">Error::MUTANT_LIMIT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#MUTUAL_AUTH_FAILED-constant" title="Msf::Post::Windows::Error::MUTUAL_AUTH_FAILED (constant)">Error::MUTUAL_AUTH_FAILED</a></span>, <span class='object_link'><a href="Error.html#NEGATIVE_SEEK-constant" title="Msf::Post::Windows::Error::NEGATIVE_SEEK (constant)">Error::NEGATIVE_SEEK</a></span>, <span class='object_link'><a href="Error.html#NESTING_NOT_ALLOWED-constant" title="Msf::Post::Windows::Error::NESTING_NOT_ALLOWED (constant)">Error::NESTING_NOT_ALLOWED</a></span>, <span class='object_link'><a href="Error.html#NETLOGON_NOT_STARTED-constant" title="Msf::Post::Windows::Error::NETLOGON_NOT_STARTED (constant)">Error::NETLOGON_NOT_STARTED</a></span>, <span class='object_link'><a href="Error.html#NETNAME_DELETED-constant" title="Msf::Post::Windows::Error::NETNAME_DELETED (constant)">Error::NETNAME_DELETED</a></span>, <span class='object_link'><a href="Error.html#NETWORK_ACCESS_DENIED-constant" title="Msf::Post::Windows::Error::NETWORK_ACCESS_DENIED (constant)">Error::NETWORK_ACCESS_DENIED</a></span>, <span class='object_link'><a href="Error.html#NETWORK_BUSY-constant" title="Msf::Post::Windows::Error::NETWORK_BUSY (constant)">Error::NETWORK_BUSY</a></span>, <span class='object_link'><a href="Error.html#NETWORK_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::NETWORK_NOT_AVAILABLE (constant)">Error::NETWORK_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#NETWORK_UNREACHABLE-constant" title="Msf::Post::Windows::Error::NETWORK_UNREACHABLE (constant)">Error::NETWORK_UNREACHABLE</a></span>, <span class='object_link'><a href="Error.html#NET_OPEN_FAILED-constant" title="Msf::Post::Windows::Error::NET_OPEN_FAILED (constant)">Error::NET_OPEN_FAILED</a></span>, <span class='object_link'><a href="Error.html#NET_WRITE_FAULT-constant" title="Msf::Post::Windows::Error::NET_WRITE_FAULT (constant)">Error::NET_WRITE_FAULT</a></span>, <span class='object_link'><a href="Error.html#NOACCESS-constant" title="Msf::Post::Windows::Error::NOACCESS (constant)">Error::NOACCESS</a></span>, <span class='object_link'><a href="Error.html#NODE_CANNOT_BE_CLUSTERED-constant" title="Msf::Post::Windows::Error::NODE_CANNOT_BE_CLUSTERED (constant)">Error::NODE_CANNOT_BE_CLUSTERED</a></span>, <span class='object_link'><a href="Error.html#NODE_CANT_HOST_RESOURCE-constant" title="Msf::Post::Windows::Error::NODE_CANT_HOST_RESOURCE (constant)">Error::NODE_CANT_HOST_RESOURCE</a></span>, <span class='object_link'><a href="Error.html#NODE_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::NODE_NOT_AVAILABLE (constant)">Error::NODE_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#NOINTERFACE-constant" title="Msf::Post::Windows::Error::NOINTERFACE (constant)">Error::NOINTERFACE</a></span>, <span class='object_link'><a href="Error.html#NOLOGON_INTERDOMAIN_TRUST_ACCOUNT-constant" title="Msf::Post::Windows::Error::NOLOGON_INTERDOMAIN_TRUST_ACCOUNT (constant)">Error::NOLOGON_INTERDOMAIN_TRUST_ACCOUNT</a></span>, <span class='object_link'><a href="Error.html#NOLOGON_SERVER_TRUST_ACCOUNT-constant" title="Msf::Post::Windows::Error::NOLOGON_SERVER_TRUST_ACCOUNT (constant)">Error::NOLOGON_SERVER_TRUST_ACCOUNT</a></span>, <span class='object_link'><a href="Error.html#NOLOGON_WORKSTATION_TRUST_ACCOUNT-constant" title="Msf::Post::Windows::Error::NOLOGON_WORKSTATION_TRUST_ACCOUNT (constant)">Error::NOLOGON_WORKSTATION_TRUST_ACCOUNT</a></span>, <span class='object_link'><a href="Error.html#NONCORE_GROUPS_FOUND-constant" title="Msf::Post::Windows::Error::NONCORE_GROUPS_FOUND (constant)">Error::NONCORE_GROUPS_FOUND</a></span>, <span class='object_link'><a href="Error.html#NONE_MAPPED-constant" title="Msf::Post::Windows::Error::NONE_MAPPED (constant)">Error::NONE_MAPPED</a></span>, <span class='object_link'><a href="Error.html#NONPAGED_SYSTEM_RESOURCES-constant" title="Msf::Post::Windows::Error::NONPAGED_SYSTEM_RESOURCES (constant)">Error::NONPAGED_SYSTEM_RESOURCES</a></span>, <span class='object_link'><a href="Error.html#NON_ACCOUNT_SID-constant" title="Msf::Post::Windows::Error::NON_ACCOUNT_SID (constant)">Error::NON_ACCOUNT_SID</a></span>, <span class='object_link'><a href="Error.html#NON_CSV_PATH-constant" title="Msf::Post::Windows::Error::NON_CSV_PATH (constant)">Error::NON_CSV_PATH</a></span>, <span class='object_link'><a href="Error.html#NON_DOMAIN_SID-constant" title="Msf::Post::Windows::Error::NON_DOMAIN_SID (constant)">Error::NON_DOMAIN_SID</a></span>, <span class='object_link'><a href="Error.html#NON_MDICHILD_WINDOW-constant" title="Msf::Post::Windows::Error::NON_MDICHILD_WINDOW (constant)">Error::NON_MDICHILD_WINDOW</a></span>, <span class='object_link'><a href="Error.html#NOTHING_TO_TERMINATE-constant" title="Msf::Post::Windows::Error::NOTHING_TO_TERMINATE (constant)">Error::NOTHING_TO_TERMINATE</a></span>, <span class='object_link'><a href="Error.html#NOTIFICATION_GUID_ALREADY_DEFINED-constant" title="Msf::Post::Windows::Error::NOTIFICATION_GUID_ALREADY_DEFINED (constant)">Error::NOTIFICATION_GUID_ALREADY_DEFINED</a></span>, <span class='object_link'><a href="Error.html#NOTIFY_CLEANUP-constant" title="Msf::Post::Windows::Error::NOTIFY_CLEANUP (constant)">Error::NOTIFY_CLEANUP</a></span>, <span class='object_link'><a href="Error.html#NOTIFY_ENUM_DIR-constant" title="Msf::Post::Windows::Error::NOTIFY_ENUM_DIR (constant)">Error::NOTIFY_ENUM_DIR</a></span>, <span class='object_link'><a href="Error.html#NOT_ALL_ASSIGNED-constant" title="Msf::Post::Windows::Error::NOT_ALL_ASSIGNED (constant)">Error::NOT_ALL_ASSIGNED</a></span>, <span class='object_link'><a href="Error.html#NOT_AUTHENTICATED-constant" title="Msf::Post::Windows::Error::NOT_AUTHENTICATED (constant)">Error::NOT_AUTHENTICATED</a></span>, <span class='object_link'><a href="Error.html#NOT_A_REPARSE_POINT-constant" title="Msf::Post::Windows::Error::NOT_A_REPARSE_POINT (constant)">Error::NOT_A_REPARSE_POINT</a></span>, <span class='object_link'><a href="Error.html#NOT_CAPABLE-constant" title="Msf::Post::Windows::Error::NOT_CAPABLE (constant)">Error::NOT_CAPABLE</a></span>, <span class='object_link'><a href="Error.html#NOT_CHILD_WINDOW-constant" title="Msf::Post::Windows::Error::NOT_CHILD_WINDOW (constant)">Error::NOT_CHILD_WINDOW</a></span>, <span class='object_link'><a href="Error.html#NOT_CONNECTED-constant" title="Msf::Post::Windows::Error::NOT_CONNECTED (constant)">Error::NOT_CONNECTED</a></span>, <span class='object_link'><a href="Error.html#NOT_CONTAINER-constant" title="Msf::Post::Windows::Error::NOT_CONTAINER (constant)">Error::NOT_CONTAINER</a></span>, <span class='object_link'><a href="Error.html#NOT_DOS_DISK-constant" title="Msf::Post::Windows::Error::NOT_DOS_DISK (constant)">Error::NOT_DOS_DISK</a></span>, <span class='object_link'><a href="Error.html#NOT_EMPTY-constant" title="Msf::Post::Windows::Error::NOT_EMPTY (constant)">Error::NOT_EMPTY</a></span>, <span class='object_link'><a href="Error.html#NOT_ENOUGH_MEMORY-constant" title="Msf::Post::Windows::Error::NOT_ENOUGH_MEMORY (constant)">Error::NOT_ENOUGH_MEMORY</a></span>, <span class='object_link'><a href="Error.html#NOT_ENOUGH_QUOTA-constant" title="Msf::Post::Windows::Error::NOT_ENOUGH_QUOTA (constant)">Error::NOT_ENOUGH_QUOTA</a></span>, <span class='object_link'><a href="Error.html#NOT_ENOUGH_SERVER_MEMORY-constant" title="Msf::Post::Windows::Error::NOT_ENOUGH_SERVER_MEMORY (constant)">Error::NOT_ENOUGH_SERVER_MEMORY</a></span>, <span class='object_link'><a href="Error.html#NOT_EXPORT_FORMAT-constant" title="Msf::Post::Windows::Error::NOT_EXPORT_FORMAT (constant)">Error::NOT_EXPORT_FORMAT</a></span>, <span class='object_link'><a href="Error.html#NOT_FOUND-constant" title="Msf::Post::Windows::Error::NOT_FOUND (constant)">Error::NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#NOT_JOINED-constant" title="Msf::Post::Windows::Error::NOT_JOINED (constant)">Error::NOT_JOINED</a></span>, <span class='object_link'><a href="Error.html#NOT_LOCKED-constant" title="Msf::Post::Windows::Error::NOT_LOCKED (constant)">Error::NOT_LOCKED</a></span>, <span class='object_link'><a href="Error.html#NOT_LOGGED_ON-constant" title="Msf::Post::Windows::Error::NOT_LOGGED_ON (constant)">Error::NOT_LOGGED_ON</a></span>, <span class='object_link'><a href="Error.html#NOT_LOGON_PROCESS-constant" title="Msf::Post::Windows::Error::NOT_LOGON_PROCESS (constant)">Error::NOT_LOGON_PROCESS</a></span>, <span class='object_link'><a href="Error.html#NOT_OWNER-constant" title="Msf::Post::Windows::Error::NOT_OWNER (constant)">Error::NOT_OWNER</a></span>, <span class='object_link'><a href="Error.html#NOT_QUORUM_CAPABLE-constant" title="Msf::Post::Windows::Error::NOT_QUORUM_CAPABLE (constant)">Error::NOT_QUORUM_CAPABLE</a></span>, <span class='object_link'><a href="Error.html#NOT_QUORUM_CLASS-constant" title="Msf::Post::Windows::Error::NOT_QUORUM_CLASS (constant)">Error::NOT_QUORUM_CLASS</a></span>, <span class='object_link'><a href="Error.html#NOT_READY-constant" title="Msf::Post::Windows::Error::NOT_READY (constant)">Error::NOT_READY</a></span>, <span class='object_link'><a href="Error.html#NOT_REGISTRY_FILE-constant" title="Msf::Post::Windows::Error::NOT_REGISTRY_FILE (constant)">Error::NOT_REGISTRY_FILE</a></span>, <span class='object_link'><a href="Error.html#NOT_SAFEBOOT_SERVICE-constant" title="Msf::Post::Windows::Error::NOT_SAFEBOOT_SERVICE (constant)">Error::NOT_SAFEBOOT_SERVICE</a></span>, <span class='object_link'><a href="Error.html#NOT_SAFE_MODE_DRIVER-constant" title="Msf::Post::Windows::Error::NOT_SAFE_MODE_DRIVER (constant)">Error::NOT_SAFE_MODE_DRIVER</a></span>, <span class='object_link'><a href="Error.html#NOT_SAME_DEVICE-constant" title="Msf::Post::Windows::Error::NOT_SAME_DEVICE (constant)">Error::NOT_SAME_DEVICE</a></span>, <span class='object_link'><a href="Error.html#NOT_SNAPSHOT_VOLUME-constant" title="Msf::Post::Windows::Error::NOT_SNAPSHOT_VOLUME (constant)">Error::NOT_SNAPSHOT_VOLUME</a></span>, <span class='object_link'><a href="Error.html#NOT_SUBSTED-constant" title="Msf::Post::Windows::Error::NOT_SUBSTED (constant)">Error::NOT_SUBSTED</a></span>, <span class='object_link'><a href="Error.html#NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::NOT_SUPPORTED (constant)">Error::NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#NOT_SUPPORTED_ON_SBS-constant" title="Msf::Post::Windows::Error::NOT_SUPPORTED_ON_SBS (constant)">Error::NOT_SUPPORTED_ON_SBS</a></span>, <span class='object_link'><a href="Error.html#NOT_SUPPORTED_ON_STANDARD_SERVER-constant" title="Msf::Post::Windows::Error::NOT_SUPPORTED_ON_STANDARD_SERVER (constant)">Error::NOT_SUPPORTED_ON_STANDARD_SERVER</a></span>, <span class='object_link'><a href="Error.html#NOT_TINY_STREAM-constant" title="Msf::Post::Windows::Error::NOT_TINY_STREAM (constant)">Error::NOT_TINY_STREAM</a></span>, <span class='object_link'><a href="Error.html#NO_ACE_CONDITION-constant" title="Msf::Post::Windows::Error::NO_ACE_CONDITION (constant)">Error::NO_ACE_CONDITION</a></span>, <span class='object_link'><a href="Error.html#NO_ASSOCIATION-constant" title="Msf::Post::Windows::Error::NO_ASSOCIATION (constant)">Error::NO_ASSOCIATION</a></span>, <span class='object_link'><a href="Error.html#NO_BROWSER_SERVERS_FOUND-constant" title="Msf::Post::Windows::Error::NO_BROWSER_SERVERS_FOUND (constant)">Error::NO_BROWSER_SERVERS_FOUND</a></span>, <span class='object_link'><a href="Error.html#NO_CALLBACK_ACTIVE-constant" title="Msf::Post::Windows::Error::NO_CALLBACK_ACTIVE (constant)">Error::NO_CALLBACK_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#NO_DATA-constant" title="Msf::Post::Windows::Error::NO_DATA (constant)">Error::NO_DATA</a></span>, <span class='object_link'><a href="Error.html#NO_DATA_DETECTED-constant" title="Msf::Post::Windows::Error::NO_DATA_DETECTED (constant)">Error::NO_DATA_DETECTED</a></span>, <span class='object_link'><a href="Error.html#NO_EFS-constant" title="Msf::Post::Windows::Error::NO_EFS (constant)">Error::NO_EFS</a></span>, <span class='object_link'><a href="Error.html#NO_EVENT_PAIR-constant" title="Msf::Post::Windows::Error::NO_EVENT_PAIR (constant)">Error::NO_EVENT_PAIR</a></span>, <span class='object_link'><a href="Error.html#NO_GUID_TRANSLATION-constant" title="Msf::Post::Windows::Error::NO_GUID_TRANSLATION (constant)">Error::NO_GUID_TRANSLATION</a></span>, <span class='object_link'><a href="Error.html#NO_IMPERSONATION_TOKEN-constant" title="Msf::Post::Windows::Error::NO_IMPERSONATION_TOKEN (constant)">Error::NO_IMPERSONATION_TOKEN</a></span>, <span class='object_link'><a href="Error.html#NO_INHERITANCE-constant" title="Msf::Post::Windows::Error::NO_INHERITANCE (constant)">Error::NO_INHERITANCE</a></span>, <span class='object_link'><a href="Error.html#NO_LINK_TRACKING_IN_TRANSACTION-constant" title="Msf::Post::Windows::Error::NO_LINK_TRACKING_IN_TRANSACTION (constant)">Error::NO_LINK_TRACKING_IN_TRANSACTION</a></span>, <span class='object_link'><a href="Error.html#NO_LOGON_SERVERS-constant" title="Msf::Post::Windows::Error::NO_LOGON_SERVERS (constant)">Error::NO_LOGON_SERVERS</a></span>, <span class='object_link'><a href="Error.html#NO_LOG_SPACE-constant" title="Msf::Post::Windows::Error::NO_LOG_SPACE (constant)">Error::NO_LOG_SPACE</a></span>, <span class='object_link'><a href="Error.html#NO_MATCH-constant" title="Msf::Post::Windows::Error::NO_MATCH (constant)">Error::NO_MATCH</a></span>, <span class='object_link'><a href="Error.html#NO_MEDIA_IN_DRIVE-constant" title="Msf::Post::Windows::Error::NO_MEDIA_IN_DRIVE (constant)">Error::NO_MEDIA_IN_DRIVE</a></span>, <span class='object_link'><a href="Error.html#NO_MORE_DEVICES-constant" title="Msf::Post::Windows::Error::NO_MORE_DEVICES (constant)">Error::NO_MORE_DEVICES</a></span>, <span class='object_link'><a href="Error.html#NO_MORE_FILES-constant" title="Msf::Post::Windows::Error::NO_MORE_FILES (constant)">Error::NO_MORE_FILES</a></span>, <span class='object_link'><a href="Error.html#NO_MORE_ITEMS-constant" title="Msf::Post::Windows::Error::NO_MORE_ITEMS (constant)">Error::NO_MORE_ITEMS</a></span>, <span class='object_link'><a href="Error.html#NO_MORE_MATCHES-constant" title="Msf::Post::Windows::Error::NO_MORE_MATCHES (constant)">Error::NO_MORE_MATCHES</a></span>, <span class='object_link'><a href="Error.html#NO_MORE_SEARCH_HANDLES-constant" title="Msf::Post::Windows::Error::NO_MORE_SEARCH_HANDLES (constant)">Error::NO_MORE_SEARCH_HANDLES</a></span>, <span class='object_link'><a href="Error.html#NO_MORE_USER_HANDLES-constant" title="Msf::Post::Windows::Error::NO_MORE_USER_HANDLES (constant)">Error::NO_MORE_USER_HANDLES</a></span>, <span class='object_link'><a href="Error.html#NO_NETWORK-constant" title="Msf::Post::Windows::Error::NO_NETWORK (constant)">Error::NO_NETWORK</a></span>, <span class='object_link'><a href="Error.html#NO_NET_OR_BAD_PATH-constant" title="Msf::Post::Windows::Error::NO_NET_OR_BAD_PATH (constant)">Error::NO_NET_OR_BAD_PATH</a></span>, <span class='object_link'><a href="Error.html#NO_NVRAM_RESOURCES-constant" title="Msf::Post::Windows::Error::NO_NVRAM_RESOURCES (constant)">Error::NO_NVRAM_RESOURCES</a></span>, <span class='object_link'><a href="Error.html#NO_PAGEFILE-constant" title="Msf::Post::Windows::Error::NO_PAGEFILE (constant)">Error::NO_PAGEFILE</a></span>, <span class='object_link'><a href="Error.html#NO_PROC_SLOTS-constant" title="Msf::Post::Windows::Error::NO_PROC_SLOTS (constant)">Error::NO_PROC_SLOTS</a></span>, <span class='object_link'><a href="Error.html#NO_PROMOTION_ACTIVE-constant" title="Msf::Post::Windows::Error::NO_PROMOTION_ACTIVE (constant)">Error::NO_PROMOTION_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#NO_QUOTAS_FOR_ACCOUNT-constant" title="Msf::Post::Windows::Error::NO_QUOTAS_FOR_ACCOUNT (constant)">Error::NO_QUOTAS_FOR_ACCOUNT</a></span>, <span class='object_link'><a href="Error.html#NO_RECOVERY_POLICY-constant" title="Msf::Post::Windows::Error::NO_RECOVERY_POLICY (constant)">Error::NO_RECOVERY_POLICY</a></span>, <span class='object_link'><a href="Error.html#NO_RECOVERY_PROGRAM-constant" title="Msf::Post::Windows::Error::NO_RECOVERY_PROGRAM (constant)">Error::NO_RECOVERY_PROGRAM</a></span>, <span class='object_link'><a href="Error.html#NO_SAVEPOINT_WITH_OPEN_FILES-constant" title="Msf::Post::Windows::Error::NO_SAVEPOINT_WITH_OPEN_FILES (constant)">Error::NO_SAVEPOINT_WITH_OPEN_FILES</a></span>, <span class='object_link'><a href="Error.html#NO_SCROLLBARS-constant" title="Msf::Post::Windows::Error::NO_SCROLLBARS (constant)">Error::NO_SCROLLBARS</a></span>, <span class='object_link'><a href="Error.html#NO_SECRETS-constant" title="Msf::Post::Windows::Error::NO_SECRETS (constant)">Error::NO_SECRETS</a></span>, <span class='object_link'><a href="Error.html#NO_SECURITY_ON_OBJECT-constant" title="Msf::Post::Windows::Error::NO_SECURITY_ON_OBJECT (constant)">Error::NO_SECURITY_ON_OBJECT</a></span>, <span class='object_link'><a href="Error.html#NO_SHUTDOWN_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::NO_SHUTDOWN_IN_PROGRESS (constant)">Error::NO_SHUTDOWN_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#NO_SIGNAL_SENT-constant" title="Msf::Post::Windows::Error::NO_SIGNAL_SENT (constant)">Error::NO_SIGNAL_SENT</a></span>, <span class='object_link'><a href="Error.html#NO_SITENAME-constant" title="Msf::Post::Windows::Error::NO_SITENAME (constant)">Error::NO_SITENAME</a></span>, <span class='object_link'><a href="Error.html#NO_SITE_SETTINGS_OBJECT-constant" title="Msf::Post::Windows::Error::NO_SITE_SETTINGS_OBJECT (constant)">Error::NO_SITE_SETTINGS_OBJECT</a></span>, <span class='object_link'><a href="Error.html#NO_SPOOL_SPACE-constant" title="Msf::Post::Windows::Error::NO_SPOOL_SPACE (constant)">Error::NO_SPOOL_SPACE</a></span>, <span class='object_link'><a href="Error.html#NO_SUCH_ALIAS-constant" title="Msf::Post::Windows::Error::NO_SUCH_ALIAS (constant)">Error::NO_SUCH_ALIAS</a></span>, <span class='object_link'><a href="Error.html#NO_SUCH_DOMAIN-constant" title="Msf::Post::Windows::Error::NO_SUCH_DOMAIN (constant)">Error::NO_SUCH_DOMAIN</a></span>, <span class='object_link'><a href="Error.html#NO_SUCH_GROUP-constant" title="Msf::Post::Windows::Error::NO_SUCH_GROUP (constant)">Error::NO_SUCH_GROUP</a></span>, <span class='object_link'><a href="Error.html#NO_SUCH_LOGON_SESSION-constant" title="Msf::Post::Windows::Error::NO_SUCH_LOGON_SESSION (constant)">Error::NO_SUCH_LOGON_SESSION</a></span>, <span class='object_link'><a href="Error.html#NO_SUCH_MEMBER-constant" title="Msf::Post::Windows::Error::NO_SUCH_MEMBER (constant)">Error::NO_SUCH_MEMBER</a></span>, <span class='object_link'><a href="Error.html#NO_SUCH_PACKAGE-constant" title="Msf::Post::Windows::Error::NO_SUCH_PACKAGE (constant)">Error::NO_SUCH_PACKAGE</a></span>, <span class='object_link'><a href="Error.html#NO_SUCH_PRIVILEGE-constant" title="Msf::Post::Windows::Error::NO_SUCH_PRIVILEGE (constant)">Error::NO_SUCH_PRIVILEGE</a></span>, <span class='object_link'><a href="Error.html#NO_SUCH_SITE-constant" title="Msf::Post::Windows::Error::NO_SUCH_SITE (constant)">Error::NO_SUCH_SITE</a></span>, <span class='object_link'><a href="Error.html#NO_SUCH_USER-constant" title="Msf::Post::Windows::Error::NO_SUCH_USER (constant)">Error::NO_SUCH_USER</a></span>, <span class='object_link'><a href="Error.html#NO_SUPPORTING_DRIVES-constant" title="Msf::Post::Windows::Error::NO_SUPPORTING_DRIVES (constant)">Error::NO_SUPPORTING_DRIVES</a></span>, <span class='object_link'><a href="Error.html#NO_SYSTEM_MENU-constant" title="Msf::Post::Windows::Error::NO_SYSTEM_MENU (constant)">Error::NO_SYSTEM_MENU</a></span>, <span class='object_link'><a href="Error.html#NO_SYSTEM_RESOURCES-constant" title="Msf::Post::Windows::Error::NO_SYSTEM_RESOURCES (constant)">Error::NO_SYSTEM_RESOURCES</a></span>, <span class='object_link'><a href="Error.html#NO_TOKEN-constant" title="Msf::Post::Windows::Error::NO_TOKEN (constant)">Error::NO_TOKEN</a></span>, <span class='object_link'><a href="Error.html#NO_TRACKING_SERVICE-constant" title="Msf::Post::Windows::Error::NO_TRACKING_SERVICE (constant)">Error::NO_TRACKING_SERVICE</a></span>, <span class='object_link'><a href="Error.html#NO_TRUST_LSA_SECRET-constant" title="Msf::Post::Windows::Error::NO_TRUST_LSA_SECRET (constant)">Error::NO_TRUST_LSA_SECRET</a></span>, <span class='object_link'><a href="Error.html#NO_TRUST_SAM_ACCOUNT-constant" title="Msf::Post::Windows::Error::NO_TRUST_SAM_ACCOUNT (constant)">Error::NO_TRUST_SAM_ACCOUNT</a></span>, <span class='object_link'><a href="Error.html#NO_TXF_METADATA-constant" title="Msf::Post::Windows::Error::NO_TXF_METADATA (constant)">Error::NO_TXF_METADATA</a></span>, <span class='object_link'><a href="Error.html#NO_UNICODE_TRANSLATION-constant" title="Msf::Post::Windows::Error::NO_UNICODE_TRANSLATION (constant)">Error::NO_UNICODE_TRANSLATION</a></span>, <span class='object_link'><a href="Error.html#NO_USER_KEYS-constant" title="Msf::Post::Windows::Error::NO_USER_KEYS (constant)">Error::NO_USER_KEYS</a></span>, <span class='object_link'><a href="Error.html#NO_USER_SESSION_KEY-constant" title="Msf::Post::Windows::Error::NO_USER_SESSION_KEY (constant)">Error::NO_USER_SESSION_KEY</a></span>, <span class='object_link'><a href="Error.html#NO_VOLUME_ID-constant" title="Msf::Post::Windows::Error::NO_VOLUME_ID (constant)">Error::NO_VOLUME_ID</a></span>, <span class='object_link'><a href="Error.html#NO_VOLUME_LABEL-constant" title="Msf::Post::Windows::Error::NO_VOLUME_LABEL (constant)">Error::NO_VOLUME_LABEL</a></span>, <span class='object_link'><a href="Error.html#NO_WILDCARD_CHARACTERS-constant" title="Msf::Post::Windows::Error::NO_WILDCARD_CHARACTERS (constant)">Error::NO_WILDCARD_CHARACTERS</a></span>, <span class='object_link'><a href="Error.html#NO_WRITABLE_DC_FOUND-constant" title="Msf::Post::Windows::Error::NO_WRITABLE_DC_FOUND (constant)">Error::NO_WRITABLE_DC_FOUND</a></span>, <span class='object_link'><a href="Error.html#NO_YIELD_PERFORMED-constant" title="Msf::Post::Windows::Error::NO_YIELD_PERFORMED (constant)">Error::NO_YIELD_PERFORMED</a></span>, <span class='object_link'><a href="Error.html#NTLM_BLOCKED-constant" title="Msf::Post::Windows::Error::NTLM_BLOCKED (constant)">Error::NTLM_BLOCKED</a></span>, <span class='object_link'><a href="Error.html#NT_CROSS_ENCRYPTION_REQUIRED-constant" title="Msf::Post::Windows::Error::NT_CROSS_ENCRYPTION_REQUIRED (constant)">Error::NT_CROSS_ENCRYPTION_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#NULL_LM_PASSWORD-constant" title="Msf::Post::Windows::Error::NULL_LM_PASSWORD (constant)">Error::NULL_LM_PASSWORD</a></span>, <span class='object_link'><a href="Error.html#OBJECT_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::OBJECT_ALREADY_EXISTS (constant)">Error::OBJECT_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#OBJECT_IN_LIST-constant" title="Msf::Post::Windows::Error::OBJECT_IN_LIST (constant)">Error::OBJECT_IN_LIST</a></span>, <span class='object_link'><a href="Error.html#OBJECT_NAME_EXISTS-constant" title="Msf::Post::Windows::Error::OBJECT_NAME_EXISTS (constant)">Error::OBJECT_NAME_EXISTS</a></span>, <span class='object_link'><a href="Error.html#OBJECT_NOT_FOUND-constant" title="Msf::Post::Windows::Error::OBJECT_NOT_FOUND (constant)">Error::OBJECT_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#OBJECT_NO_LONGER_EXISTS-constant" title="Msf::Post::Windows::Error::OBJECT_NO_LONGER_EXISTS (constant)">Error::OBJECT_NO_LONGER_EXISTS</a></span>, <span class='object_link'><a href="Error.html#OLD_WIN_VERSION-constant" title="Msf::Post::Windows::Error::OLD_WIN_VERSION (constant)">Error::OLD_WIN_VERSION</a></span>, <span class='object_link'><a href="Error.html#ONLY_IF_CONNECTED-constant" title="Msf::Post::Windows::Error::ONLY_IF_CONNECTED (constant)">Error::ONLY_IF_CONNECTED</a></span>, <span class='object_link'><a href="Error.html#OPEN_FAILED-constant" title="Msf::Post::Windows::Error::OPEN_FAILED (constant)">Error::OPEN_FAILED</a></span>, <span class='object_link'><a href="Error.html#OPEN_FILES-constant" title="Msf::Post::Windows::Error::OPEN_FILES (constant)">Error::OPEN_FILES</a></span>, <span class='object_link'><a href="Error.html#OPERATION_ABORTED-constant" title="Msf::Post::Windows::Error::OPERATION_ABORTED (constant)">Error::OPERATION_ABORTED</a></span>, <span class='object_link'><a href="Error.html#OPERATION_NOT_SUPPORTED_IN_TRANSACTION-constant" title="Msf::Post::Windows::Error::OPERATION_NOT_SUPPORTED_IN_TRANSACTION (constant)">Error::OPERATION_NOT_SUPPORTED_IN_TRANSACTION</a></span>, <span class='object_link'><a href="Error.html#OPLOCK_BREAK_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::OPLOCK_BREAK_IN_PROGRESS (constant)">Error::OPLOCK_BREAK_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#OPLOCK_HANDLE_CLOSED-constant" title="Msf::Post::Windows::Error::OPLOCK_HANDLE_CLOSED (constant)">Error::OPLOCK_HANDLE_CLOSED</a></span>, <span class='object_link'><a href="Error.html#OPLOCK_NOT_GRANTED-constant" title="Msf::Post::Windows::Error::OPLOCK_NOT_GRANTED (constant)">Error::OPLOCK_NOT_GRANTED</a></span>, <span class='object_link'><a href="Error.html#OPLOCK_SWITCHED_TO_NEW_HANDLE-constant" title="Msf::Post::Windows::Error::OPLOCK_SWITCHED_TO_NEW_HANDLE (constant)">Error::OPLOCK_SWITCHED_TO_NEW_HANDLE</a></span>, <span class='object_link'><a href="Error.html#OR_INVALID_OID-constant" title="Msf::Post::Windows::Error::OR_INVALID_OID (constant)">Error::OR_INVALID_OID</a></span>, <span class='object_link'><a href="Error.html#OR_INVALID_OXID-constant" title="Msf::Post::Windows::Error::OR_INVALID_OXID (constant)">Error::OR_INVALID_OXID</a></span>, <span class='object_link'><a href="Error.html#OR_INVALID_SET-constant" title="Msf::Post::Windows::Error::OR_INVALID_SET (constant)">Error::OR_INVALID_SET</a></span>, <span class='object_link'><a href="Error.html#OUTOFMEMORY-constant" title="Msf::Post::Windows::Error::OUTOFMEMORY (constant)">Error::OUTOFMEMORY</a></span>, <span class='object_link'><a href="Error.html#OUT_OF_PAPER-constant" title="Msf::Post::Windows::Error::OUT_OF_PAPER (constant)">Error::OUT_OF_PAPER</a></span>, <span class='object_link'><a href="Error.html#OUT_OF_STRUCTURES-constant" title="Msf::Post::Windows::Error::OUT_OF_STRUCTURES (constant)">Error::OUT_OF_STRUCTURES</a></span>, <span class='object_link'><a href="Error.html#OVERRIDE_NOCHANGES-constant" title="Msf::Post::Windows::Error::OVERRIDE_NOCHANGES (constant)">Error::OVERRIDE_NOCHANGES</a></span>, <span class='object_link'><a href="Error.html#PAGED_SYSTEM_RESOURCES-constant" title="Msf::Post::Windows::Error::PAGED_SYSTEM_RESOURCES (constant)">Error::PAGED_SYSTEM_RESOURCES</a></span>, <span class='object_link'><a href="Error.html#PAGEFILE_CREATE_FAILED-constant" title="Msf::Post::Windows::Error::PAGEFILE_CREATE_FAILED (constant)">Error::PAGEFILE_CREATE_FAILED</a></span>, <span class='object_link'><a href="Error.html#PAGEFILE_QUOTA-constant" title="Msf::Post::Windows::Error::PAGEFILE_QUOTA (constant)">Error::PAGEFILE_QUOTA</a></span>, <span class='object_link'><a href="Error.html#PAGEFILE_QUOTA_EXCEEDED-constant" title="Msf::Post::Windows::Error::PAGEFILE_QUOTA_EXCEEDED (constant)">Error::PAGEFILE_QUOTA_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#PAGE_FAULT_COPY_ON_WRITE-constant" title="Msf::Post::Windows::Error::PAGE_FAULT_COPY_ON_WRITE (constant)">Error::PAGE_FAULT_COPY_ON_WRITE</a></span>, <span class='object_link'><a href="Error.html#PAGE_FAULT_DEMAND_ZERO-constant" title="Msf::Post::Windows::Error::PAGE_FAULT_DEMAND_ZERO (constant)">Error::PAGE_FAULT_DEMAND_ZERO</a></span>, <span class='object_link'><a href="Error.html#PAGE_FAULT_GUARD_PAGE-constant" title="Msf::Post::Windows::Error::PAGE_FAULT_GUARD_PAGE (constant)">Error::PAGE_FAULT_GUARD_PAGE</a></span>, <span class='object_link'><a href="Error.html#PAGE_FAULT_PAGING_FILE-constant" title="Msf::Post::Windows::Error::PAGE_FAULT_PAGING_FILE (constant)">Error::PAGE_FAULT_PAGING_FILE</a></span>, <span class='object_link'><a href="Error.html#PAGE_FAULT_TRANSITION-constant" title="Msf::Post::Windows::Error::PAGE_FAULT_TRANSITION (constant)">Error::PAGE_FAULT_TRANSITION</a></span>, <span class='object_link'><a href="Error.html#PARAMETER_QUOTA_EXCEEDED-constant" title="Msf::Post::Windows::Error::PARAMETER_QUOTA_EXCEEDED (constant)">Error::PARAMETER_QUOTA_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#PARTIAL_COPY-constant" title="Msf::Post::Windows::Error::PARTIAL_COPY (constant)">Error::PARTIAL_COPY</a></span>, <span class='object_link'><a href="Error.html#PARTITION_FAILURE-constant" title="Msf::Post::Windows::Error::PARTITION_FAILURE (constant)">Error::PARTITION_FAILURE</a></span>, <span class='object_link'><a href="Error.html#PASSWORD_EXPIRED-constant" title="Msf::Post::Windows::Error::PASSWORD_EXPIRED (constant)">Error::PASSWORD_EXPIRED</a></span>, <span class='object_link'><a href="Error.html#PASSWORD_MUST_CHANGE-constant" title="Msf::Post::Windows::Error::PASSWORD_MUST_CHANGE (constant)">Error::PASSWORD_MUST_CHANGE</a></span>, <span class='object_link'><a href="Error.html#PASSWORD_RESTRICTION-constant" title="Msf::Post::Windows::Error::PASSWORD_RESTRICTION (constant)">Error::PASSWORD_RESTRICTION</a></span>, <span class='object_link'><a href="Error.html#PATCH_MANAGED_ADVERTISED_PRODUCT-constant" title="Msf::Post::Windows::Error::PATCH_MANAGED_ADVERTISED_PRODUCT (constant)">Error::PATCH_MANAGED_ADVERTISED_PRODUCT</a></span>, <span class='object_link'><a href="Error.html#PATCH_NO_SEQUENCE-constant" title="Msf::Post::Windows::Error::PATCH_NO_SEQUENCE (constant)">Error::PATCH_NO_SEQUENCE</a></span>, <span class='object_link'><a href="Error.html#PATCH_PACKAGE_INVALID-constant" title="Msf::Post::Windows::Error::PATCH_PACKAGE_INVALID (constant)">Error::PATCH_PACKAGE_INVALID</a></span>, <span class='object_link'><a href="Error.html#PATCH_PACKAGE_OPEN_FAILED-constant" title="Msf::Post::Windows::Error::PATCH_PACKAGE_OPEN_FAILED (constant)">Error::PATCH_PACKAGE_OPEN_FAILED</a></span>, <span class='object_link'><a href="Error.html#PATCH_PACKAGE_REJECTED-constant" title="Msf::Post::Windows::Error::PATCH_PACKAGE_REJECTED (constant)">Error::PATCH_PACKAGE_REJECTED</a></span>, <span class='object_link'><a href="Error.html#PATCH_PACKAGE_UNSUPPORTED-constant" title="Msf::Post::Windows::Error::PATCH_PACKAGE_UNSUPPORTED (constant)">Error::PATCH_PACKAGE_UNSUPPORTED</a></span>, <span class='object_link'><a href="Error.html#PATCH_REMOVAL_DISALLOWED-constant" title="Msf::Post::Windows::Error::PATCH_REMOVAL_DISALLOWED (constant)">Error::PATCH_REMOVAL_DISALLOWED</a></span>, <span class='object_link'><a href="Error.html#PATCH_REMOVAL_UNSUPPORTED-constant" title="Msf::Post::Windows::Error::PATCH_REMOVAL_UNSUPPORTED (constant)">Error::PATCH_REMOVAL_UNSUPPORTED</a></span>, <span class='object_link'><a href="Error.html#PATCH_TARGET_NOT_FOUND-constant" title="Msf::Post::Windows::Error::PATCH_TARGET_NOT_FOUND (constant)">Error::PATCH_TARGET_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#PATH_BUSY-constant" title="Msf::Post::Windows::Error::PATH_BUSY (constant)">Error::PATH_BUSY</a></span>, <span class='object_link'><a href="Error.html#PATH_NOT_FOUND-constant" title="Msf::Post::Windows::Error::PATH_NOT_FOUND (constant)">Error::PATH_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_ALREADY_COMPLETED-constant" title="Msf::Post::Windows::Error::PEERDIST_ALREADY_COMPLETED (constant)">Error::PEERDIST_ALREADY_COMPLETED</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::PEERDIST_ALREADY_EXISTS (constant)">Error::PEERDIST_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_ALREADY_INITIALIZED-constant" title="Msf::Post::Windows::Error::PEERDIST_ALREADY_INITIALIZED (constant)">Error::PEERDIST_ALREADY_INITIALIZED</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_CANNOT_PARSE_CONTENTINFO-constant" title="Msf::Post::Windows::Error::PEERDIST_CANNOT_PARSE_CONTENTINFO (constant)">Error::PEERDIST_CANNOT_PARSE_CONTENTINFO</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_CONTENTINFO_VERSION_UNSUPPORTED-constant" title="Msf::Post::Windows::Error::PEERDIST_CONTENTINFO_VERSION_UNSUPPORTED (constant)">Error::PEERDIST_CONTENTINFO_VERSION_UNSUPPORTED</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_INVALIDATED-constant" title="Msf::Post::Windows::Error::PEERDIST_INVALIDATED (constant)">Error::PEERDIST_INVALIDATED</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_INVALID_CONFIGURATION-constant" title="Msf::Post::Windows::Error::PEERDIST_INVALID_CONFIGURATION (constant)">Error::PEERDIST_INVALID_CONFIGURATION</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_MISSING_DATA-constant" title="Msf::Post::Windows::Error::PEERDIST_MISSING_DATA (constant)">Error::PEERDIST_MISSING_DATA</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_NOT_INITIALIZED-constant" title="Msf::Post::Windows::Error::PEERDIST_NOT_INITIALIZED (constant)">Error::PEERDIST_NOT_INITIALIZED</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_NOT_LICENSED-constant" title="Msf::Post::Windows::Error::PEERDIST_NOT_LICENSED (constant)">Error::PEERDIST_NOT_LICENSED</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_NO_MORE-constant" title="Msf::Post::Windows::Error::PEERDIST_NO_MORE (constant)">Error::PEERDIST_NO_MORE</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_OPERATION_NOTFOUND-constant" title="Msf::Post::Windows::Error::PEERDIST_OPERATION_NOTFOUND (constant)">Error::PEERDIST_OPERATION_NOTFOUND</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_OUT_OF_BOUNDS-constant" title="Msf::Post::Windows::Error::PEERDIST_OUT_OF_BOUNDS (constant)">Error::PEERDIST_OUT_OF_BOUNDS</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_SERVICE_UNAVAILABLE-constant" title="Msf::Post::Windows::Error::PEERDIST_SERVICE_UNAVAILABLE (constant)">Error::PEERDIST_SERVICE_UNAVAILABLE</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_SHUTDOWN_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::PEERDIST_SHUTDOWN_IN_PROGRESS (constant)">Error::PEERDIST_SHUTDOWN_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#PEERDIST_VERSION_UNSUPPORTED-constant" title="Msf::Post::Windows::Error::PEERDIST_VERSION_UNSUPPORTED (constant)">Error::PEERDIST_VERSION_UNSUPPORTED</a></span>, <span class='object_link'><a href="Error.html#PER_USER_TRUST_QUOTA_EXCEEDED-constant" title="Msf::Post::Windows::Error::PER_USER_TRUST_QUOTA_EXCEEDED (constant)">Error::PER_USER_TRUST_QUOTA_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#PIPE_BUSY-constant" title="Msf::Post::Windows::Error::PIPE_BUSY (constant)">Error::PIPE_BUSY</a></span>, <span class='object_link'><a href="Error.html#PIPE_CONNECTED-constant" title="Msf::Post::Windows::Error::PIPE_CONNECTED (constant)">Error::PIPE_CONNECTED</a></span>, <span class='object_link'><a href="Error.html#PIPE_LISTENING-constant" title="Msf::Post::Windows::Error::PIPE_LISTENING (constant)">Error::PIPE_LISTENING</a></span>, <span class='object_link'><a href="Error.html#PIPE_LOCAL-constant" title="Msf::Post::Windows::Error::PIPE_LOCAL (constant)">Error::PIPE_LOCAL</a></span>, <span class='object_link'><a href="Error.html#PIPE_NOT_CONNECTED-constant" title="Msf::Post::Windows::Error::PIPE_NOT_CONNECTED (constant)">Error::PIPE_NOT_CONNECTED</a></span>, <span class='object_link'><a href="Error.html#PKINIT_FAILURE-constant" title="Msf::Post::Windows::Error::PKINIT_FAILURE (constant)">Error::PKINIT_FAILURE</a></span>, <span class='object_link'><a href="Error.html#PLUGPLAY_QUERY_VETOED-constant" title="Msf::Post::Windows::Error::PLUGPLAY_QUERY_VETOED (constant)">Error::PLUGPLAY_QUERY_VETOED</a></span>, <span class='object_link'><a href="Error.html#PNP_BAD_MPS_TABLE-constant" title="Msf::Post::Windows::Error::PNP_BAD_MPS_TABLE (constant)">Error::PNP_BAD_MPS_TABLE</a></span>, <span class='object_link'><a href="Error.html#PNP_INVALID_ID-constant" title="Msf::Post::Windows::Error::PNP_INVALID_ID (constant)">Error::PNP_INVALID_ID</a></span>, <span class='object_link'><a href="Error.html#PNP_IRQ_TRANSLATION_FAILED-constant" title="Msf::Post::Windows::Error::PNP_IRQ_TRANSLATION_FAILED (constant)">Error::PNP_IRQ_TRANSLATION_FAILED</a></span>, <span class='object_link'><a href="Error.html#PNP_REBOOT_REQUIRED-constant" title="Msf::Post::Windows::Error::PNP_REBOOT_REQUIRED (constant)">Error::PNP_REBOOT_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#PNP_RESTART_ENUMERATION-constant" title="Msf::Post::Windows::Error::PNP_RESTART_ENUMERATION (constant)">Error::PNP_RESTART_ENUMERATION</a></span>, <span class='object_link'><a href="Error.html#PNP_TRANSLATION_FAILED-constant" title="Msf::Post::Windows::Error::PNP_TRANSLATION_FAILED (constant)">Error::PNP_TRANSLATION_FAILED</a></span>, <span class='object_link'><a href="Error.html#POINT_NOT_FOUND-constant" title="Msf::Post::Windows::Error::POINT_NOT_FOUND (constant)">Error::POINT_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#POLICY_OBJECT_NOT_FOUND-constant" title="Msf::Post::Windows::Error::POLICY_OBJECT_NOT_FOUND (constant)">Error::POLICY_OBJECT_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#POLICY_ONLY_IN_DS-constant" title="Msf::Post::Windows::Error::POLICY_ONLY_IN_DS (constant)">Error::POLICY_ONLY_IN_DS</a></span>, <span class='object_link'><a href="Error.html#POPUP_ALREADY_ACTIVE-constant" title="Msf::Post::Windows::Error::POPUP_ALREADY_ACTIVE (constant)">Error::POPUP_ALREADY_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#PORT_MESSAGE_TOO_LONG-constant" title="Msf::Post::Windows::Error::PORT_MESSAGE_TOO_LONG (constant)">Error::PORT_MESSAGE_TOO_LONG</a></span>, <span class='object_link'><a href="Error.html#PORT_NOT_SET-constant" title="Msf::Post::Windows::Error::PORT_NOT_SET (constant)">Error::PORT_NOT_SET</a></span>, <span class='object_link'><a href="Error.html#PORT_UNREACHABLE-constant" title="Msf::Post::Windows::Error::PORT_UNREACHABLE (constant)">Error::PORT_UNREACHABLE</a></span>, <span class='object_link'><a href="Error.html#POSSIBLE_DEADLOCK-constant" title="Msf::Post::Windows::Error::POSSIBLE_DEADLOCK (constant)">Error::POSSIBLE_DEADLOCK</a></span>, <span class='object_link'><a href="Error.html#POTENTIAL_FILE_FOUND-constant" title="Msf::Post::Windows::Error::POTENTIAL_FILE_FOUND (constant)">Error::POTENTIAL_FILE_FOUND</a></span>, <span class='object_link'><a href="Error.html#PREDEFINED_HANDLE-constant" title="Msf::Post::Windows::Error::PREDEFINED_HANDLE (constant)">Error::PREDEFINED_HANDLE</a></span>, <span class='object_link'><a href="Error.html#PRIMARY_TRANSPORT_CONNECT_FAILED-constant" title="Msf::Post::Windows::Error::PRIMARY_TRANSPORT_CONNECT_FAILED (constant)">Error::PRIMARY_TRANSPORT_CONNECT_FAILED</a></span>, <span class='object_link'><a href="Error.html#PRINTER_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::PRINTER_ALREADY_EXISTS (constant)">Error::PRINTER_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#PRINTER_DELETED-constant" title="Msf::Post::Windows::Error::PRINTER_DELETED (constant)">Error::PRINTER_DELETED</a></span>, <span class='object_link'><a href="Error.html#PRINTER_DRIVER_ALREADY_INSTALLED-constant" title="Msf::Post::Windows::Error::PRINTER_DRIVER_ALREADY_INSTALLED (constant)">Error::PRINTER_DRIVER_ALREADY_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#PRINTER_DRIVER_BLOCKED-constant" title="Msf::Post::Windows::Error::PRINTER_DRIVER_BLOCKED (constant)">Error::PRINTER_DRIVER_BLOCKED</a></span>, <span class='object_link'><a href="Error.html#PRINTER_DRIVER_DOWNLOAD_NEEDED-constant" title="Msf::Post::Windows::Error::PRINTER_DRIVER_DOWNLOAD_NEEDED (constant)">Error::PRINTER_DRIVER_DOWNLOAD_NEEDED</a></span>, <span class='object_link'><a href="Error.html#PRINTER_DRIVER_IN_USE-constant" title="Msf::Post::Windows::Error::PRINTER_DRIVER_IN_USE (constant)">Error::PRINTER_DRIVER_IN_USE</a></span>, <span class='object_link'><a href="Error.html#PRINTER_DRIVER_PACKAGE_IN_USE-constant" title="Msf::Post::Windows::Error::PRINTER_DRIVER_PACKAGE_IN_USE (constant)">Error::PRINTER_DRIVER_PACKAGE_IN_USE</a></span>, <span class='object_link'><a href="Error.html#PRINTER_DRIVER_WARNED-constant" title="Msf::Post::Windows::Error::PRINTER_DRIVER_WARNED (constant)">Error::PRINTER_DRIVER_WARNED</a></span>, <span class='object_link'><a href="Error.html#PRINTER_HAS_JOBS_QUEUED-constant" title="Msf::Post::Windows::Error::PRINTER_HAS_JOBS_QUEUED (constant)">Error::PRINTER_HAS_JOBS_QUEUED</a></span>, <span class='object_link'><a href="Error.html#PRINTER_NOT_FOUND-constant" title="Msf::Post::Windows::Error::PRINTER_NOT_FOUND (constant)">Error::PRINTER_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#PRINTQ_FULL-constant" title="Msf::Post::Windows::Error::PRINTQ_FULL (constant)">Error::PRINTQ_FULL</a></span>, <span class='object_link'><a href="Error.html#PRINT_CANCELLED-constant" title="Msf::Post::Windows::Error::PRINT_CANCELLED (constant)">Error::PRINT_CANCELLED</a></span>, <span class='object_link'><a href="Error.html#PRINT_JOB_RESTART_REQUIRED-constant" title="Msf::Post::Windows::Error::PRINT_JOB_RESTART_REQUIRED (constant)">Error::PRINT_JOB_RESTART_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#PRINT_MONITOR_ALREADY_INSTALLED-constant" title="Msf::Post::Windows::Error::PRINT_MONITOR_ALREADY_INSTALLED (constant)">Error::PRINT_MONITOR_ALREADY_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#PRINT_MONITOR_IN_USE-constant" title="Msf::Post::Windows::Error::PRINT_MONITOR_IN_USE (constant)">Error::PRINT_MONITOR_IN_USE</a></span>, <span class='object_link'><a href="Error.html#PRINT_PROCESSOR_ALREADY_INSTALLED-constant" title="Msf::Post::Windows::Error::PRINT_PROCESSOR_ALREADY_INSTALLED (constant)">Error::PRINT_PROCESSOR_ALREADY_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#PRIVATE_DIALOG_INDEX-constant" title="Msf::Post::Windows::Error::PRIVATE_DIALOG_INDEX (constant)">Error::PRIVATE_DIALOG_INDEX</a></span>, <span class='object_link'><a href="Error.html#PRIVILEGE_NOT_HELD-constant" title="Msf::Post::Windows::Error::PRIVILEGE_NOT_HELD (constant)">Error::PRIVILEGE_NOT_HELD</a></span>, <span class='object_link'><a href="Error.html#PROCESS_ABORTED-constant" title="Msf::Post::Windows::Error::PROCESS_ABORTED (constant)">Error::PROCESS_ABORTED</a></span>, <span class='object_link'><a href="Error.html#PROCESS_IN_JOB-constant" title="Msf::Post::Windows::Error::PROCESS_IN_JOB (constant)">Error::PROCESS_IN_JOB</a></span>, <span class='object_link'><a href="Error.html#PROCESS_IS_PROTECTED-constant" title="Msf::Post::Windows::Error::PROCESS_IS_PROTECTED (constant)">Error::PROCESS_IS_PROTECTED</a></span>, <span class='object_link'><a href="Error.html#PROCESS_MODE_ALREADY_BACKGROUND-constant" title="Msf::Post::Windows::Error::PROCESS_MODE_ALREADY_BACKGROUND (constant)">Error::PROCESS_MODE_ALREADY_BACKGROUND</a></span>, <span class='object_link'><a href="Error.html#PROCESS_MODE_NOT_BACKGROUND-constant" title="Msf::Post::Windows::Error::PROCESS_MODE_NOT_BACKGROUND (constant)">Error::PROCESS_MODE_NOT_BACKGROUND</a></span>, <span class='object_link'><a href="Error.html#PROCESS_NOT_IN_JOB-constant" title="Msf::Post::Windows::Error::PROCESS_NOT_IN_JOB (constant)">Error::PROCESS_NOT_IN_JOB</a></span>, <span class='object_link'><a href="Error.html#PROC_NOT_FOUND-constant" title="Msf::Post::Windows::Error::PROC_NOT_FOUND (constant)">Error::PROC_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#PRODUCT_UNINSTALLED-constant" title="Msf::Post::Windows::Error::PRODUCT_UNINSTALLED (constant)">Error::PRODUCT_UNINSTALLED</a></span>, <span class='object_link'><a href="Error.html#PRODUCT_VERSION-constant" title="Msf::Post::Windows::Error::PRODUCT_VERSION (constant)">Error::PRODUCT_VERSION</a></span>, <span class='object_link'><a href="Error.html#PROFILE_DOES_NOT_MATCH_DEVICE-constant" title="Msf::Post::Windows::Error::PROFILE_DOES_NOT_MATCH_DEVICE (constant)">Error::PROFILE_DOES_NOT_MATCH_DEVICE</a></span>, <span class='object_link'><a href="Error.html#PROFILE_NOT_ASSOCIATED_WITH_DEVICE-constant" title="Msf::Post::Windows::Error::PROFILE_NOT_ASSOCIATED_WITH_DEVICE (constant)">Error::PROFILE_NOT_ASSOCIATED_WITH_DEVICE</a></span>, <span class='object_link'><a href="Error.html#PROFILE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::PROFILE_NOT_FOUND (constant)">Error::PROFILE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#PROFILING_AT_LIMIT-constant" title="Msf::Post::Windows::Error::PROFILING_AT_LIMIT (constant)">Error::PROFILING_AT_LIMIT</a></span>, <span class='object_link'><a href="Error.html#PROFILING_NOT_STARTED-constant" title="Msf::Post::Windows::Error::PROFILING_NOT_STARTED (constant)">Error::PROFILING_NOT_STARTED</a></span>, <span class='object_link'><a href="Error.html#PROFILING_NOT_STOPPED-constant" title="Msf::Post::Windows::Error::PROFILING_NOT_STOPPED (constant)">Error::PROFILING_NOT_STOPPED</a></span>, <span class='object_link'><a href="Error.html#PROMOTION_ACTIVE-constant" title="Msf::Post::Windows::Error::PROMOTION_ACTIVE (constant)">Error::PROMOTION_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#PROTOCOL_UNREACHABLE-constant" title="Msf::Post::Windows::Error::PROTOCOL_UNREACHABLE (constant)">Error::PROTOCOL_UNREACHABLE</a></span>, <span class='object_link'><a href="Error.html#PWD_HISTORY_CONFLICT-constant" title="Msf::Post::Windows::Error::PWD_HISTORY_CONFLICT (constant)">Error::PWD_HISTORY_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#PWD_TOO_RECENT-constant" title="Msf::Post::Windows::Error::PWD_TOO_RECENT (constant)">Error::PWD_TOO_RECENT</a></span>, <span class='object_link'><a href="Error.html#PWD_TOO_SHORT-constant" title="Msf::Post::Windows::Error::PWD_TOO_SHORT (constant)">Error::PWD_TOO_SHORT</a></span>, <span class='object_link'><a href="Error.html#QUORUMLOG_OPEN_FAILED-constant" title="Msf::Post::Windows::Error::QUORUMLOG_OPEN_FAILED (constant)">Error::QUORUMLOG_OPEN_FAILED</a></span>, <span class='object_link'><a href="Error.html#QUORUM_DISK_NOT_FOUND-constant" title="Msf::Post::Windows::Error::QUORUM_DISK_NOT_FOUND (constant)">Error::QUORUM_DISK_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#QUORUM_NOT_ALLOWED_IN_THIS_GROUP-constant" title="Msf::Post::Windows::Error::QUORUM_NOT_ALLOWED_IN_THIS_GROUP (constant)">Error::QUORUM_NOT_ALLOWED_IN_THIS_GROUP</a></span>, <span class='object_link'><a href="Error.html#QUORUM_OWNER_ALIVE-constant" title="Msf::Post::Windows::Error::QUORUM_OWNER_ALIVE (constant)">Error::QUORUM_OWNER_ALIVE</a></span>, <span class='object_link'><a href="Error.html#QUORUM_RESOURCE-constant" title="Msf::Post::Windows::Error::QUORUM_RESOURCE (constant)">Error::QUORUM_RESOURCE</a></span>, <span class='object_link'><a href="Error.html#QUORUM_RESOURCE_ONLINE_FAILED-constant" title="Msf::Post::Windows::Error::QUORUM_RESOURCE_ONLINE_FAILED (constant)">Error::QUORUM_RESOURCE_ONLINE_FAILED</a></span>, <span class='object_link'><a href="Error.html#QUOTA_LIST_INCONSISTENT-constant" title="Msf::Post::Windows::Error::QUOTA_LIST_INCONSISTENT (constant)">Error::QUOTA_LIST_INCONSISTENT</a></span>, <span class='object_link'><a href="Error.html#RANGE_LIST_CONFLICT-constant" title="Msf::Post::Windows::Error::RANGE_LIST_CONFLICT (constant)">Error::RANGE_LIST_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#RANGE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RANGE_NOT_FOUND (constant)">Error::RANGE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RDP_PROTOCOL_ERROR-constant" title="Msf::Post::Windows::Error::RDP_PROTOCOL_ERROR (constant)">Error::RDP_PROTOCOL_ERROR</a></span>, <span class='object_link'><a href="Error.html#READ_FAULT-constant" title="Msf::Post::Windows::Error::READ_FAULT (constant)">Error::READ_FAULT</a></span>, <span class='object_link'><a href="Error.html#RECEIVE_EXPEDITED-constant" title="Msf::Post::Windows::Error::RECEIVE_EXPEDITED (constant)">Error::RECEIVE_EXPEDITED</a></span>, <span class='object_link'><a href="Error.html#RECEIVE_PARTIAL-constant" title="Msf::Post::Windows::Error::RECEIVE_PARTIAL (constant)">Error::RECEIVE_PARTIAL</a></span>, <span class='object_link'><a href="Error.html#RECEIVE_PARTIAL_EXPEDITED-constant" title="Msf::Post::Windows::Error::RECEIVE_PARTIAL_EXPEDITED (constant)">Error::RECEIVE_PARTIAL_EXPEDITED</a></span>, <span class='object_link'><a href="Error.html#RECOVERY_FAILURE-constant" title="Msf::Post::Windows::Error::RECOVERY_FAILURE (constant)">Error::RECOVERY_FAILURE</a></span>, <span class='object_link'><a href="Error.html#RECOVERY_NOT_NEEDED-constant" title="Msf::Post::Windows::Error::RECOVERY_NOT_NEEDED (constant)">Error::RECOVERY_NOT_NEEDED</a></span>, <span class='object_link'><a href="Error.html#REC_NON_EXISTENT-constant" title="Msf::Post::Windows::Error::REC_NON_EXISTENT (constant)">Error::REC_NON_EXISTENT</a></span>, <span class='object_link'><a href="Error.html#REDIRECTOR_HAS_OPEN_HANDLES-constant" title="Msf::Post::Windows::Error::REDIRECTOR_HAS_OPEN_HANDLES (constant)">Error::REDIRECTOR_HAS_OPEN_HANDLES</a></span>, <span class='object_link'><a href="Error.html#REDIR_PAUSED-constant" title="Msf::Post::Windows::Error::REDIR_PAUSED (constant)">Error::REDIR_PAUSED</a></span>, <span class='object_link'><a href="Error.html#REGISTRY_CORRUPT-constant" title="Msf::Post::Windows::Error::REGISTRY_CORRUPT (constant)">Error::REGISTRY_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#REGISTRY_HIVE_RECOVERED-constant" title="Msf::Post::Windows::Error::REGISTRY_HIVE_RECOVERED (constant)">Error::REGISTRY_HIVE_RECOVERED</a></span>, <span class='object_link'><a href="Error.html#REGISTRY_IO_FAILED-constant" title="Msf::Post::Windows::Error::REGISTRY_IO_FAILED (constant)">Error::REGISTRY_IO_FAILED</a></span>, <span class='object_link'><a href="Error.html#REGISTRY_QUOTA_LIMIT-constant" title="Msf::Post::Windows::Error::REGISTRY_QUOTA_LIMIT (constant)">Error::REGISTRY_QUOTA_LIMIT</a></span>, <span class='object_link'><a href="Error.html#REGISTRY_RECOVERED-constant" title="Msf::Post::Windows::Error::REGISTRY_RECOVERED (constant)">Error::REGISTRY_RECOVERED</a></span>, <span class='object_link'><a href="Error.html#REG_NAT_CONSUMPTION-constant" title="Msf::Post::Windows::Error::REG_NAT_CONSUMPTION (constant)">Error::REG_NAT_CONSUMPTION</a></span>, <span class='object_link'><a href="Error.html#RELOC_CHAIN_XEEDS_SEGLIM-constant" title="Msf::Post::Windows::Error::RELOC_CHAIN_XEEDS_SEGLIM (constant)">Error::RELOC_CHAIN_XEEDS_SEGLIM</a></span>, <span class='object_link'><a href="Error.html#REMOTE_FILE_VERSION_MISMATCH-constant" title="Msf::Post::Windows::Error::REMOTE_FILE_VERSION_MISMATCH (constant)">Error::REMOTE_FILE_VERSION_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#REMOTE_PRINT_CONNECTIONS_BLOCKED-constant" title="Msf::Post::Windows::Error::REMOTE_PRINT_CONNECTIONS_BLOCKED (constant)">Error::REMOTE_PRINT_CONNECTIONS_BLOCKED</a></span>, <span class='object_link'><a href="Error.html#REMOTE_SESSION_LIMIT_EXCEEDED-constant" title="Msf::Post::Windows::Error::REMOTE_SESSION_LIMIT_EXCEEDED (constant)">Error::REMOTE_SESSION_LIMIT_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#REMOTE_STORAGE_MEDIA_ERROR-constant" title="Msf::Post::Windows::Error::REMOTE_STORAGE_MEDIA_ERROR (constant)">Error::REMOTE_STORAGE_MEDIA_ERROR</a></span>, <span class='object_link'><a href="Error.html#REMOTE_STORAGE_NOT_ACTIVE-constant" title="Msf::Post::Windows::Error::REMOTE_STORAGE_NOT_ACTIVE (constant)">Error::REMOTE_STORAGE_NOT_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#REM_NOT_LIST-constant" title="Msf::Post::Windows::Error::REM_NOT_LIST (constant)">Error::REM_NOT_LIST</a></span>, <span class='object_link'><a href="Error.html#REPARSE-constant" title="Msf::Post::Windows::Error::REPARSE (constant)">Error::REPARSE</a></span>, <span class='object_link'><a href="Error.html#REPARSE_ATTRIBUTE_CONFLICT-constant" title="Msf::Post::Windows::Error::REPARSE_ATTRIBUTE_CONFLICT (constant)">Error::REPARSE_ATTRIBUTE_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#REPARSE_OBJECT-constant" title="Msf::Post::Windows::Error::REPARSE_OBJECT (constant)">Error::REPARSE_OBJECT</a></span>, <span class='object_link'><a href="Error.html#REPARSE_TAG_INVALID-constant" title="Msf::Post::Windows::Error::REPARSE_TAG_INVALID (constant)">Error::REPARSE_TAG_INVALID</a></span>, <span class='object_link'><a href="Error.html#REPARSE_TAG_MISMATCH-constant" title="Msf::Post::Windows::Error::REPARSE_TAG_MISMATCH (constant)">Error::REPARSE_TAG_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#REPLY_MESSAGE_MISMATCH-constant" title="Msf::Post::Windows::Error::REPLY_MESSAGE_MISMATCH (constant)">Error::REPLY_MESSAGE_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#REQUEST_ABORTED-constant" title="Msf::Post::Windows::Error::REQUEST_ABORTED (constant)">Error::REQUEST_ABORTED</a></span>, <span class='object_link'><a href="Error.html#REQUEST_OUT_OF_SEQUENCE-constant" title="Msf::Post::Windows::Error::REQUEST_OUT_OF_SEQUENCE (constant)">Error::REQUEST_OUT_OF_SEQUENCE</a></span>, <span class='object_link'><a href="Error.html#REQUEST_REFUSED-constant" title="Msf::Post::Windows::Error::REQUEST_REFUSED (constant)">Error::REQUEST_REFUSED</a></span>, <span class='object_link'><a href="Error.html#REQUIRES_INTERACTIVE_WINDOWSTATION-constant" title="Msf::Post::Windows::Error::REQUIRES_INTERACTIVE_WINDOWSTATION (constant)">Error::REQUIRES_INTERACTIVE_WINDOWSTATION</a></span>, <span class='object_link'><a href="Error.html#REQ_NOT_ACCEP-constant" title="Msf::Post::Windows::Error::REQ_NOT_ACCEP (constant)">Error::REQ_NOT_ACCEP</a></span>, <span class='object_link'><a href="Error.html#RESMON_CREATE_FAILED-constant" title="Msf::Post::Windows::Error::RESMON_CREATE_FAILED (constant)">Error::RESMON_CREATE_FAILED</a></span>, <span class='object_link'><a href="Error.html#RESMON_INVALID_STATE-constant" title="Msf::Post::Windows::Error::RESMON_INVALID_STATE (constant)">Error::RESMON_INVALID_STATE</a></span>, <span class='object_link'><a href="Error.html#RESMON_ONLINE_FAILED-constant" title="Msf::Post::Windows::Error::RESMON_ONLINE_FAILED (constant)">Error::RESMON_ONLINE_FAILED</a></span>, <span class='object_link'><a href="Error.html#RESOURCEMANAGER_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RESOURCEMANAGER_NOT_FOUND (constant)">Error::RESOURCEMANAGER_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RESOURCEMANAGER_READ_ONLY-constant" title="Msf::Post::Windows::Error::RESOURCEMANAGER_READ_ONLY (constant)">Error::RESOURCEMANAGER_READ_ONLY</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_CALL_TIMED_OUT-constant" title="Msf::Post::Windows::Error::RESOURCE_CALL_TIMED_OUT (constant)">Error::RESOURCE_CALL_TIMED_OUT</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_DATA_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RESOURCE_DATA_NOT_FOUND (constant)">Error::RESOURCE_DATA_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_DISABLED-constant" title="Msf::Post::Windows::Error::RESOURCE_DISABLED (constant)">Error::RESOURCE_DISABLED</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_ENUM_USER_STOP-constant" title="Msf::Post::Windows::Error::RESOURCE_ENUM_USER_STOP (constant)">Error::RESOURCE_ENUM_USER_STOP</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_FAILED-constant" title="Msf::Post::Windows::Error::RESOURCE_FAILED (constant)">Error::RESOURCE_FAILED</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_LANG_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RESOURCE_LANG_NOT_FOUND (constant)">Error::RESOURCE_LANG_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_NAME_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RESOURCE_NAME_NOT_FOUND (constant)">Error::RESOURCE_NAME_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_NOT_AVAILABLE-constant" title="Msf::Post::Windows::Error::RESOURCE_NOT_AVAILABLE (constant)">Error::RESOURCE_NOT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RESOURCE_NOT_FOUND (constant)">Error::RESOURCE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_NOT_ONLINE-constant" title="Msf::Post::Windows::Error::RESOURCE_NOT_ONLINE (constant)">Error::RESOURCE_NOT_ONLINE</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_NOT_PRESENT-constant" title="Msf::Post::Windows::Error::RESOURCE_NOT_PRESENT (constant)">Error::RESOURCE_NOT_PRESENT</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_ONLINE-constant" title="Msf::Post::Windows::Error::RESOURCE_ONLINE (constant)">Error::RESOURCE_ONLINE</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_PROPERTIES_STORED-constant" title="Msf::Post::Windows::Error::RESOURCE_PROPERTIES_STORED (constant)">Error::RESOURCE_PROPERTIES_STORED</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_PROPERTY_UNCHANGEABLE-constant" title="Msf::Post::Windows::Error::RESOURCE_PROPERTY_UNCHANGEABLE (constant)">Error::RESOURCE_PROPERTY_UNCHANGEABLE</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_REQUIREMENTS_CHANGED-constant" title="Msf::Post::Windows::Error::RESOURCE_REQUIREMENTS_CHANGED (constant)">Error::RESOURCE_REQUIREMENTS_CHANGED</a></span>, <span class='object_link'><a href="Error.html#RESOURCE_TYPE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RESOURCE_TYPE_NOT_FOUND (constant)">Error::RESOURCE_TYPE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RESTART_APPLICATION-constant" title="Msf::Post::Windows::Error::RESTART_APPLICATION (constant)">Error::RESTART_APPLICATION</a></span>, <span class='object_link'><a href="Error.html#RESUME_HIBERNATION-constant" title="Msf::Post::Windows::Error::RESUME_HIBERNATION (constant)">Error::RESUME_HIBERNATION</a></span>, <span class='object_link'><a href="Error.html#RETRY-constant" title="Msf::Post::Windows::Error::RETRY (constant)">Error::RETRY</a></span>, <span class='object_link'><a href="Error.html#REVISION_MISMATCH-constant" title="Msf::Post::Windows::Error::REVISION_MISMATCH (constant)">Error::REVISION_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#RING2SEG_MUST_BE_MOVABLE-constant" title="Msf::Post::Windows::Error::RING2SEG_MUST_BE_MOVABLE (constant)">Error::RING2SEG_MUST_BE_MOVABLE</a></span>, <span class='object_link'><a href="Error.html#RING2_STACK_IN_USE-constant" title="Msf::Post::Windows::Error::RING2_STACK_IN_USE (constant)">Error::RING2_STACK_IN_USE</a></span>, <span class='object_link'><a href="Error.html#RMODE_APP-constant" title="Msf::Post::Windows::Error::RMODE_APP (constant)">Error::RMODE_APP</a></span>, <span class='object_link'><a href="Error.html#RM_ALREADY_STARTED-constant" title="Msf::Post::Windows::Error::RM_ALREADY_STARTED (constant)">Error::RM_ALREADY_STARTED</a></span>, <span class='object_link'><a href="Error.html#RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT-constant" title="Msf::Post::Windows::Error::RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT (constant)">Error::RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT</a></span>, <span class='object_link'><a href="Error.html#RM_DISCONNECTED-constant" title="Msf::Post::Windows::Error::RM_DISCONNECTED (constant)">Error::RM_DISCONNECTED</a></span>, <span class='object_link'><a href="Error.html#RM_METADATA_CORRUPT-constant" title="Msf::Post::Windows::Error::RM_METADATA_CORRUPT (constant)">Error::RM_METADATA_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#RM_NOT_ACTIVE-constant" title="Msf::Post::Windows::Error::RM_NOT_ACTIVE (constant)">Error::RM_NOT_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#ROLLBACK_TIMER_EXPIRED-constant" title="Msf::Post::Windows::Error::ROLLBACK_TIMER_EXPIRED (constant)">Error::ROLLBACK_TIMER_EXPIRED</a></span>, <span class='object_link'><a href="Error.html#ROWSNOTRELEASED-constant" title="Msf::Post::Windows::Error::ROWSNOTRELEASED (constant)">Error::ROWSNOTRELEASED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_ADDRESS_ERROR-constant" title="Msf::Post::Windows::Error::RPC_S_ADDRESS_ERROR (constant)">Error::RPC_S_ADDRESS_ERROR</a></span>, <span class='object_link'><a href="Error.html#RPC_S_ALREADY_LISTENING-constant" title="Msf::Post::Windows::Error::RPC_S_ALREADY_LISTENING (constant)">Error::RPC_S_ALREADY_LISTENING</a></span>, <span class='object_link'><a href="Error.html#RPC_S_ALREADY_REGISTERED-constant" title="Msf::Post::Windows::Error::RPC_S_ALREADY_REGISTERED (constant)">Error::RPC_S_ALREADY_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_BINDING_HAS_NO_AUTH-constant" title="Msf::Post::Windows::Error::RPC_S_BINDING_HAS_NO_AUTH (constant)">Error::RPC_S_BINDING_HAS_NO_AUTH</a></span>, <span class='object_link'><a href="Error.html#RPC_S_BINDING_INCOMPLETE-constant" title="Msf::Post::Windows::Error::RPC_S_BINDING_INCOMPLETE (constant)">Error::RPC_S_BINDING_INCOMPLETE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_CALL_CANCELLED-constant" title="Msf::Post::Windows::Error::RPC_S_CALL_CANCELLED (constant)">Error::RPC_S_CALL_CANCELLED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_CALL_FAILED-constant" title="Msf::Post::Windows::Error::RPC_S_CALL_FAILED (constant)">Error::RPC_S_CALL_FAILED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_CALL_FAILED_DNE-constant" title="Msf::Post::Windows::Error::RPC_S_CALL_FAILED_DNE (constant)">Error::RPC_S_CALL_FAILED_DNE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_CALL_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::RPC_S_CALL_IN_PROGRESS (constant)">Error::RPC_S_CALL_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#RPC_S_CANNOT_SUPPORT-constant" title="Msf::Post::Windows::Error::RPC_S_CANNOT_SUPPORT (constant)">Error::RPC_S_CANNOT_SUPPORT</a></span>, <span class='object_link'><a href="Error.html#RPC_S_CANT_CREATE_ENDPOINT-constant" title="Msf::Post::Windows::Error::RPC_S_CANT_CREATE_ENDPOINT (constant)">Error::RPC_S_CANT_CREATE_ENDPOINT</a></span>, <span class='object_link'><a href="Error.html#RPC_S_COMM_FAILURE-constant" title="Msf::Post::Windows::Error::RPC_S_COMM_FAILURE (constant)">Error::RPC_S_COMM_FAILURE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_COOKIE_AUTH_FAILED-constant" title="Msf::Post::Windows::Error::RPC_S_COOKIE_AUTH_FAILED (constant)">Error::RPC_S_COOKIE_AUTH_FAILED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_DUPLICATE_ENDPOINT-constant" title="Msf::Post::Windows::Error::RPC_S_DUPLICATE_ENDPOINT (constant)">Error::RPC_S_DUPLICATE_ENDPOINT</a></span>, <span class='object_link'><a href="Error.html#RPC_S_ENTRY_ALREADY_EXISTS-constant" title="Msf::Post::Windows::Error::RPC_S_ENTRY_ALREADY_EXISTS (constant)">Error::RPC_S_ENTRY_ALREADY_EXISTS</a></span>, <span class='object_link'><a href="Error.html#RPC_S_ENTRY_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RPC_S_ENTRY_NOT_FOUND (constant)">Error::RPC_S_ENTRY_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RPC_S_ENTRY_TYPE_MISMATCH-constant" title="Msf::Post::Windows::Error::RPC_S_ENTRY_TYPE_MISMATCH (constant)">Error::RPC_S_ENTRY_TYPE_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#RPC_S_FP_DIV_ZERO-constant" title="Msf::Post::Windows::Error::RPC_S_FP_DIV_ZERO (constant)">Error::RPC_S_FP_DIV_ZERO</a></span>, <span class='object_link'><a href="Error.html#RPC_S_FP_OVERFLOW-constant" title="Msf::Post::Windows::Error::RPC_S_FP_OVERFLOW (constant)">Error::RPC_S_FP_OVERFLOW</a></span>, <span class='object_link'><a href="Error.html#RPC_S_FP_UNDERFLOW-constant" title="Msf::Post::Windows::Error::RPC_S_FP_UNDERFLOW (constant)">Error::RPC_S_FP_UNDERFLOW</a></span>, <span class='object_link'><a href="Error.html#RPC_S_GROUP_MEMBER_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RPC_S_GROUP_MEMBER_NOT_FOUND (constant)">Error::RPC_S_GROUP_MEMBER_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RPC_S_GRP_ELT_NOT_ADDED-constant" title="Msf::Post::Windows::Error::RPC_S_GRP_ELT_NOT_ADDED (constant)">Error::RPC_S_GRP_ELT_NOT_ADDED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_GRP_ELT_NOT_REMOVED-constant" title="Msf::Post::Windows::Error::RPC_S_GRP_ELT_NOT_REMOVED (constant)">Error::RPC_S_GRP_ELT_NOT_REMOVED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INCOMPLETE_NAME-constant" title="Msf::Post::Windows::Error::RPC_S_INCOMPLETE_NAME (constant)">Error::RPC_S_INCOMPLETE_NAME</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INTERFACE_NOT_EXPORTED-constant" title="Msf::Post::Windows::Error::RPC_S_INTERFACE_NOT_EXPORTED (constant)">Error::RPC_S_INTERFACE_NOT_EXPORTED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INTERFACE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RPC_S_INTERFACE_NOT_FOUND (constant)">Error::RPC_S_INTERFACE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INTERNAL_ERROR-constant" title="Msf::Post::Windows::Error::RPC_S_INTERNAL_ERROR (constant)">Error::RPC_S_INTERNAL_ERROR</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_ASYNC_CALL-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_ASYNC_CALL (constant)">Error::RPC_S_INVALID_ASYNC_CALL</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_ASYNC_HANDLE-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_ASYNC_HANDLE (constant)">Error::RPC_S_INVALID_ASYNC_HANDLE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_AUTH_IDENTITY-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_AUTH_IDENTITY (constant)">Error::RPC_S_INVALID_AUTH_IDENTITY</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_BINDING-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_BINDING (constant)">Error::RPC_S_INVALID_BINDING</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_BOUND-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_BOUND (constant)">Error::RPC_S_INVALID_BOUND</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_ENDPOINT_FORMAT-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_ENDPOINT_FORMAT (constant)">Error::RPC_S_INVALID_ENDPOINT_FORMAT</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_NAF_ID-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_NAF_ID (constant)">Error::RPC_S_INVALID_NAF_ID</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_NAME_SYNTAX-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_NAME_SYNTAX (constant)">Error::RPC_S_INVALID_NAME_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_NETWORK_OPTIONS-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_NETWORK_OPTIONS (constant)">Error::RPC_S_INVALID_NETWORK_OPTIONS</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_NET_ADDR-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_NET_ADDR (constant)">Error::RPC_S_INVALID_NET_ADDR</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_OBJECT-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_OBJECT (constant)">Error::RPC_S_INVALID_OBJECT</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_RPC_PROTSEQ-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_RPC_PROTSEQ (constant)">Error::RPC_S_INVALID_RPC_PROTSEQ</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_STRING_BINDING-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_STRING_BINDING (constant)">Error::RPC_S_INVALID_STRING_BINDING</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_STRING_UUID-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_STRING_UUID (constant)">Error::RPC_S_INVALID_STRING_UUID</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_TAG-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_TAG (constant)">Error::RPC_S_INVALID_TAG</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_TIMEOUT-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_TIMEOUT (constant)">Error::RPC_S_INVALID_TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#RPC_S_INVALID_VERS_OPTION-constant" title="Msf::Post::Windows::Error::RPC_S_INVALID_VERS_OPTION (constant)">Error::RPC_S_INVALID_VERS_OPTION</a></span>, <span class='object_link'><a href="Error.html#RPC_S_MAX_CALLS_TOO_SMALL-constant" title="Msf::Post::Windows::Error::RPC_S_MAX_CALLS_TOO_SMALL (constant)">Error::RPC_S_MAX_CALLS_TOO_SMALL</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NAME_SERVICE_UNAVAILABLE-constant" title="Msf::Post::Windows::Error::RPC_S_NAME_SERVICE_UNAVAILABLE (constant)">Error::RPC_S_NAME_SERVICE_UNAVAILABLE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NOTHING_TO_EXPORT-constant" title="Msf::Post::Windows::Error::RPC_S_NOTHING_TO_EXPORT (constant)">Error::RPC_S_NOTHING_TO_EXPORT</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NOT_ALL_OBJS_EXPORTED-constant" title="Msf::Post::Windows::Error::RPC_S_NOT_ALL_OBJS_EXPORTED (constant)">Error::RPC_S_NOT_ALL_OBJS_EXPORTED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NOT_ALL_OBJS_UNEXPORTED-constant" title="Msf::Post::Windows::Error::RPC_S_NOT_ALL_OBJS_UNEXPORTED (constant)">Error::RPC_S_NOT_ALL_OBJS_UNEXPORTED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NOT_CANCELLED-constant" title="Msf::Post::Windows::Error::RPC_S_NOT_CANCELLED (constant)">Error::RPC_S_NOT_CANCELLED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NOT_LISTENING-constant" title="Msf::Post::Windows::Error::RPC_S_NOT_LISTENING (constant)">Error::RPC_S_NOT_LISTENING</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NOT_RPC_ERROR-constant" title="Msf::Post::Windows::Error::RPC_S_NOT_RPC_ERROR (constant)">Error::RPC_S_NOT_RPC_ERROR</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_BINDINGS-constant" title="Msf::Post::Windows::Error::RPC_S_NO_BINDINGS (constant)">Error::RPC_S_NO_BINDINGS</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_CALL_ACTIVE-constant" title="Msf::Post::Windows::Error::RPC_S_NO_CALL_ACTIVE (constant)">Error::RPC_S_NO_CALL_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_CONTEXT_AVAILABLE-constant" title="Msf::Post::Windows::Error::RPC_S_NO_CONTEXT_AVAILABLE (constant)">Error::RPC_S_NO_CONTEXT_AVAILABLE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_ENDPOINT_FOUND-constant" title="Msf::Post::Windows::Error::RPC_S_NO_ENDPOINT_FOUND (constant)">Error::RPC_S_NO_ENDPOINT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_ENTRY_NAME-constant" title="Msf::Post::Windows::Error::RPC_S_NO_ENTRY_NAME (constant)">Error::RPC_S_NO_ENTRY_NAME</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_INTERFACES-constant" title="Msf::Post::Windows::Error::RPC_S_NO_INTERFACES (constant)">Error::RPC_S_NO_INTERFACES</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_MORE_BINDINGS-constant" title="Msf::Post::Windows::Error::RPC_S_NO_MORE_BINDINGS (constant)">Error::RPC_S_NO_MORE_BINDINGS</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_MORE_MEMBERS-constant" title="Msf::Post::Windows::Error::RPC_S_NO_MORE_MEMBERS (constant)">Error::RPC_S_NO_MORE_MEMBERS</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_PRINC_NAME-constant" title="Msf::Post::Windows::Error::RPC_S_NO_PRINC_NAME (constant)">Error::RPC_S_NO_PRINC_NAME</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_PROTSEQS-constant" title="Msf::Post::Windows::Error::RPC_S_NO_PROTSEQS (constant)">Error::RPC_S_NO_PROTSEQS</a></span>, <span class='object_link'><a href="Error.html#RPC_S_NO_PROTSEQS_REGISTERED-constant" title="Msf::Post::Windows::Error::RPC_S_NO_PROTSEQS_REGISTERED (constant)">Error::RPC_S_NO_PROTSEQS_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_OBJECT_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RPC_S_OBJECT_NOT_FOUND (constant)">Error::RPC_S_OBJECT_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RPC_S_OUT_OF_RESOURCES-constant" title="Msf::Post::Windows::Error::RPC_S_OUT_OF_RESOURCES (constant)">Error::RPC_S_OUT_OF_RESOURCES</a></span>, <span class='object_link'><a href="Error.html#RPC_S_PRF_ELT_NOT_ADDED-constant" title="Msf::Post::Windows::Error::RPC_S_PRF_ELT_NOT_ADDED (constant)">Error::RPC_S_PRF_ELT_NOT_ADDED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_PRF_ELT_NOT_REMOVED-constant" title="Msf::Post::Windows::Error::RPC_S_PRF_ELT_NOT_REMOVED (constant)">Error::RPC_S_PRF_ELT_NOT_REMOVED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_PROCNUM_OUT_OF_RANGE-constant" title="Msf::Post::Windows::Error::RPC_S_PROCNUM_OUT_OF_RANGE (constant)">Error::RPC_S_PROCNUM_OUT_OF_RANGE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_PROFILE_NOT_ADDED-constant" title="Msf::Post::Windows::Error::RPC_S_PROFILE_NOT_ADDED (constant)">Error::RPC_S_PROFILE_NOT_ADDED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_PROTOCOL_ERROR-constant" title="Msf::Post::Windows::Error::RPC_S_PROTOCOL_ERROR (constant)">Error::RPC_S_PROTOCOL_ERROR</a></span>, <span class='object_link'><a href="Error.html#RPC_S_PROTSEQ_NOT_FOUND-constant" title="Msf::Post::Windows::Error::RPC_S_PROTSEQ_NOT_FOUND (constant)">Error::RPC_S_PROTSEQ_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#RPC_S_PROTSEQ_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::RPC_S_PROTSEQ_NOT_SUPPORTED (constant)">Error::RPC_S_PROTSEQ_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_PROXY_ACCESS_DENIED-constant" title="Msf::Post::Windows::Error::RPC_S_PROXY_ACCESS_DENIED (constant)">Error::RPC_S_PROXY_ACCESS_DENIED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_SEC_PKG_ERROR-constant" title="Msf::Post::Windows::Error::RPC_S_SEC_PKG_ERROR (constant)">Error::RPC_S_SEC_PKG_ERROR</a></span>, <span class='object_link'><a href="Error.html#RPC_S_SEND_INCOMPLETE-constant" title="Msf::Post::Windows::Error::RPC_S_SEND_INCOMPLETE (constant)">Error::RPC_S_SEND_INCOMPLETE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_SERVER_TOO_BUSY-constant" title="Msf::Post::Windows::Error::RPC_S_SERVER_TOO_BUSY (constant)">Error::RPC_S_SERVER_TOO_BUSY</a></span>, <span class='object_link'><a href="Error.html#RPC_S_SERVER_UNAVAILABLE-constant" title="Msf::Post::Windows::Error::RPC_S_SERVER_UNAVAILABLE (constant)">Error::RPC_S_SERVER_UNAVAILABLE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_STRING_TOO_LONG-constant" title="Msf::Post::Windows::Error::RPC_S_STRING_TOO_LONG (constant)">Error::RPC_S_STRING_TOO_LONG</a></span>, <span class='object_link'><a href="Error.html#RPC_S_TYPE_ALREADY_REGISTERED-constant" title="Msf::Post::Windows::Error::RPC_S_TYPE_ALREADY_REGISTERED (constant)">Error::RPC_S_TYPE_ALREADY_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNKNOWN_AUTHN_LEVEL-constant" title="Msf::Post::Windows::Error::RPC_S_UNKNOWN_AUTHN_LEVEL (constant)">Error::RPC_S_UNKNOWN_AUTHN_LEVEL</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNKNOWN_AUTHN_SERVICE-constant" title="Msf::Post::Windows::Error::RPC_S_UNKNOWN_AUTHN_SERVICE (constant)">Error::RPC_S_UNKNOWN_AUTHN_SERVICE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNKNOWN_AUTHN_TYPE-constant" title="Msf::Post::Windows::Error::RPC_S_UNKNOWN_AUTHN_TYPE (constant)">Error::RPC_S_UNKNOWN_AUTHN_TYPE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNKNOWN_AUTHZ_SERVICE-constant" title="Msf::Post::Windows::Error::RPC_S_UNKNOWN_AUTHZ_SERVICE (constant)">Error::RPC_S_UNKNOWN_AUTHZ_SERVICE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNKNOWN_IF-constant" title="Msf::Post::Windows::Error::RPC_S_UNKNOWN_IF (constant)">Error::RPC_S_UNKNOWN_IF</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNKNOWN_MGR_TYPE-constant" title="Msf::Post::Windows::Error::RPC_S_UNKNOWN_MGR_TYPE (constant)">Error::RPC_S_UNKNOWN_MGR_TYPE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNSUPPORTED_AUTHN_LEVEL-constant" title="Msf::Post::Windows::Error::RPC_S_UNSUPPORTED_AUTHN_LEVEL (constant)">Error::RPC_S_UNSUPPORTED_AUTHN_LEVEL</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNSUPPORTED_NAME_SYNTAX-constant" title="Msf::Post::Windows::Error::RPC_S_UNSUPPORTED_NAME_SYNTAX (constant)">Error::RPC_S_UNSUPPORTED_NAME_SYNTAX</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNSUPPORTED_TRANS_SYN-constant" title="Msf::Post::Windows::Error::RPC_S_UNSUPPORTED_TRANS_SYN (constant)">Error::RPC_S_UNSUPPORTED_TRANS_SYN</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UNSUPPORTED_TYPE-constant" title="Msf::Post::Windows::Error::RPC_S_UNSUPPORTED_TYPE (constant)">Error::RPC_S_UNSUPPORTED_TYPE</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UUID_LOCAL_ONLY-constant" title="Msf::Post::Windows::Error::RPC_S_UUID_LOCAL_ONLY (constant)">Error::RPC_S_UUID_LOCAL_ONLY</a></span>, <span class='object_link'><a href="Error.html#RPC_S_UUID_NO_ADDRESS-constant" title="Msf::Post::Windows::Error::RPC_S_UUID_NO_ADDRESS (constant)">Error::RPC_S_UUID_NO_ADDRESS</a></span>, <span class='object_link'><a href="Error.html#RPC_S_WRONG_KIND_OF_BINDING-constant" title="Msf::Post::Windows::Error::RPC_S_WRONG_KIND_OF_BINDING (constant)">Error::RPC_S_WRONG_KIND_OF_BINDING</a></span>, <span class='object_link'><a href="Error.html#RPC_S_ZERO_DIVIDE-constant" title="Msf::Post::Windows::Error::RPC_S_ZERO_DIVIDE (constant)">Error::RPC_S_ZERO_DIVIDE</a></span>, <span class='object_link'><a href="Error.html#RPC_X_BAD_STUB_DATA-constant" title="Msf::Post::Windows::Error::RPC_X_BAD_STUB_DATA (constant)">Error::RPC_X_BAD_STUB_DATA</a></span>, <span class='object_link'><a href="Error.html#RPC_X_BYTE_COUNT_TOO_SMALL-constant" title="Msf::Post::Windows::Error::RPC_X_BYTE_COUNT_TOO_SMALL (constant)">Error::RPC_X_BYTE_COUNT_TOO_SMALL</a></span>, <span class='object_link'><a href="Error.html#RPC_X_ENUM_VALUE_OUT_OF_RANGE-constant" title="Msf::Post::Windows::Error::RPC_X_ENUM_VALUE_OUT_OF_RANGE (constant)">Error::RPC_X_ENUM_VALUE_OUT_OF_RANGE</a></span>, <span class='object_link'><a href="Error.html#RPC_X_INVALID_ES_ACTION-constant" title="Msf::Post::Windows::Error::RPC_X_INVALID_ES_ACTION (constant)">Error::RPC_X_INVALID_ES_ACTION</a></span>, <span class='object_link'><a href="Error.html#RPC_X_INVALID_PIPE_OBJECT-constant" title="Msf::Post::Windows::Error::RPC_X_INVALID_PIPE_OBJECT (constant)">Error::RPC_X_INVALID_PIPE_OBJECT</a></span>, <span class='object_link'><a href="Error.html#RPC_X_NO_MORE_ENTRIES-constant" title="Msf::Post::Windows::Error::RPC_X_NO_MORE_ENTRIES (constant)">Error::RPC_X_NO_MORE_ENTRIES</a></span>, <span class='object_link'><a href="Error.html#RPC_X_NULL_REF_POINTER-constant" title="Msf::Post::Windows::Error::RPC_X_NULL_REF_POINTER (constant)">Error::RPC_X_NULL_REF_POINTER</a></span>, <span class='object_link'><a href="Error.html#RPC_X_PIPE_CLOSED-constant" title="Msf::Post::Windows::Error::RPC_X_PIPE_CLOSED (constant)">Error::RPC_X_PIPE_CLOSED</a></span>, <span class='object_link'><a href="Error.html#RPC_X_PIPE_DISCIPLINE_ERROR-constant" title="Msf::Post::Windows::Error::RPC_X_PIPE_DISCIPLINE_ERROR (constant)">Error::RPC_X_PIPE_DISCIPLINE_ERROR</a></span>, <span class='object_link'><a href="Error.html#RPC_X_PIPE_EMPTY-constant" title="Msf::Post::Windows::Error::RPC_X_PIPE_EMPTY (constant)">Error::RPC_X_PIPE_EMPTY</a></span>, <span class='object_link'><a href="Error.html#RPC_X_SS_CANNOT_GET_CALL_HANDLE-constant" title="Msf::Post::Windows::Error::RPC_X_SS_CANNOT_GET_CALL_HANDLE (constant)">Error::RPC_X_SS_CANNOT_GET_CALL_HANDLE</a></span>, <span class='object_link'><a href="Error.html#RPC_X_SS_CHAR_TRANS_OPEN_FAIL-constant" title="Msf::Post::Windows::Error::RPC_X_SS_CHAR_TRANS_OPEN_FAIL (constant)">Error::RPC_X_SS_CHAR_TRANS_OPEN_FAIL</a></span>, <span class='object_link'><a href="Error.html#RPC_X_SS_CHAR_TRANS_SHORT_FILE-constant" title="Msf::Post::Windows::Error::RPC_X_SS_CHAR_TRANS_SHORT_FILE (constant)">Error::RPC_X_SS_CHAR_TRANS_SHORT_FILE</a></span>, <span class='object_link'><a href="Error.html#RPC_X_SS_CONTEXT_DAMAGED-constant" title="Msf::Post::Windows::Error::RPC_X_SS_CONTEXT_DAMAGED (constant)">Error::RPC_X_SS_CONTEXT_DAMAGED</a></span>, <span class='object_link'><a href="Error.html#RPC_X_SS_HANDLES_MISMATCH-constant" title="Msf::Post::Windows::Error::RPC_X_SS_HANDLES_MISMATCH (constant)">Error::RPC_X_SS_HANDLES_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#RPC_X_SS_IN_NULL_CONTEXT-constant" title="Msf::Post::Windows::Error::RPC_X_SS_IN_NULL_CONTEXT (constant)">Error::RPC_X_SS_IN_NULL_CONTEXT</a></span>, <span class='object_link'><a href="Error.html#RPC_X_WRONG_ES_VERSION-constant" title="Msf::Post::Windows::Error::RPC_X_WRONG_ES_VERSION (constant)">Error::RPC_X_WRONG_ES_VERSION</a></span>, <span class='object_link'><a href="Error.html#RPC_X_WRONG_PIPE_ORDER-constant" title="Msf::Post::Windows::Error::RPC_X_WRONG_PIPE_ORDER (constant)">Error::RPC_X_WRONG_PIPE_ORDER</a></span>, <span class='object_link'><a href="Error.html#RPC_X_WRONG_PIPE_VERSION-constant" title="Msf::Post::Windows::Error::RPC_X_WRONG_PIPE_VERSION (constant)">Error::RPC_X_WRONG_PIPE_VERSION</a></span>, <span class='object_link'><a href="Error.html#RPC_X_WRONG_STUB_VERSION-constant" title="Msf::Post::Windows::Error::RPC_X_WRONG_STUB_VERSION (constant)">Error::RPC_X_WRONG_STUB_VERSION</a></span>, <span class='object_link'><a href="Error.html#RPL_NOT_ALLOWED-constant" title="Msf::Post::Windows::Error::RPL_NOT_ALLOWED (constant)">Error::RPL_NOT_ALLOWED</a></span>, <span class='object_link'><a href="Error.html#RXACT_COMMITTED-constant" title="Msf::Post::Windows::Error::RXACT_COMMITTED (constant)">Error::RXACT_COMMITTED</a></span>, <span class='object_link'><a href="Error.html#RXACT_COMMIT_FAILURE-constant" title="Msf::Post::Windows::Error::RXACT_COMMIT_FAILURE (constant)">Error::RXACT_COMMIT_FAILURE</a></span>, <span class='object_link'><a href="Error.html#RXACT_COMMIT_NECESSARY-constant" title="Msf::Post::Windows::Error::RXACT_COMMIT_NECESSARY (constant)">Error::RXACT_COMMIT_NECESSARY</a></span>, <span class='object_link'><a href="Error.html#RXACT_INVALID_STATE-constant" title="Msf::Post::Windows::Error::RXACT_INVALID_STATE (constant)">Error::RXACT_INVALID_STATE</a></span>, <span class='object_link'><a href="Error.html#RXACT_STATE_CREATED-constant" title="Msf::Post::Windows::Error::RXACT_STATE_CREATED (constant)">Error::RXACT_STATE_CREATED</a></span>, <span class='object_link'><a href="Error.html#SAME_DRIVE-constant" title="Msf::Post::Windows::Error::SAME_DRIVE (constant)">Error::SAME_DRIVE</a></span>, <span class='object_link'><a href="Error.html#SAM_INIT_FAILURE-constant" title="Msf::Post::Windows::Error::SAM_INIT_FAILURE (constant)">Error::SAM_INIT_FAILURE</a></span>, <span class='object_link'><a href="Error.html#SCHED_E_SERVICE_NOT_LOCALSYSTEM-constant" title="Msf::Post::Windows::Error::SCHED_E_SERVICE_NOT_LOCALSYSTEM (constant)">Error::SCHED_E_SERVICE_NOT_LOCALSYSTEM</a></span>, <span class='object_link'><a href="Error.html#SCOPE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SCOPE_NOT_FOUND (constant)">Error::SCOPE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#SCREEN_ALREADY_LOCKED-constant" title="Msf::Post::Windows::Error::SCREEN_ALREADY_LOCKED (constant)">Error::SCREEN_ALREADY_LOCKED</a></span>, <span class='object_link'><a href="Error.html#SECRET_TOO_LONG-constant" title="Msf::Post::Windows::Error::SECRET_TOO_LONG (constant)">Error::SECRET_TOO_LONG</a></span>, <span class='object_link'><a href="Error.html#SECTOR_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SECTOR_NOT_FOUND (constant)">Error::SECTOR_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#SECURITY_STREAM_IS_INCONSISTENT-constant" title="Msf::Post::Windows::Error::SECURITY_STREAM_IS_INCONSISTENT (constant)">Error::SECURITY_STREAM_IS_INCONSISTENT</a></span>, <span class='object_link'><a href="Error.html#SEEK-constant" title="Msf::Post::Windows::Error::SEEK (constant)">Error::SEEK</a></span>, <span class='object_link'><a href="Error.html#SEEK_ON_DEVICE-constant" title="Msf::Post::Windows::Error::SEEK_ON_DEVICE (constant)">Error::SEEK_ON_DEVICE</a></span>, <span class='object_link'><a href="Error.html#SEGMENT_NOTIFICATION-constant" title="Msf::Post::Windows::Error::SEGMENT_NOTIFICATION (constant)">Error::SEGMENT_NOTIFICATION</a></span>, <span class='object_link'><a href="Error.html#SEM_IS_SET-constant" title="Msf::Post::Windows::Error::SEM_IS_SET (constant)">Error::SEM_IS_SET</a></span>, <span class='object_link'><a href="Error.html#SEM_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SEM_NOT_FOUND (constant)">Error::SEM_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#SEM_OWNER_DIED-constant" title="Msf::Post::Windows::Error::SEM_OWNER_DIED (constant)">Error::SEM_OWNER_DIED</a></span>, <span class='object_link'><a href="Error.html#SEM_TIMEOUT-constant" title="Msf::Post::Windows::Error::SEM_TIMEOUT (constant)">Error::SEM_TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#SEM_USER_LIMIT-constant" title="Msf::Post::Windows::Error::SEM_USER_LIMIT (constant)">Error::SEM_USER_LIMIT</a></span>, <span class='object_link'><a href="Error.html#SERIAL_NO_DEVICE-constant" title="Msf::Post::Windows::Error::SERIAL_NO_DEVICE (constant)">Error::SERIAL_NO_DEVICE</a></span>, <span class='object_link'><a href="Error.html#SERVER_DISABLED-constant" title="Msf::Post::Windows::Error::SERVER_DISABLED (constant)">Error::SERVER_DISABLED</a></span>, <span class='object_link'><a href="Error.html#SERVER_HAS_OPEN_HANDLES-constant" title="Msf::Post::Windows::Error::SERVER_HAS_OPEN_HANDLES (constant)">Error::SERVER_HAS_OPEN_HANDLES</a></span>, <span class='object_link'><a href="Error.html#SERVER_NOT_DISABLED-constant" title="Msf::Post::Windows::Error::SERVER_NOT_DISABLED (constant)">Error::SERVER_NOT_DISABLED</a></span>, <span class='object_link'><a href="Error.html#SERVER_SHUTDOWN_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::SERVER_SHUTDOWN_IN_PROGRESS (constant)">Error::SERVER_SHUTDOWN_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#SERVER_SID_MISMATCH-constant" title="Msf::Post::Windows::Error::SERVER_SID_MISMATCH (constant)">Error::SERVER_SID_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#SERVICE_ALREADY_RUNNING-constant" title="Msf::Post::Windows::Error::SERVICE_ALREADY_RUNNING (constant)">Error::SERVICE_ALREADY_RUNNING</a></span>, <span class='object_link'><a href="Error.html#SERVICE_CANNOT_ACCEPT_CTRL-constant" title="Msf::Post::Windows::Error::SERVICE_CANNOT_ACCEPT_CTRL (constant)">Error::SERVICE_CANNOT_ACCEPT_CTRL</a></span>, <span class='object_link'><a href="Error.html#SERVICE_DATABASE_LOCKED-constant" title="Msf::Post::Windows::Error::SERVICE_DATABASE_LOCKED (constant)">Error::SERVICE_DATABASE_LOCKED</a></span>, <span class='object_link'><a href="Error.html#SERVICE_DEPENDENCY_DELETED-constant" title="Msf::Post::Windows::Error::SERVICE_DEPENDENCY_DELETED (constant)">Error::SERVICE_DEPENDENCY_DELETED</a></span>, <span class='object_link'><a href="Error.html#SERVICE_DEPENDENCY_FAIL-constant" title="Msf::Post::Windows::Error::SERVICE_DEPENDENCY_FAIL (constant)">Error::SERVICE_DEPENDENCY_FAIL</a></span>, <span class='object_link'><a href="Error.html#SERVICE_DISABLED-constant" title="Msf::Post::Windows::Error::SERVICE_DISABLED (constant)">Error::SERVICE_DISABLED</a></span>, <span class='object_link'><a href="Error.html#SERVICE_DOES_NOT_EXIST-constant" title="Msf::Post::Windows::Error::SERVICE_DOES_NOT_EXIST (constant)">Error::SERVICE_DOES_NOT_EXIST</a></span>, <span class='object_link'><a href="Error.html#SERVICE_EXISTS-constant" title="Msf::Post::Windows::Error::SERVICE_EXISTS (constant)">Error::SERVICE_EXISTS</a></span>, <span class='object_link'><a href="Error.html#SERVICE_LOGON_FAILED-constant" title="Msf::Post::Windows::Error::SERVICE_LOGON_FAILED (constant)">Error::SERVICE_LOGON_FAILED</a></span>, <span class='object_link'><a href="Error.html#SERVICE_MARKED_FOR_DELETE-constant" title="Msf::Post::Windows::Error::SERVICE_MARKED_FOR_DELETE (constant)">Error::SERVICE_MARKED_FOR_DELETE</a></span>, <span class='object_link'><a href="Error.html#SERVICE_NEVER_STARTED-constant" title="Msf::Post::Windows::Error::SERVICE_NEVER_STARTED (constant)">Error::SERVICE_NEVER_STARTED</a></span>, <span class='object_link'><a href="Error.html#SERVICE_NOTIFICATION-constant" title="Msf::Post::Windows::Error::SERVICE_NOTIFICATION (constant)">Error::SERVICE_NOTIFICATION</a></span>, <span class='object_link'><a href="Error.html#SERVICE_NOTIFY_CLIENT_LAGGING-constant" title="Msf::Post::Windows::Error::SERVICE_NOTIFY_CLIENT_LAGGING (constant)">Error::SERVICE_NOTIFY_CLIENT_LAGGING</a></span>, <span class='object_link'><a href="Error.html#SERVICE_NOT_ACTIVE-constant" title="Msf::Post::Windows::Error::SERVICE_NOT_ACTIVE (constant)">Error::SERVICE_NOT_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#SERVICE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SERVICE_NOT_FOUND (constant)">Error::SERVICE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#SERVICE_NOT_IN_EXE-constant" title="Msf::Post::Windows::Error::SERVICE_NOT_IN_EXE (constant)">Error::SERVICE_NOT_IN_EXE</a></span>, <span class='object_link'><a href="Error.html#SERVICE_NO_THREAD-constant" title="Msf::Post::Windows::Error::SERVICE_NO_THREAD (constant)">Error::SERVICE_NO_THREAD</a></span>, <span class='object_link'><a href="Error.html#SERVICE_REQUEST_TIMEOUT-constant" title="Msf::Post::Windows::Error::SERVICE_REQUEST_TIMEOUT (constant)">Error::SERVICE_REQUEST_TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#SERVICE_SPECIFIC_ERROR-constant" title="Msf::Post::Windows::Error::SERVICE_SPECIFIC_ERROR (constant)">Error::SERVICE_SPECIFIC_ERROR</a></span>, <span class='object_link'><a href="Error.html#SERVICE_START_HANG-constant" title="Msf::Post::Windows::Error::SERVICE_START_HANG (constant)">Error::SERVICE_START_HANG</a></span>, <span class='object_link'><a href="Error.html#SESSION_CREDENTIAL_CONFLICT-constant" title="Msf::Post::Windows::Error::SESSION_CREDENTIAL_CONFLICT (constant)">Error::SESSION_CREDENTIAL_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#SETCOUNT_ON_BAD_LB-constant" title="Msf::Post::Windows::Error::SETCOUNT_ON_BAD_LB (constant)">Error::SETCOUNT_ON_BAD_LB</a></span>, <span class='object_link'><a href="Error.html#SETMARK_DETECTED-constant" title="Msf::Post::Windows::Error::SETMARK_DETECTED (constant)">Error::SETMARK_DETECTED</a></span>, <span class='object_link'><a href="Error.html#SET_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SET_NOT_FOUND (constant)">Error::SET_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#SET_POWER_STATE_FAILED-constant" title="Msf::Post::Windows::Error::SET_POWER_STATE_FAILED (constant)">Error::SET_POWER_STATE_FAILED</a></span>, <span class='object_link'><a href="Error.html#SET_POWER_STATE_VETOED-constant" title="Msf::Post::Windows::Error::SET_POWER_STATE_VETOED (constant)">Error::SET_POWER_STATE_VETOED</a></span>, <span class='object_link'><a href="Error.html#SHARED_POLICY-constant" title="Msf::Post::Windows::Error::SHARED_POLICY (constant)">Error::SHARED_POLICY</a></span>, <span class='object_link'><a href="Error.html#SHARING_BUFFER_EXCEEDED-constant" title="Msf::Post::Windows::Error::SHARING_BUFFER_EXCEEDED (constant)">Error::SHARING_BUFFER_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#SHARING_PAUSED-constant" title="Msf::Post::Windows::Error::SHARING_PAUSED (constant)">Error::SHARING_PAUSED</a></span>, <span class='object_link'><a href="Error.html#SHARING_VIOLATION-constant" title="Msf::Post::Windows::Error::SHARING_VIOLATION (constant)">Error::SHARING_VIOLATION</a></span>, <span class='object_link'><a href="Error.html#SHORT_NAMES_NOT_ENABLED_ON_VOLUME-constant" title="Msf::Post::Windows::Error::SHORT_NAMES_NOT_ENABLED_ON_VOLUME (constant)">Error::SHORT_NAMES_NOT_ENABLED_ON_VOLUME</a></span>, <span class='object_link'><a href="Error.html#SHUTDOWN_CLUSTER-constant" title="Msf::Post::Windows::Error::SHUTDOWN_CLUSTER (constant)">Error::SHUTDOWN_CLUSTER</a></span>, <span class='object_link'><a href="Error.html#SHUTDOWN_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::SHUTDOWN_IN_PROGRESS (constant)">Error::SHUTDOWN_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#SHUTDOWN_IS_SCHEDULED-constant" title="Msf::Post::Windows::Error::SHUTDOWN_IS_SCHEDULED (constant)">Error::SHUTDOWN_IS_SCHEDULED</a></span>, <span class='object_link'><a href="Error.html#SHUTDOWN_USERS_LOGGED_ON-constant" title="Msf::Post::Windows::Error::SHUTDOWN_USERS_LOGGED_ON (constant)">Error::SHUTDOWN_USERS_LOGGED_ON</a></span>, <span class='object_link'><a href="Error.html#SIGNAL_PENDING-constant" title="Msf::Post::Windows::Error::SIGNAL_PENDING (constant)">Error::SIGNAL_PENDING</a></span>, <span class='object_link'><a href="Error.html#SIGNAL_REFUSED-constant" title="Msf::Post::Windows::Error::SIGNAL_REFUSED (constant)">Error::SIGNAL_REFUSED</a></span>, <span class='object_link'><a href="Error.html#SINGLE_INSTANCE_APP-constant" title="Msf::Post::Windows::Error::SINGLE_INSTANCE_APP (constant)">Error::SINGLE_INSTANCE_APP</a></span>, <span class='object_link'><a href="Error.html#SMARTCARD_SUBSYSTEM_FAILURE-constant" title="Msf::Post::Windows::Error::SMARTCARD_SUBSYSTEM_FAILURE (constant)">Error::SMARTCARD_SUBSYSTEM_FAILURE</a></span>, <span class='object_link'><a href="Error.html#SMI_PRIMITIVE_INSTALLER_FAILED-constant" title="Msf::Post::Windows::Error::SMI_PRIMITIVE_INSTALLER_FAILED (constant)">Error::SMI_PRIMITIVE_INSTALLER_FAILED</a></span>, <span class='object_link'><a href="Error.html#SOME_NOT_MAPPED-constant" title="Msf::Post::Windows::Error::SOME_NOT_MAPPED (constant)">Error::SOME_NOT_MAPPED</a></span>, <span class='object_link'><a href="Error.html#SOURCE_ELEMENT_EMPTY-constant" title="Msf::Post::Windows::Error::SOURCE_ELEMENT_EMPTY (constant)">Error::SOURCE_ELEMENT_EMPTY</a></span>, <span class='object_link'><a href="Error.html#SPARSE_NOT_ALLOWED_IN_TRANSACTION-constant" title="Msf::Post::Windows::Error::SPARSE_NOT_ALLOWED_IN_TRANSACTION (constant)">Error::SPARSE_NOT_ALLOWED_IN_TRANSACTION</a></span>, <span class='object_link'><a href="Error.html#SPECIAL_ACCOUNT-constant" title="Msf::Post::Windows::Error::SPECIAL_ACCOUNT (constant)">Error::SPECIAL_ACCOUNT</a></span>, <span class='object_link'><a href="Error.html#SPECIAL_GROUP-constant" title="Msf::Post::Windows::Error::SPECIAL_GROUP (constant)">Error::SPECIAL_GROUP</a></span>, <span class='object_link'><a href="Error.html#SPECIAL_USER-constant" title="Msf::Post::Windows::Error::SPECIAL_USER (constant)">Error::SPECIAL_USER</a></span>, <span class='object_link'><a href="Error.html#SPL_NO_ADDJOB-constant" title="Msf::Post::Windows::Error::SPL_NO_ADDJOB (constant)">Error::SPL_NO_ADDJOB</a></span>, <span class='object_link'><a href="Error.html#SPL_NO_STARTDOC-constant" title="Msf::Post::Windows::Error::SPL_NO_STARTDOC (constant)">Error::SPL_NO_STARTDOC</a></span>, <span class='object_link'><a href="Error.html#SPOOL_FILE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SPOOL_FILE_NOT_FOUND (constant)">Error::SPOOL_FILE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#STACK_BUFFER_OVERRUN-constant" title="Msf::Post::Windows::Error::STACK_BUFFER_OVERRUN (constant)">Error::STACK_BUFFER_OVERRUN</a></span>, <span class='object_link'><a href="Error.html#STACK_OVERFLOW-constant" title="Msf::Post::Windows::Error::STACK_OVERFLOW (constant)">Error::STACK_OVERFLOW</a></span>, <span class='object_link'><a href="Error.html#STACK_OVERFLOW_READ-constant" title="Msf::Post::Windows::Error::STACK_OVERFLOW_READ (constant)">Error::STACK_OVERFLOW_READ</a></span>, <span class='object_link'><a href="Error.html#STATIC_INIT-constant" title="Msf::Post::Windows::Error::STATIC_INIT (constant)">Error::STATIC_INIT</a></span>, <span class='object_link'><a href="Error.html#STOPPED_ON_SYMLINK-constant" title="Msf::Post::Windows::Error::STOPPED_ON_SYMLINK (constant)">Error::STOPPED_ON_SYMLINK</a></span>, <span class='object_link'><a href="Error.html#STREAM_MINIVERSION_NOT_FOUND-constant" title="Msf::Post::Windows::Error::STREAM_MINIVERSION_NOT_FOUND (constant)">Error::STREAM_MINIVERSION_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#STREAM_MINIVERSION_NOT_VALID-constant" title="Msf::Post::Windows::Error::STREAM_MINIVERSION_NOT_VALID (constant)">Error::STREAM_MINIVERSION_NOT_VALID</a></span>, <span class='object_link'><a href="Error.html#SUBST_TO_JOIN-constant" title="Msf::Post::Windows::Error::SUBST_TO_JOIN (constant)">Error::SUBST_TO_JOIN</a></span>, <span class='object_link'><a href="Error.html#SUBST_TO_SUBST-constant" title="Msf::Post::Windows::Error::SUBST_TO_SUBST (constant)">Error::SUBST_TO_SUBST</a></span>, <span class='object_link'><a href="Error.html#SUCCESS-constant" title="Msf::Post::Windows::Error::SUCCESS (constant)">Error::SUCCESS</a></span>, <span class='object_link'><a href="Error.html#SUCCESS_REBOOT_INITIATED-constant" title="Msf::Post::Windows::Error::SUCCESS_REBOOT_INITIATED (constant)">Error::SUCCESS_REBOOT_INITIATED</a></span>, <span class='object_link'><a href="Error.html#SUCCESS_REBOOT_REQUIRED-constant" title="Msf::Post::Windows::Error::SUCCESS_REBOOT_REQUIRED (constant)">Error::SUCCESS_REBOOT_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#SUCCESS_RESTART_REQUIRED-constant" title="Msf::Post::Windows::Error::SUCCESS_RESTART_REQUIRED (constant)">Error::SUCCESS_RESTART_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#SWAPERROR-constant" title="Msf::Post::Windows::Error::SWAPERROR (constant)">Error::SWAPERROR</a></span>, <span class='object_link'><a href="Error.html#SXS_ACTIVATION_CONTEXT_DISABLED-constant" title="Msf::Post::Windows::Error::SXS_ACTIVATION_CONTEXT_DISABLED (constant)">Error::SXS_ACTIVATION_CONTEXT_DISABLED</a></span>, <span class='object_link'><a href="Error.html#SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT-constant" title="Msf::Post::Windows::Error::SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT (constant)">Error::SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT</a></span>, <span class='object_link'><a href="Error.html#SXS_ASSEMBLY_MISSING-constant" title="Msf::Post::Windows::Error::SXS_ASSEMBLY_MISSING (constant)">Error::SXS_ASSEMBLY_MISSING</a></span>, <span class='object_link'><a href="Error.html#SXS_ASSEMBLY_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SXS_ASSEMBLY_NOT_FOUND (constant)">Error::SXS_ASSEMBLY_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#SXS_ASSEMBLY_NOT_LOCKED-constant" title="Msf::Post::Windows::Error::SXS_ASSEMBLY_NOT_LOCKED (constant)">Error::SXS_ASSEMBLY_NOT_LOCKED</a></span>, <span class='object_link'><a href="Error.html#SXS_CANT_GEN_ACTCTX-constant" title="Msf::Post::Windows::Error::SXS_CANT_GEN_ACTCTX (constant)">Error::SXS_CANT_GEN_ACTCTX</a></span>, <span class='object_link'><a href="Error.html#SXS_COMPONENT_STORE_CORRUPT-constant" title="Msf::Post::Windows::Error::SXS_COMPONENT_STORE_CORRUPT (constant)">Error::SXS_COMPONENT_STORE_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#SXS_CORRUPTION-constant" title="Msf::Post::Windows::Error::SXS_CORRUPTION (constant)">Error::SXS_CORRUPTION</a></span>, <span class='object_link'><a href="Error.html#SXS_CORRUPT_ACTIVATION_STACK-constant" title="Msf::Post::Windows::Error::SXS_CORRUPT_ACTIVATION_STACK (constant)">Error::SXS_CORRUPT_ACTIVATION_STACK</a></span>, <span class='object_link'><a href="Error.html#SXS_DUPLICATE_ASSEMBLY_NAME-constant" title="Msf::Post::Windows::Error::SXS_DUPLICATE_ASSEMBLY_NAME (constant)">Error::SXS_DUPLICATE_ASSEMBLY_NAME</a></span>, <span class='object_link'><a href="Error.html#SXS_DUPLICATE_CLSID-constant" title="Msf::Post::Windows::Error::SXS_DUPLICATE_CLSID (constant)">Error::SXS_DUPLICATE_CLSID</a></span>, <span class='object_link'><a href="Error.html#SXS_DUPLICATE_DLL_NAME-constant" title="Msf::Post::Windows::Error::SXS_DUPLICATE_DLL_NAME (constant)">Error::SXS_DUPLICATE_DLL_NAME</a></span>, <span class='object_link'><a href="Error.html#SXS_DUPLICATE_IID-constant" title="Msf::Post::Windows::Error::SXS_DUPLICATE_IID (constant)">Error::SXS_DUPLICATE_IID</a></span>, <span class='object_link'><a href="Error.html#SXS_DUPLICATE_PROGID-constant" title="Msf::Post::Windows::Error::SXS_DUPLICATE_PROGID (constant)">Error::SXS_DUPLICATE_PROGID</a></span>, <span class='object_link'><a href="Error.html#SXS_DUPLICATE_TLBID-constant" title="Msf::Post::Windows::Error::SXS_DUPLICATE_TLBID (constant)">Error::SXS_DUPLICATE_TLBID</a></span>, <span class='object_link'><a href="Error.html#SXS_DUPLICATE_WINDOWCLASS_NAME-constant" title="Msf::Post::Windows::Error::SXS_DUPLICATE_WINDOWCLASS_NAME (constant)">Error::SXS_DUPLICATE_WINDOWCLASS_NAME</a></span>, <span class='object_link'><a href="Error.html#SXS_EARLY_DEACTIVATION-constant" title="Msf::Post::Windows::Error::SXS_EARLY_DEACTIVATION (constant)">Error::SXS_EARLY_DEACTIVATION</a></span>, <span class='object_link'><a href="Error.html#SXS_FILE_HASH_MISMATCH-constant" title="Msf::Post::Windows::Error::SXS_FILE_HASH_MISMATCH (constant)">Error::SXS_FILE_HASH_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#SXS_FILE_HASH_MISSING-constant" title="Msf::Post::Windows::Error::SXS_FILE_HASH_MISSING (constant)">Error::SXS_FILE_HASH_MISSING</a></span>, <span class='object_link'><a href="Error.html#SXS_FILE_NOT_PART_OF_ASSEMBLY-constant" title="Msf::Post::Windows::Error::SXS_FILE_NOT_PART_OF_ASSEMBLY (constant)">Error::SXS_FILE_NOT_PART_OF_ASSEMBLY</a></span>, <span class='object_link'><a href="Error.html#SXS_IDENTITIES_DIFFERENT-constant" title="Msf::Post::Windows::Error::SXS_IDENTITIES_DIFFERENT (constant)">Error::SXS_IDENTITIES_DIFFERENT</a></span>, <span class='object_link'><a href="Error.html#SXS_IDENTITY_DUPLICATE_ATTRIBUTE-constant" title="Msf::Post::Windows::Error::SXS_IDENTITY_DUPLICATE_ATTRIBUTE (constant)">Error::SXS_IDENTITY_DUPLICATE_ATTRIBUTE</a></span>, <span class='object_link'><a href="Error.html#SXS_IDENTITY_PARSE_ERROR-constant" title="Msf::Post::Windows::Error::SXS_IDENTITY_PARSE_ERROR (constant)">Error::SXS_IDENTITY_PARSE_ERROR</a></span>, <span class='object_link'><a href="Error.html#SXS_INCORRECT_PUBLIC_KEY_TOKEN-constant" title="Msf::Post::Windows::Error::SXS_INCORRECT_PUBLIC_KEY_TOKEN (constant)">Error::SXS_INCORRECT_PUBLIC_KEY_TOKEN</a></span>, <span class='object_link'><a href="Error.html#SXS_INVALID_ACTCTXDATA_FORMAT-constant" title="Msf::Post::Windows::Error::SXS_INVALID_ACTCTXDATA_FORMAT (constant)">Error::SXS_INVALID_ACTCTXDATA_FORMAT</a></span>, <span class='object_link'><a href="Error.html#SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE-constant" title="Msf::Post::Windows::Error::SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE (constant)">Error::SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE</a></span>, <span class='object_link'><a href="Error.html#SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME-constant" title="Msf::Post::Windows::Error::SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME (constant)">Error::SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME</a></span>, <span class='object_link'><a href="Error.html#SXS_INVALID_DEACTIVATION-constant" title="Msf::Post::Windows::Error::SXS_INVALID_DEACTIVATION (constant)">Error::SXS_INVALID_DEACTIVATION</a></span>, <span class='object_link'><a href="Error.html#SXS_INVALID_IDENTITY_ATTRIBUTE_NAME-constant" title="Msf::Post::Windows::Error::SXS_INVALID_IDENTITY_ATTRIBUTE_NAME (constant)">Error::SXS_INVALID_IDENTITY_ATTRIBUTE_NAME</a></span>, <span class='object_link'><a href="Error.html#SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE-constant" title="Msf::Post::Windows::Error::SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE (constant)">Error::SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE</a></span>, <span class='object_link'><a href="Error.html#SXS_INVALID_XML_NAMESPACE_URI-constant" title="Msf::Post::Windows::Error::SXS_INVALID_XML_NAMESPACE_URI (constant)">Error::SXS_INVALID_XML_NAMESPACE_URI</a></span>, <span class='object_link'><a href="Error.html#SXS_KEY_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SXS_KEY_NOT_FOUND (constant)">Error::SXS_KEY_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED-constant" title="Msf::Post::Windows::Error::SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED (constant)">Error::SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#SXS_MANIFEST_FORMAT_ERROR-constant" title="Msf::Post::Windows::Error::SXS_MANIFEST_FORMAT_ERROR (constant)">Error::SXS_MANIFEST_FORMAT_ERROR</a></span>, <span class='object_link'><a href="Error.html#SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT-constant" title="Msf::Post::Windows::Error::SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT (constant)">Error::SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT</a></span>, <span class='object_link'><a href="Error.html#SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE-constant" title="Msf::Post::Windows::Error::SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE (constant)">Error::SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE</a></span>, <span class='object_link'><a href="Error.html#SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE-constant" title="Msf::Post::Windows::Error::SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE (constant)">Error::SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE</a></span>, <span class='object_link'><a href="Error.html#SXS_MANIFEST_PARSE_ERROR-constant" title="Msf::Post::Windows::Error::SXS_MANIFEST_PARSE_ERROR (constant)">Error::SXS_MANIFEST_PARSE_ERROR</a></span>, <span class='object_link'><a href="Error.html#SXS_MANIFEST_TOO_BIG-constant" title="Msf::Post::Windows::Error::SXS_MANIFEST_TOO_BIG (constant)">Error::SXS_MANIFEST_TOO_BIG</a></span>, <span class='object_link'><a href="Error.html#SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE-constant" title="Msf::Post::Windows::Error::SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE (constant)">Error::SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE</a></span>, <span class='object_link'><a href="Error.html#SXS_MULTIPLE_DEACTIVATION-constant" title="Msf::Post::Windows::Error::SXS_MULTIPLE_DEACTIVATION (constant)">Error::SXS_MULTIPLE_DEACTIVATION</a></span>, <span class='object_link'><a href="Error.html#SXS_POLICY_PARSE_ERROR-constant" title="Msf::Post::Windows::Error::SXS_POLICY_PARSE_ERROR (constant)">Error::SXS_POLICY_PARSE_ERROR</a></span>, <span class='object_link'><a href="Error.html#SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT-constant" title="Msf::Post::Windows::Error::SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT (constant)">Error::SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT</a></span>, <span class='object_link'><a href="Error.html#SXS_PROCESS_DEFAULT_ALREADY_SET-constant" title="Msf::Post::Windows::Error::SXS_PROCESS_DEFAULT_ALREADY_SET (constant)">Error::SXS_PROCESS_DEFAULT_ALREADY_SET</a></span>, <span class='object_link'><a href="Error.html#SXS_PROCESS_TERMINATION_REQUESTED-constant" title="Msf::Post::Windows::Error::SXS_PROCESS_TERMINATION_REQUESTED (constant)">Error::SXS_PROCESS_TERMINATION_REQUESTED</a></span>, <span class='object_link'><a href="Error.html#SXS_PROTECTION_CATALOG_FILE_MISSING-constant" title="Msf::Post::Windows::Error::SXS_PROTECTION_CATALOG_FILE_MISSING (constant)">Error::SXS_PROTECTION_CATALOG_FILE_MISSING</a></span>, <span class='object_link'><a href="Error.html#SXS_PROTECTION_CATALOG_NOT_VALID-constant" title="Msf::Post::Windows::Error::SXS_PROTECTION_CATALOG_NOT_VALID (constant)">Error::SXS_PROTECTION_CATALOG_NOT_VALID</a></span>, <span class='object_link'><a href="Error.html#SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT-constant" title="Msf::Post::Windows::Error::SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT (constant)">Error::SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT</a></span>, <span class='object_link'><a href="Error.html#SXS_PROTECTION_RECOVERY_FAILED-constant" title="Msf::Post::Windows::Error::SXS_PROTECTION_RECOVERY_FAILED (constant)">Error::SXS_PROTECTION_RECOVERY_FAILED</a></span>, <span class='object_link'><a href="Error.html#SXS_RELEASE_ACTIVATION_CONTEXT-constant" title="Msf::Post::Windows::Error::SXS_RELEASE_ACTIVATION_CONTEXT (constant)">Error::SXS_RELEASE_ACTIVATION_CONTEXT</a></span>, <span class='object_link'><a href="Error.html#SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED-constant" title="Msf::Post::Windows::Error::SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED (constant)">Error::SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED</a></span>, <span class='object_link'><a href="Error.html#SXS_SECTION_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SXS_SECTION_NOT_FOUND (constant)">Error::SXS_SECTION_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#SXS_SETTING_NOT_REGISTERED-constant" title="Msf::Post::Windows::Error::SXS_SETTING_NOT_REGISTERED (constant)">Error::SXS_SETTING_NOT_REGISTERED</a></span>, <span class='object_link'><a href="Error.html#SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY-constant" title="Msf::Post::Windows::Error::SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY (constant)">Error::SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY</a></span>, <span class='object_link'><a href="Error.html#SXS_THREAD_QUERIES_DISABLED-constant" title="Msf::Post::Windows::Error::SXS_THREAD_QUERIES_DISABLED (constant)">Error::SXS_THREAD_QUERIES_DISABLED</a></span>, <span class='object_link'><a href="Error.html#SXS_TRANSACTION_CLOSURE_INCOMPLETE-constant" title="Msf::Post::Windows::Error::SXS_TRANSACTION_CLOSURE_INCOMPLETE (constant)">Error::SXS_TRANSACTION_CLOSURE_INCOMPLETE</a></span>, <span class='object_link'><a href="Error.html#SXS_UNKNOWN_ENCODING-constant" title="Msf::Post::Windows::Error::SXS_UNKNOWN_ENCODING (constant)">Error::SXS_UNKNOWN_ENCODING</a></span>, <span class='object_link'><a href="Error.html#SXS_UNKNOWN_ENCODING_GROUP-constant" title="Msf::Post::Windows::Error::SXS_UNKNOWN_ENCODING_GROUP (constant)">Error::SXS_UNKNOWN_ENCODING_GROUP</a></span>, <span class='object_link'><a href="Error.html#SXS_UNTRANSLATABLE_HRESULT-constant" title="Msf::Post::Windows::Error::SXS_UNTRANSLATABLE_HRESULT (constant)">Error::SXS_UNTRANSLATABLE_HRESULT</a></span>, <span class='object_link'><a href="Error.html#SXS_VERSION_CONFLICT-constant" title="Msf::Post::Windows::Error::SXS_VERSION_CONFLICT (constant)">Error::SXS_VERSION_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#SXS_WRONG_SECTION_TYPE-constant" title="Msf::Post::Windows::Error::SXS_WRONG_SECTION_TYPE (constant)">Error::SXS_WRONG_SECTION_TYPE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_BADCHARDATA-constant" title="Msf::Post::Windows::Error::SXS_XML_E_BADCHARDATA (constant)">Error::SXS_XML_E_BADCHARDATA</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_BADCHARINSTRING-constant" title="Msf::Post::Windows::Error::SXS_XML_E_BADCHARINSTRING (constant)">Error::SXS_XML_E_BADCHARINSTRING</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_BADNAMECHAR-constant" title="Msf::Post::Windows::Error::SXS_XML_E_BADNAMECHAR (constant)">Error::SXS_XML_E_BADNAMECHAR</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_BADPEREFINSUBSET-constant" title="Msf::Post::Windows::Error::SXS_XML_E_BADPEREFINSUBSET (constant)">Error::SXS_XML_E_BADPEREFINSUBSET</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_BADSTARTNAMECHAR-constant" title="Msf::Post::Windows::Error::SXS_XML_E_BADSTARTNAMECHAR (constant)">Error::SXS_XML_E_BADSTARTNAMECHAR</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_BADXMLCASE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_BADXMLCASE (constant)">Error::SXS_XML_E_BADXMLCASE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_BADXMLDECL-constant" title="Msf::Post::Windows::Error::SXS_XML_E_BADXMLDECL (constant)">Error::SXS_XML_E_BADXMLDECL</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_COMMENTSYNTAX-constant" title="Msf::Post::Windows::Error::SXS_XML_E_COMMENTSYNTAX (constant)">Error::SXS_XML_E_COMMENTSYNTAX</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_DUPLICATEATTRIBUTE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_DUPLICATEATTRIBUTE (constant)">Error::SXS_XML_E_DUPLICATEATTRIBUTE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_EXPECTINGCLOSEQUOTE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_EXPECTINGCLOSEQUOTE (constant)">Error::SXS_XML_E_EXPECTINGCLOSEQUOTE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_EXPECTINGTAGEND-constant" title="Msf::Post::Windows::Error::SXS_XML_E_EXPECTINGTAGEND (constant)">Error::SXS_XML_E_EXPECTINGTAGEND</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INCOMPLETE_ENCODING-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INCOMPLETE_ENCODING (constant)">Error::SXS_XML_E_INCOMPLETE_ENCODING</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INTERNALERROR-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INTERNALERROR (constant)">Error::SXS_XML_E_INTERNALERROR</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INVALIDATROOTLEVEL-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INVALIDATROOTLEVEL (constant)">Error::SXS_XML_E_INVALIDATROOTLEVEL</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INVALIDENCODING-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INVALIDENCODING (constant)">Error::SXS_XML_E_INVALIDENCODING</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INVALIDSWITCH-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INVALIDSWITCH (constant)">Error::SXS_XML_E_INVALIDSWITCH</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INVALID_DECIMAL-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INVALID_DECIMAL (constant)">Error::SXS_XML_E_INVALID_DECIMAL</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INVALID_HEXIDECIMAL-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INVALID_HEXIDECIMAL (constant)">Error::SXS_XML_E_INVALID_HEXIDECIMAL</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INVALID_STANDALONE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INVALID_STANDALONE (constant)">Error::SXS_XML_E_INVALID_STANDALONE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INVALID_UNICODE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INVALID_UNICODE (constant)">Error::SXS_XML_E_INVALID_UNICODE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_INVALID_VERSION-constant" title="Msf::Post::Windows::Error::SXS_XML_E_INVALID_VERSION (constant)">Error::SXS_XML_E_INVALID_VERSION</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_MISSINGEQUALS-constant" title="Msf::Post::Windows::Error::SXS_XML_E_MISSINGEQUALS (constant)">Error::SXS_XML_E_MISSINGEQUALS</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_MISSINGQUOTE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_MISSINGQUOTE (constant)">Error::SXS_XML_E_MISSINGQUOTE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_MISSINGROOT-constant" title="Msf::Post::Windows::Error::SXS_XML_E_MISSINGROOT (constant)">Error::SXS_XML_E_MISSINGROOT</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_MISSINGSEMICOLON-constant" title="Msf::Post::Windows::Error::SXS_XML_E_MISSINGSEMICOLON (constant)">Error::SXS_XML_E_MISSINGSEMICOLON</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_MISSINGWHITESPACE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_MISSINGWHITESPACE (constant)">Error::SXS_XML_E_MISSINGWHITESPACE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_MISSING_PAREN-constant" title="Msf::Post::Windows::Error::SXS_XML_E_MISSING_PAREN (constant)">Error::SXS_XML_E_MISSING_PAREN</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_MULTIPLEROOTS-constant" title="Msf::Post::Windows::Error::SXS_XML_E_MULTIPLEROOTS (constant)">Error::SXS_XML_E_MULTIPLEROOTS</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_MULTIPLE_COLONS-constant" title="Msf::Post::Windows::Error::SXS_XML_E_MULTIPLE_COLONS (constant)">Error::SXS_XML_E_MULTIPLE_COLONS</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_RESERVEDNAMESPACE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_RESERVEDNAMESPACE (constant)">Error::SXS_XML_E_RESERVEDNAMESPACE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNBALANCEDPAREN-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNBALANCEDPAREN (constant)">Error::SXS_XML_E_UNBALANCEDPAREN</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNCLOSEDCDATA-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNCLOSEDCDATA (constant)">Error::SXS_XML_E_UNCLOSEDCDATA</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNCLOSEDCOMMENT-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNCLOSEDCOMMENT (constant)">Error::SXS_XML_E_UNCLOSEDCOMMENT</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNCLOSEDDECL-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNCLOSEDDECL (constant)">Error::SXS_XML_E_UNCLOSEDDECL</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNCLOSEDENDTAG-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNCLOSEDENDTAG (constant)">Error::SXS_XML_E_UNCLOSEDENDTAG</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNCLOSEDSTARTTAG-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNCLOSEDSTARTTAG (constant)">Error::SXS_XML_E_UNCLOSEDSTARTTAG</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNCLOSEDSTRING-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNCLOSEDSTRING (constant)">Error::SXS_XML_E_UNCLOSEDSTRING</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNCLOSEDTAG-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNCLOSEDTAG (constant)">Error::SXS_XML_E_UNCLOSEDTAG</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNEXPECTEDENDTAG-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNEXPECTEDENDTAG (constant)">Error::SXS_XML_E_UNEXPECTEDENDTAG</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNEXPECTEDEOF-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNEXPECTEDEOF (constant)">Error::SXS_XML_E_UNEXPECTEDEOF</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNEXPECTED_STANDALONE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNEXPECTED_STANDALONE (constant)">Error::SXS_XML_E_UNEXPECTED_STANDALONE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_UNEXPECTED_WHITESPACE-constant" title="Msf::Post::Windows::Error::SXS_XML_E_UNEXPECTED_WHITESPACE (constant)">Error::SXS_XML_E_UNEXPECTED_WHITESPACE</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_WHITESPACEORQUESTIONMARK-constant" title="Msf::Post::Windows::Error::SXS_XML_E_WHITESPACEORQUESTIONMARK (constant)">Error::SXS_XML_E_WHITESPACEORQUESTIONMARK</a></span>, <span class='object_link'><a href="Error.html#SXS_XML_E_XMLDECLSYNTAX-constant" title="Msf::Post::Windows::Error::SXS_XML_E_XMLDECLSYNTAX (constant)">Error::SXS_XML_E_XMLDECLSYNTAX</a></span>, <span class='object_link'><a href="Error.html#SYMLINK_CLASS_DISABLED-constant" title="Msf::Post::Windows::Error::SYMLINK_CLASS_DISABLED (constant)">Error::SYMLINK_CLASS_DISABLED</a></span>, <span class='object_link'><a href="Error.html#SYMLINK_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::SYMLINK_NOT_SUPPORTED (constant)">Error::SYMLINK_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#SYNCHRONIZATION_REQUIRED-constant" title="Msf::Post::Windows::Error::SYNCHRONIZATION_REQUIRED (constant)">Error::SYNCHRONIZATION_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#SYNC_FOREGROUND_REFRESH_REQUIRED-constant" title="Msf::Post::Windows::Error::SYNC_FOREGROUND_REFRESH_REQUIRED (constant)">Error::SYNC_FOREGROUND_REFRESH_REQUIRED</a></span>, <span class='object_link'><a href="Error.html#SYSTEM_DEVICE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::SYSTEM_DEVICE_NOT_FOUND (constant)">Error::SYSTEM_DEVICE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#SYSTEM_HIVE_TOO_LARGE-constant" title="Msf::Post::Windows::Error::SYSTEM_HIVE_TOO_LARGE (constant)">Error::SYSTEM_HIVE_TOO_LARGE</a></span>, <span class='object_link'><a href="Error.html#SYSTEM_IMAGE_BAD_SIGNATURE-constant" title="Msf::Post::Windows::Error::SYSTEM_IMAGE_BAD_SIGNATURE (constant)">Error::SYSTEM_IMAGE_BAD_SIGNATURE</a></span>, <span class='object_link'><a href="Error.html#SYSTEM_POWERSTATE_COMPLEX_TRANSITION-constant" title="Msf::Post::Windows::Error::SYSTEM_POWERSTATE_COMPLEX_TRANSITION (constant)">Error::SYSTEM_POWERSTATE_COMPLEX_TRANSITION</a></span>, <span class='object_link'><a href="Error.html#SYSTEM_POWERSTATE_TRANSITION-constant" title="Msf::Post::Windows::Error::SYSTEM_POWERSTATE_TRANSITION (constant)">Error::SYSTEM_POWERSTATE_TRANSITION</a></span>, <span class='object_link'><a href="Error.html#SYSTEM_PROCESS_TERMINATED-constant" title="Msf::Post::Windows::Error::SYSTEM_PROCESS_TERMINATED (constant)">Error::SYSTEM_PROCESS_TERMINATED</a></span>, <span class='object_link'><a href="Error.html#SYSTEM_SHUTDOWN-constant" title="Msf::Post::Windows::Error::SYSTEM_SHUTDOWN (constant)">Error::SYSTEM_SHUTDOWN</a></span>, <span class='object_link'><a href="Error.html#SYSTEM_TRACE-constant" title="Msf::Post::Windows::Error::SYSTEM_TRACE (constant)">Error::SYSTEM_TRACE</a></span>, <span class='object_link'><a href="Error.html#TAG_NOT_FOUND-constant" title="Msf::Post::Windows::Error::TAG_NOT_FOUND (constant)">Error::TAG_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#TAG_NOT_PRESENT-constant" title="Msf::Post::Windows::Error::TAG_NOT_PRESENT (constant)">Error::TAG_NOT_PRESENT</a></span>, <span class='object_link'><a href="Error.html#THREAD_1_INACTIVE-constant" title="Msf::Post::Windows::Error::THREAD_1_INACTIVE (constant)">Error::THREAD_1_INACTIVE</a></span>, <span class='object_link'><a href="Error.html#THREAD_ALREADY_IN_TASK-constant" title="Msf::Post::Windows::Error::THREAD_ALREADY_IN_TASK (constant)">Error::THREAD_ALREADY_IN_TASK</a></span>, <span class='object_link'><a href="Error.html#THREAD_MODE_ALREADY_BACKGROUND-constant" title="Msf::Post::Windows::Error::THREAD_MODE_ALREADY_BACKGROUND (constant)">Error::THREAD_MODE_ALREADY_BACKGROUND</a></span>, <span class='object_link'><a href="Error.html#THREAD_MODE_NOT_BACKGROUND-constant" title="Msf::Post::Windows::Error::THREAD_MODE_NOT_BACKGROUND (constant)">Error::THREAD_MODE_NOT_BACKGROUND</a></span>, <span class='object_link'><a href="Error.html#THREAD_NOT_IN_PROCESS-constant" title="Msf::Post::Windows::Error::THREAD_NOT_IN_PROCESS (constant)">Error::THREAD_NOT_IN_PROCESS</a></span>, <span class='object_link'><a href="Error.html#THREAD_WAS_SUSPENDED-constant" title="Msf::Post::Windows::Error::THREAD_WAS_SUSPENDED (constant)">Error::THREAD_WAS_SUSPENDED</a></span>, <span class='object_link'><a href="Error.html#TIMEOUT-constant" title="Msf::Post::Windows::Error::TIMEOUT (constant)">Error::TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#TIMER_NOT_CANCELED-constant" title="Msf::Post::Windows::Error::TIMER_NOT_CANCELED (constant)">Error::TIMER_NOT_CANCELED</a></span>, <span class='object_link'><a href="Error.html#TIMER_RESOLUTION_NOT_SET-constant" title="Msf::Post::Windows::Error::TIMER_RESOLUTION_NOT_SET (constant)">Error::TIMER_RESOLUTION_NOT_SET</a></span>, <span class='object_link'><a href="Error.html#TIMER_RESUME_IGNORED-constant" title="Msf::Post::Windows::Error::TIMER_RESUME_IGNORED (constant)">Error::TIMER_RESUME_IGNORED</a></span>, <span class='object_link'><a href="Error.html#TIME_SKEW-constant" title="Msf::Post::Windows::Error::TIME_SKEW (constant)">Error::TIME_SKEW</a></span>, <span class='object_link'><a href="Error.html#TLW_WITH_WSCHILD-constant" title="Msf::Post::Windows::Error::TLW_WITH_WSCHILD (constant)">Error::TLW_WITH_WSCHILD</a></span>, <span class='object_link'><a href="Error.html#TM_IDENTITY_MISMATCH-constant" title="Msf::Post::Windows::Error::TM_IDENTITY_MISMATCH (constant)">Error::TM_IDENTITY_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#TM_INITIALIZATION_FAILED-constant" title="Msf::Post::Windows::Error::TM_INITIALIZATION_FAILED (constant)">Error::TM_INITIALIZATION_FAILED</a></span>, <span class='object_link'><a href="Error.html#TM_VOLATILE-constant" title="Msf::Post::Windows::Error::TM_VOLATILE (constant)">Error::TM_VOLATILE</a></span>, <span class='object_link'><a href="Error.html#TOKEN_ALREADY_IN_USE-constant" title="Msf::Post::Windows::Error::TOKEN_ALREADY_IN_USE (constant)">Error::TOKEN_ALREADY_IN_USE</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_CMDS-constant" title="Msf::Post::Windows::Error::TOO_MANY_CMDS (constant)">Error::TOO_MANY_CMDS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_CONTEXT_IDS-constant" title="Msf::Post::Windows::Error::TOO_MANY_CONTEXT_IDS (constant)">Error::TOO_MANY_CONTEXT_IDS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_LINKS-constant" title="Msf::Post::Windows::Error::TOO_MANY_LINKS (constant)">Error::TOO_MANY_LINKS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_LUIDS_REQUESTED-constant" title="Msf::Post::Windows::Error::TOO_MANY_LUIDS_REQUESTED (constant)">Error::TOO_MANY_LUIDS_REQUESTED</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_MODULES-constant" title="Msf::Post::Windows::Error::TOO_MANY_MODULES (constant)">Error::TOO_MANY_MODULES</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_MUXWAITERS-constant" title="Msf::Post::Windows::Error::TOO_MANY_MUXWAITERS (constant)">Error::TOO_MANY_MUXWAITERS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_NAMES-constant" title="Msf::Post::Windows::Error::TOO_MANY_NAMES (constant)">Error::TOO_MANY_NAMES</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_OPEN_FILES-constant" title="Msf::Post::Windows::Error::TOO_MANY_OPEN_FILES (constant)">Error::TOO_MANY_OPEN_FILES</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_POSTS-constant" title="Msf::Post::Windows::Error::TOO_MANY_POSTS (constant)">Error::TOO_MANY_POSTS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_SECRETS-constant" title="Msf::Post::Windows::Error::TOO_MANY_SECRETS (constant)">Error::TOO_MANY_SECRETS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_SEMAPHORES-constant" title="Msf::Post::Windows::Error::TOO_MANY_SEMAPHORES (constant)">Error::TOO_MANY_SEMAPHORES</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_SEM_REQUESTS-constant" title="Msf::Post::Windows::Error::TOO_MANY_SEM_REQUESTS (constant)">Error::TOO_MANY_SEM_REQUESTS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_SESS-constant" title="Msf::Post::Windows::Error::TOO_MANY_SESS (constant)">Error::TOO_MANY_SESS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_SIDS-constant" title="Msf::Post::Windows::Error::TOO_MANY_SIDS (constant)">Error::TOO_MANY_SIDS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_TCBS-constant" title="Msf::Post::Windows::Error::TOO_MANY_TCBS (constant)">Error::TOO_MANY_TCBS</a></span>, <span class='object_link'><a href="Error.html#TOO_MANY_THREADS-constant" title="Msf::Post::Windows::Error::TOO_MANY_THREADS (constant)">Error::TOO_MANY_THREADS</a></span>, <span class='object_link'><a href="Error.html#TRANSACTED_MAPPING_UNSUPPORTED_REMOTE-constant" title="Msf::Post::Windows::Error::TRANSACTED_MAPPING_UNSUPPORTED_REMOTE (constant)">Error::TRANSACTED_MAPPING_UNSUPPORTED_REMOTE</a></span>, <span class='object_link'><a href="Error.html#TRANSACTIONAL_CONFLICT-constant" title="Msf::Post::Windows::Error::TRANSACTIONAL_CONFLICT (constant)">Error::TRANSACTIONAL_CONFLICT</a></span>, <span class='object_link'><a href="Error.html#TRANSACTIONAL_OPEN_NOT_ALLOWED-constant" title="Msf::Post::Windows::Error::TRANSACTIONAL_OPEN_NOT_ALLOWED (constant)">Error::TRANSACTIONAL_OPEN_NOT_ALLOWED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTIONMANAGER_IDENTITY_MISMATCH-constant" title="Msf::Post::Windows::Error::TRANSACTIONMANAGER_IDENTITY_MISMATCH (constant)">Error::TRANSACTIONMANAGER_IDENTITY_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#TRANSACTIONMANAGER_NOT_FOUND-constant" title="Msf::Post::Windows::Error::TRANSACTIONMANAGER_NOT_FOUND (constant)">Error::TRANSACTIONMANAGER_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#TRANSACTIONMANAGER_NOT_ONLINE-constant" title="Msf::Post::Windows::Error::TRANSACTIONMANAGER_NOT_ONLINE (constant)">Error::TRANSACTIONMANAGER_NOT_ONLINE</a></span>, <span class='object_link'><a href="Error.html#TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION-constant" title="Msf::Post::Windows::Error::TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION (constant)">Error::TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION</a></span>, <span class='object_link'><a href="Error.html#TRANSACTIONS_NOT_FROZEN-constant" title="Msf::Post::Windows::Error::TRANSACTIONS_NOT_FROZEN (constant)">Error::TRANSACTIONS_NOT_FROZEN</a></span>, <span class='object_link'><a href="Error.html#TRANSACTIONS_UNSUPPORTED_REMOTE-constant" title="Msf::Post::Windows::Error::TRANSACTIONS_UNSUPPORTED_REMOTE (constant)">Error::TRANSACTIONS_UNSUPPORTED_REMOTE</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_ALREADY_ABORTED-constant" title="Msf::Post::Windows::Error::TRANSACTION_ALREADY_ABORTED (constant)">Error::TRANSACTION_ALREADY_ABORTED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_ALREADY_COMMITTED-constant" title="Msf::Post::Windows::Error::TRANSACTION_ALREADY_COMMITTED (constant)">Error::TRANSACTION_ALREADY_COMMITTED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_FREEZE_IN_PROGRESS-constant" title="Msf::Post::Windows::Error::TRANSACTION_FREEZE_IN_PROGRESS (constant)">Error::TRANSACTION_FREEZE_IN_PROGRESS</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_INTEGRITY_VIOLATED-constant" title="Msf::Post::Windows::Error::TRANSACTION_INTEGRITY_VIOLATED (constant)">Error::TRANSACTION_INTEGRITY_VIOLATED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_INVALID_MARSHALL_BUFFER-constant" title="Msf::Post::Windows::Error::TRANSACTION_INVALID_MARSHALL_BUFFER (constant)">Error::TRANSACTION_INVALID_MARSHALL_BUFFER</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_MUST_WRITETHROUGH-constant" title="Msf::Post::Windows::Error::TRANSACTION_MUST_WRITETHROUGH (constant)">Error::TRANSACTION_MUST_WRITETHROUGH</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_NOT_ACTIVE-constant" title="Msf::Post::Windows::Error::TRANSACTION_NOT_ACTIVE (constant)">Error::TRANSACTION_NOT_ACTIVE</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_NOT_ENLISTED-constant" title="Msf::Post::Windows::Error::TRANSACTION_NOT_ENLISTED (constant)">Error::TRANSACTION_NOT_ENLISTED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_NOT_FOUND-constant" title="Msf::Post::Windows::Error::TRANSACTION_NOT_FOUND (constant)">Error::TRANSACTION_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_NOT_JOINED-constant" title="Msf::Post::Windows::Error::TRANSACTION_NOT_JOINED (constant)">Error::TRANSACTION_NOT_JOINED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_NOT_REQUESTED-constant" title="Msf::Post::Windows::Error::TRANSACTION_NOT_REQUESTED (constant)">Error::TRANSACTION_NOT_REQUESTED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_NOT_ROOT-constant" title="Msf::Post::Windows::Error::TRANSACTION_NOT_ROOT (constant)">Error::TRANSACTION_NOT_ROOT</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_NO_SUPERIOR-constant" title="Msf::Post::Windows::Error::TRANSACTION_NO_SUPERIOR (constant)">Error::TRANSACTION_NO_SUPERIOR</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_OBJECT_EXPIRED-constant" title="Msf::Post::Windows::Error::TRANSACTION_OBJECT_EXPIRED (constant)">Error::TRANSACTION_OBJECT_EXPIRED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_PROPAGATION_FAILED-constant" title="Msf::Post::Windows::Error::TRANSACTION_PROPAGATION_FAILED (constant)">Error::TRANSACTION_PROPAGATION_FAILED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_RECORD_TOO_LONG-constant" title="Msf::Post::Windows::Error::TRANSACTION_RECORD_TOO_LONG (constant)">Error::TRANSACTION_RECORD_TOO_LONG</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_REQUEST_NOT_VALID-constant" title="Msf::Post::Windows::Error::TRANSACTION_REQUEST_NOT_VALID (constant)">Error::TRANSACTION_REQUEST_NOT_VALID</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_REQUIRED_PROMOTION-constant" title="Msf::Post::Windows::Error::TRANSACTION_REQUIRED_PROMOTION (constant)">Error::TRANSACTION_REQUIRED_PROMOTION</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_RESPONSE_NOT_ENLISTED-constant" title="Msf::Post::Windows::Error::TRANSACTION_RESPONSE_NOT_ENLISTED (constant)">Error::TRANSACTION_RESPONSE_NOT_ENLISTED</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_SCOPE_CALLBACKS_NOT_SET-constant" title="Msf::Post::Windows::Error::TRANSACTION_SCOPE_CALLBACKS_NOT_SET (constant)">Error::TRANSACTION_SCOPE_CALLBACKS_NOT_SET</a></span>, <span class='object_link'><a href="Error.html#TRANSACTION_SUPERIOR_EXISTS-constant" title="Msf::Post::Windows::Error::TRANSACTION_SUPERIOR_EXISTS (constant)">Error::TRANSACTION_SUPERIOR_EXISTS</a></span>, <span class='object_link'><a href="Error.html#TRANSFORM_NOT_SUPPORTED-constant" title="Msf::Post::Windows::Error::TRANSFORM_NOT_SUPPORTED (constant)">Error::TRANSFORM_NOT_SUPPORTED</a></span>, <span class='object_link'><a href="Error.html#TRANSLATION_COMPLETE-constant" title="Msf::Post::Windows::Error::TRANSLATION_COMPLETE (constant)">Error::TRANSLATION_COMPLETE</a></span>, <span class='object_link'><a href="Error.html#TRANSPORT_FULL-constant" title="Msf::Post::Windows::Error::TRANSPORT_FULL (constant)">Error::TRANSPORT_FULL</a></span>, <span class='object_link'><a href="Error.html#TRUSTED_DOMAIN_FAILURE-constant" title="Msf::Post::Windows::Error::TRUSTED_DOMAIN_FAILURE (constant)">Error::TRUSTED_DOMAIN_FAILURE</a></span>, <span class='object_link'><a href="Error.html#TRUSTED_RELATIONSHIP_FAILURE-constant" title="Msf::Post::Windows::Error::TRUSTED_RELATIONSHIP_FAILURE (constant)">Error::TRUSTED_RELATIONSHIP_FAILURE</a></span>, <span class='object_link'><a href="Error.html#TRUST_FAILURE-constant" title="Msf::Post::Windows::Error::TRUST_FAILURE (constant)">Error::TRUST_FAILURE</a></span>, <span class='object_link'><a href="Error.html#TS_INCOMPATIBLE_SESSIONS-constant" title="Msf::Post::Windows::Error::TS_INCOMPATIBLE_SESSIONS (constant)">Error::TS_INCOMPATIBLE_SESSIONS</a></span>, <span class='object_link'><a href="Error.html#TS_VIDEO_SUBSYSTEM_ERROR-constant" title="Msf::Post::Windows::Error::TS_VIDEO_SUBSYSTEM_ERROR (constant)">Error::TS_VIDEO_SUBSYSTEM_ERROR</a></span>, <span class='object_link'><a href="Error.html#TXF_ATTRIBUTE_CORRUPT-constant" title="Msf::Post::Windows::Error::TXF_ATTRIBUTE_CORRUPT (constant)">Error::TXF_ATTRIBUTE_CORRUPT</a></span>, <span class='object_link'><a href="Error.html#TXF_DIR_NOT_EMPTY-constant" title="Msf::Post::Windows::Error::TXF_DIR_NOT_EMPTY (constant)">Error::TXF_DIR_NOT_EMPTY</a></span>, <span class='object_link'><a href="Error.html#TXF_METADATA_ALREADY_PRESENT-constant" title="Msf::Post::Windows::Error::TXF_METADATA_ALREADY_PRESENT (constant)">Error::TXF_METADATA_ALREADY_PRESENT</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_CLEAN-constant" title="Msf::Post::Windows::Error::UNABLE_TO_CLEAN (constant)">Error::UNABLE_TO_CLEAN</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_EJECT_MOUNTED_MEDIA-constant" title="Msf::Post::Windows::Error::UNABLE_TO_EJECT_MOUNTED_MEDIA (constant)">Error::UNABLE_TO_EJECT_MOUNTED_MEDIA</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_INVENTORY_DRIVE-constant" title="Msf::Post::Windows::Error::UNABLE_TO_INVENTORY_DRIVE (constant)">Error::UNABLE_TO_INVENTORY_DRIVE</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_INVENTORY_SLOT-constant" title="Msf::Post::Windows::Error::UNABLE_TO_INVENTORY_SLOT (constant)">Error::UNABLE_TO_INVENTORY_SLOT</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_INVENTORY_TRANSPORT-constant" title="Msf::Post::Windows::Error::UNABLE_TO_INVENTORY_TRANSPORT (constant)">Error::UNABLE_TO_INVENTORY_TRANSPORT</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_LOAD_MEDIUM-constant" title="Msf::Post::Windows::Error::UNABLE_TO_LOAD_MEDIUM (constant)">Error::UNABLE_TO_LOAD_MEDIUM</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_LOCK_MEDIA-constant" title="Msf::Post::Windows::Error::UNABLE_TO_LOCK_MEDIA (constant)">Error::UNABLE_TO_LOCK_MEDIA</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_MOVE_REPLACEMENT-constant" title="Msf::Post::Windows::Error::UNABLE_TO_MOVE_REPLACEMENT (constant)">Error::UNABLE_TO_MOVE_REPLACEMENT</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_MOVE_REPLACEMENT_2-constant" title="Msf::Post::Windows::Error::UNABLE_TO_MOVE_REPLACEMENT_2 (constant)">Error::UNABLE_TO_MOVE_REPLACEMENT_2</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_REMOVE_REPLACED-constant" title="Msf::Post::Windows::Error::UNABLE_TO_REMOVE_REPLACED (constant)">Error::UNABLE_TO_REMOVE_REPLACED</a></span>, <span class='object_link'><a href="Error.html#UNABLE_TO_UNLOAD_MEDIA-constant" title="Msf::Post::Windows::Error::UNABLE_TO_UNLOAD_MEDIA (constant)">Error::UNABLE_TO_UNLOAD_MEDIA</a></span>, <span class='object_link'><a href="Error.html#UNDEFINED_CHARACTER-constant" title="Msf::Post::Windows::Error::UNDEFINED_CHARACTER (constant)">Error::UNDEFINED_CHARACTER</a></span>, <span class='object_link'><a href="Error.html#UNEXPECTED_MM_CREATE_ERR-constant" title="Msf::Post::Windows::Error::UNEXPECTED_MM_CREATE_ERR (constant)">Error::UNEXPECTED_MM_CREATE_ERR</a></span>, <span class='object_link'><a href="Error.html#UNEXPECTED_MM_EXTEND_ERR-constant" title="Msf::Post::Windows::Error::UNEXPECTED_MM_EXTEND_ERR (constant)">Error::UNEXPECTED_MM_EXTEND_ERR</a></span>, <span class='object_link'><a href="Error.html#UNEXPECTED_MM_MAP_ERROR-constant" title="Msf::Post::Windows::Error::UNEXPECTED_MM_MAP_ERROR (constant)">Error::UNEXPECTED_MM_MAP_ERROR</a></span>, <span class='object_link'><a href="Error.html#UNEXPECTED_OMID-constant" title="Msf::Post::Windows::Error::UNEXPECTED_OMID (constant)">Error::UNEXPECTED_OMID</a></span>, <span class='object_link'><a href="Error.html#UNEXP_NET_ERR-constant" title="Msf::Post::Windows::Error::UNEXP_NET_ERR (constant)">Error::UNEXP_NET_ERR</a></span>, <span class='object_link'><a href="Error.html#UNHANDLED_EXCEPTION-constant" title="Msf::Post::Windows::Error::UNHANDLED_EXCEPTION (constant)">Error::UNHANDLED_EXCEPTION</a></span>, <span class='object_link'><a href="Error.html#UNIDENTIFIED_ERROR-constant" title="Msf::Post::Windows::Error::UNIDENTIFIED_ERROR (constant)">Error::UNIDENTIFIED_ERROR</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_COMPONENT-constant" title="Msf::Post::Windows::Error::UNKNOWN_COMPONENT (constant)">Error::UNKNOWN_COMPONENT</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_FEATURE-constant" title="Msf::Post::Windows::Error::UNKNOWN_FEATURE (constant)">Error::UNKNOWN_FEATURE</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_PATCH-constant" title="Msf::Post::Windows::Error::UNKNOWN_PATCH (constant)">Error::UNKNOWN_PATCH</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_PORT-constant" title="Msf::Post::Windows::Error::UNKNOWN_PORT (constant)">Error::UNKNOWN_PORT</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_PRINTER_DRIVER-constant" title="Msf::Post::Windows::Error::UNKNOWN_PRINTER_DRIVER (constant)">Error::UNKNOWN_PRINTER_DRIVER</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_PRINTPROCESSOR-constant" title="Msf::Post::Windows::Error::UNKNOWN_PRINTPROCESSOR (constant)">Error::UNKNOWN_PRINTPROCESSOR</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_PRINT_MONITOR-constant" title="Msf::Post::Windows::Error::UNKNOWN_PRINT_MONITOR (constant)">Error::UNKNOWN_PRINT_MONITOR</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_PRODUCT-constant" title="Msf::Post::Windows::Error::UNKNOWN_PRODUCT (constant)">Error::UNKNOWN_PRODUCT</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_PROPERTY-constant" title="Msf::Post::Windows::Error::UNKNOWN_PROPERTY (constant)">Error::UNKNOWN_PROPERTY</a></span>, <span class='object_link'><a href="Error.html#UNKNOWN_REVISION-constant" title="Msf::Post::Windows::Error::UNKNOWN_REVISION (constant)">Error::UNKNOWN_REVISION</a></span>, <span class='object_link'><a href="Error.html#UNMAPPED_SUBSTITUTION_STRING-constant" title="Msf::Post::Windows::Error::UNMAPPED_SUBSTITUTION_STRING (constant)">Error::UNMAPPED_SUBSTITUTION_STRING</a></span>, <span class='object_link'><a href="Error.html#UNRECOGNIZED_MEDIA-constant" title="Msf::Post::Windows::Error::UNRECOGNIZED_MEDIA (constant)">Error::UNRECOGNIZED_MEDIA</a></span>, <span class='object_link'><a href="Error.html#UNRECOGNIZED_VOLUME-constant" title="Msf::Post::Windows::Error::UNRECOGNIZED_VOLUME (constant)">Error::UNRECOGNIZED_VOLUME</a></span>, <span class='object_link'><a href="Error.html#UNSUPPORTED_COMPRESSION-constant" title="Msf::Post::Windows::Error::UNSUPPORTED_COMPRESSION (constant)">Error::UNSUPPORTED_COMPRESSION</a></span>, <span class='object_link'><a href="Error.html#UNSUPPORTED_TYPE-constant" title="Msf::Post::Windows::Error::UNSUPPORTED_TYPE (constant)">Error::UNSUPPORTED_TYPE</a></span>, <span class='object_link'><a href="Error.html#UNWIND-constant" title="Msf::Post::Windows::Error::UNWIND (constant)">Error::UNWIND</a></span>, <span class='object_link'><a href="Error.html#UNWIND_CONSOLIDATE-constant" title="Msf::Post::Windows::Error::UNWIND_CONSOLIDATE (constant)">Error::UNWIND_CONSOLIDATE</a></span>, <span class='object_link'><a href="Error.html#USER_APC-constant" title="Msf::Post::Windows::Error::USER_APC (constant)">Error::USER_APC</a></span>, <span class='object_link'><a href="Error.html#USER_DELETE_TRUST_QUOTA_EXCEEDED-constant" title="Msf::Post::Windows::Error::USER_DELETE_TRUST_QUOTA_EXCEEDED (constant)">Error::USER_DELETE_TRUST_QUOTA_EXCEEDED</a></span>, <span class='object_link'><a href="Error.html#USER_EXISTS-constant" title="Msf::Post::Windows::Error::USER_EXISTS (constant)">Error::USER_EXISTS</a></span>, <span class='object_link'><a href="Error.html#USER_MAPPED_FILE-constant" title="Msf::Post::Windows::Error::USER_MAPPED_FILE (constant)">Error::USER_MAPPED_FILE</a></span>, <span class='object_link'><a href="Error.html#USER_PROFILE_LOAD-constant" title="Msf::Post::Windows::Error::USER_PROFILE_LOAD (constant)">Error::USER_PROFILE_LOAD</a></span>, <span class='object_link'><a href="Error.html#VALIDATE_CONTINUE-constant" title="Msf::Post::Windows::Error::VALIDATE_CONTINUE (constant)">Error::VALIDATE_CONTINUE</a></span>, <span class='object_link'><a href="Error.html#VC_DISCONNECTED-constant" title="Msf::Post::Windows::Error::VC_DISCONNECTED (constant)">Error::VC_DISCONNECTED</a></span>, <span class='object_link'><a href="Error.html#VDM_DISALLOWED-constant" title="Msf::Post::Windows::Error::VDM_DISALLOWED (constant)">Error::VDM_DISALLOWED</a></span>, <span class='object_link'><a href="Error.html#VDM_HARD_ERROR-constant" title="Msf::Post::Windows::Error::VDM_HARD_ERROR (constant)">Error::VDM_HARD_ERROR</a></span>, <span class='object_link'><a href="Error.html#VERIFIER_STOP-constant" title="Msf::Post::Windows::Error::VERIFIER_STOP (constant)">Error::VERIFIER_STOP</a></span>, <span class='object_link'><a href="Error.html#VERSION_PARSE_ERROR-constant" title="Msf::Post::Windows::Error::VERSION_PARSE_ERROR (constant)">Error::VERSION_PARSE_ERROR</a></span>, <span class='object_link'><a href="Error.html#VIRUS_DELETED-constant" title="Msf::Post::Windows::Error::VIRUS_DELETED (constant)">Error::VIRUS_DELETED</a></span>, <span class='object_link'><a href="Error.html#VIRUS_INFECTED-constant" title="Msf::Post::Windows::Error::VIRUS_INFECTED (constant)">Error::VIRUS_INFECTED</a></span>, <span class='object_link'><a href="Error.html#VOLSNAP_HIBERNATE_READY-constant" title="Msf::Post::Windows::Error::VOLSNAP_HIBERNATE_READY (constant)">Error::VOLSNAP_HIBERNATE_READY</a></span>, <span class='object_link'><a href="Error.html#VOLSNAP_PREPARE_HIBERNATE-constant" title="Msf::Post::Windows::Error::VOLSNAP_PREPARE_HIBERNATE (constant)">Error::VOLSNAP_PREPARE_HIBERNATE</a></span>, <span class='object_link'><a href="Error.html#VOLUME_CONTAINS_SYS_FILES-constant" title="Msf::Post::Windows::Error::VOLUME_CONTAINS_SYS_FILES (constant)">Error::VOLUME_CONTAINS_SYS_FILES</a></span>, <span class='object_link'><a href="Error.html#VOLUME_DIRTY-constant" title="Msf::Post::Windows::Error::VOLUME_DIRTY (constant)">Error::VOLUME_DIRTY</a></span>, <span class='object_link'><a href="Error.html#VOLUME_MOUNTED-constant" title="Msf::Post::Windows::Error::VOLUME_MOUNTED (constant)">Error::VOLUME_MOUNTED</a></span>, <span class='object_link'><a href="Error.html#VOLUME_NOT_SIS_ENABLED-constant" title="Msf::Post::Windows::Error::VOLUME_NOT_SIS_ENABLED (constant)">Error::VOLUME_NOT_SIS_ENABLED</a></span>, <span class='object_link'><a href="Error.html#VOLUME_NOT_SUPPORT_EFS-constant" title="Msf::Post::Windows::Error::VOLUME_NOT_SUPPORT_EFS (constant)">Error::VOLUME_NOT_SUPPORT_EFS</a></span>, <span class='object_link'><a href="Error.html#WAIT_1-constant" title="Msf::Post::Windows::Error::WAIT_1 (constant)">Error::WAIT_1</a></span>, <span class='object_link'><a href="Error.html#WAIT_2-constant" title="Msf::Post::Windows::Error::WAIT_2 (constant)">Error::WAIT_2</a></span>, <span class='object_link'><a href="Error.html#WAIT_3-constant" title="Msf::Post::Windows::Error::WAIT_3 (constant)">Error::WAIT_3</a></span>, <span class='object_link'><a href="Error.html#WAIT_63-constant" title="Msf::Post::Windows::Error::WAIT_63 (constant)">Error::WAIT_63</a></span>, <span class='object_link'><a href="Error.html#WAIT_FOR_OPLOCK-constant" title="Msf::Post::Windows::Error::WAIT_FOR_OPLOCK (constant)">Error::WAIT_FOR_OPLOCK</a></span>, <span class='object_link'><a href="Error.html#WAIT_NO_CHILDREN-constant" title="Msf::Post::Windows::Error::WAIT_NO_CHILDREN (constant)">Error::WAIT_NO_CHILDREN</a></span>, <span class='object_link'><a href="Error.html#WAIT_TIMEOUT-constant" title="Msf::Post::Windows::Error::WAIT_TIMEOUT (constant)">Error::WAIT_TIMEOUT</a></span>, <span class='object_link'><a href="Error.html#WAKE_SYSTEM-constant" title="Msf::Post::Windows::Error::WAKE_SYSTEM (constant)">Error::WAKE_SYSTEM</a></span>, <span class='object_link'><a href="Error.html#WAKE_SYSTEM_DEBUGGER-constant" title="Msf::Post::Windows::Error::WAKE_SYSTEM_DEBUGGER (constant)">Error::WAKE_SYSTEM_DEBUGGER</a></span>, <span class='object_link'><a href="Error.html#WARNING_IPSEC_MM_POLICY_PRUNED-constant" title="Msf::Post::Windows::Error::WARNING_IPSEC_MM_POLICY_PRUNED (constant)">Error::WARNING_IPSEC_MM_POLICY_PRUNED</a></span>, <span class='object_link'><a href="Error.html#WARNING_IPSEC_QM_POLICY_PRUNED-constant" title="Msf::Post::Windows::Error::WARNING_IPSEC_QM_POLICY_PRUNED (constant)">Error::WARNING_IPSEC_QM_POLICY_PRUNED</a></span>, <span class='object_link'><a href="Error.html#WAS_LOCKED-constant" title="Msf::Post::Windows::Error::WAS_LOCKED (constant)">Error::WAS_LOCKED</a></span>, <span class='object_link'><a href="Error.html#WAS_UNLOCKED-constant" title="Msf::Post::Windows::Error::WAS_UNLOCKED (constant)">Error::WAS_UNLOCKED</a></span>, <span class='object_link'><a href="Error.html#WINDOW_NOT_COMBOBOX-constant" title="Msf::Post::Windows::Error::WINDOW_NOT_COMBOBOX (constant)">Error::WINDOW_NOT_COMBOBOX</a></span>, <span class='object_link'><a href="Error.html#WINDOW_NOT_DIALOG-constant" title="Msf::Post::Windows::Error::WINDOW_NOT_DIALOG (constant)">Error::WINDOW_NOT_DIALOG</a></span>, <span class='object_link'><a href="Error.html#WINDOW_OF_OTHER_THREAD-constant" title="Msf::Post::Windows::Error::WINDOW_OF_OTHER_THREAD (constant)">Error::WINDOW_OF_OTHER_THREAD</a></span>, <span class='object_link'><a href="Error.html#WINS_INTERNAL-constant" title="Msf::Post::Windows::Error::WINS_INTERNAL (constant)">Error::WINS_INTERNAL</a></span>, <span class='object_link'><a href="Error.html#WMI_ALREADY_DISABLED-constant" title="Msf::Post::Windows::Error::WMI_ALREADY_DISABLED (constant)">Error::WMI_ALREADY_DISABLED</a></span>, <span class='object_link'><a href="Error.html#WMI_ALREADY_ENABLED-constant" title="Msf::Post::Windows::Error::WMI_ALREADY_ENABLED (constant)">Error::WMI_ALREADY_ENABLED</a></span>, <span class='object_link'><a href="Error.html#WMI_DP_FAILED-constant" title="Msf::Post::Windows::Error::WMI_DP_FAILED (constant)">Error::WMI_DP_FAILED</a></span>, <span class='object_link'><a href="Error.html#WMI_DP_NOT_FOUND-constant" title="Msf::Post::Windows::Error::WMI_DP_NOT_FOUND (constant)">Error::WMI_DP_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#WMI_GUID_DISCONNECTED-constant" title="Msf::Post::Windows::Error::WMI_GUID_DISCONNECTED (constant)">Error::WMI_GUID_DISCONNECTED</a></span>, <span class='object_link'><a href="Error.html#WMI_GUID_NOT_FOUND-constant" title="Msf::Post::Windows::Error::WMI_GUID_NOT_FOUND (constant)">Error::WMI_GUID_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#WMI_INSTANCE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::WMI_INSTANCE_NOT_FOUND (constant)">Error::WMI_INSTANCE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#WMI_INVALID_MOF-constant" title="Msf::Post::Windows::Error::WMI_INVALID_MOF (constant)">Error::WMI_INVALID_MOF</a></span>, <span class='object_link'><a href="Error.html#WMI_INVALID_REGINFO-constant" title="Msf::Post::Windows::Error::WMI_INVALID_REGINFO (constant)">Error::WMI_INVALID_REGINFO</a></span>, <span class='object_link'><a href="Error.html#WMI_ITEMID_NOT_FOUND-constant" title="Msf::Post::Windows::Error::WMI_ITEMID_NOT_FOUND (constant)">Error::WMI_ITEMID_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#WMI_READ_ONLY-constant" title="Msf::Post::Windows::Error::WMI_READ_ONLY (constant)">Error::WMI_READ_ONLY</a></span>, <span class='object_link'><a href="Error.html#WMI_SERVER_UNAVAILABLE-constant" title="Msf::Post::Windows::Error::WMI_SERVER_UNAVAILABLE (constant)">Error::WMI_SERVER_UNAVAILABLE</a></span>, <span class='object_link'><a href="Error.html#WMI_SET_FAILURE-constant" title="Msf::Post::Windows::Error::WMI_SET_FAILURE (constant)">Error::WMI_SET_FAILURE</a></span>, <span class='object_link'><a href="Error.html#WMI_TRY_AGAIN-constant" title="Msf::Post::Windows::Error::WMI_TRY_AGAIN (constant)">Error::WMI_TRY_AGAIN</a></span>, <span class='object_link'><a href="Error.html#WMI_UNRESOLVED_INSTANCE_REF-constant" title="Msf::Post::Windows::Error::WMI_UNRESOLVED_INSTANCE_REF (constant)">Error::WMI_UNRESOLVED_INSTANCE_REF</a></span>, <span class='object_link'><a href="Error.html#WORKING_SET_QUOTA-constant" title="Msf::Post::Windows::Error::WORKING_SET_QUOTA (constant)">Error::WORKING_SET_QUOTA</a></span>, <span class='object_link'><a href="Error.html#WOW_ASSERTION-constant" title="Msf::Post::Windows::Error::WOW_ASSERTION (constant)">Error::WOW_ASSERTION</a></span>, <span class='object_link'><a href="Error.html#WRITE_FAULT-constant" title="Msf::Post::Windows::Error::WRITE_FAULT (constant)">Error::WRITE_FAULT</a></span>, <span class='object_link'><a href="Error.html#WRITE_PROTECT-constant" title="Msf::Post::Windows::Error::WRITE_PROTECT (constant)">Error::WRITE_PROTECT</a></span>, <span class='object_link'><a href="Error.html#WRONG_COMPARTMENT-constant" title="Msf::Post::Windows::Error::WRONG_COMPARTMENT (constant)">Error::WRONG_COMPARTMENT</a></span>, <span class='object_link'><a href="Error.html#WRONG_DISK-constant" title="Msf::Post::Windows::Error::WRONG_DISK (constant)">Error::WRONG_DISK</a></span>, <span class='object_link'><a href="Error.html#WRONG_EFS-constant" title="Msf::Post::Windows::Error::WRONG_EFS (constant)">Error::WRONG_EFS</a></span>, <span class='object_link'><a href="Error.html#WRONG_PASSWORD-constant" title="Msf::Post::Windows::Error::WRONG_PASSWORD (constant)">Error::WRONG_PASSWORD</a></span>, <span class='object_link'><a href="Error.html#WRONG_TARGET_NAME-constant" title="Msf::Post::Windows::Error::WRONG_TARGET_NAME (constant)">Error::WRONG_TARGET_NAME</a></span>, <span class='object_link'><a href="Error.html#WSAEACCES-constant" title="Msf::Post::Windows::Error::WSAEACCES (constant)">Error::WSAEACCES</a></span>, <span class='object_link'><a href="Error.html#WSAEADDRINUSE-constant" title="Msf::Post::Windows::Error::WSAEADDRINUSE (constant)">Error::WSAEADDRINUSE</a></span>, <span class='object_link'><a href="Error.html#WSAEADDRNOTAVAIL-constant" title="Msf::Post::Windows::Error::WSAEADDRNOTAVAIL (constant)">Error::WSAEADDRNOTAVAIL</a></span>, <span class='object_link'><a href="Error.html#WSAEAFNOSUPPORT-constant" title="Msf::Post::Windows::Error::WSAEAFNOSUPPORT (constant)">Error::WSAEAFNOSUPPORT</a></span>, <span class='object_link'><a href="Error.html#WSAEALREADY-constant" title="Msf::Post::Windows::Error::WSAEALREADY (constant)">Error::WSAEALREADY</a></span>, <span class='object_link'><a href="Error.html#WSAEBADF-constant" title="Msf::Post::Windows::Error::WSAEBADF (constant)">Error::WSAEBADF</a></span>, <span class='object_link'><a href="Error.html#WSAECANCELLED-constant" title="Msf::Post::Windows::Error::WSAECANCELLED (constant)">Error::WSAECANCELLED</a></span>, <span class='object_link'><a href="Error.html#WSAECONNABORTED-constant" title="Msf::Post::Windows::Error::WSAECONNABORTED (constant)">Error::WSAECONNABORTED</a></span>, <span class='object_link'><a href="Error.html#WSAECONNREFUSED-constant" title="Msf::Post::Windows::Error::WSAECONNREFUSED (constant)">Error::WSAECONNREFUSED</a></span>, <span class='object_link'><a href="Error.html#WSAECONNRESET-constant" title="Msf::Post::Windows::Error::WSAECONNRESET (constant)">Error::WSAECONNRESET</a></span>, <span class='object_link'><a href="Error.html#WSAEDESTADDRREQ-constant" title="Msf::Post::Windows::Error::WSAEDESTADDRREQ (constant)">Error::WSAEDESTADDRREQ</a></span>, <span class='object_link'><a href="Error.html#WSAEDISCON-constant" title="Msf::Post::Windows::Error::WSAEDISCON (constant)">Error::WSAEDISCON</a></span>, <span class='object_link'><a href="Error.html#WSAEDQUOT-constant" title="Msf::Post::Windows::Error::WSAEDQUOT (constant)">Error::WSAEDQUOT</a></span>, <span class='object_link'><a href="Error.html#WSAEFAULT-constant" title="Msf::Post::Windows::Error::WSAEFAULT (constant)">Error::WSAEFAULT</a></span>, <span class='object_link'><a href="Error.html#WSAEHOSTDOWN-constant" title="Msf::Post::Windows::Error::WSAEHOSTDOWN (constant)">Error::WSAEHOSTDOWN</a></span>, <span class='object_link'><a href="Error.html#WSAEHOSTUNREACH-constant" title="Msf::Post::Windows::Error::WSAEHOSTUNREACH (constant)">Error::WSAEHOSTUNREACH</a></span>, <span class='object_link'><a href="Error.html#WSAEINPROGRESS-constant" title="Msf::Post::Windows::Error::WSAEINPROGRESS (constant)">Error::WSAEINPROGRESS</a></span>, <span class='object_link'><a href="Error.html#WSAEINTR-constant" title="Msf::Post::Windows::Error::WSAEINTR (constant)">Error::WSAEINTR</a></span>, <span class='object_link'><a href="Error.html#WSAEINVAL-constant" title="Msf::Post::Windows::Error::WSAEINVAL (constant)">Error::WSAEINVAL</a></span>, <span class='object_link'><a href="Error.html#WSAEINVALIDPROCTABLE-constant" title="Msf::Post::Windows::Error::WSAEINVALIDPROCTABLE (constant)">Error::WSAEINVALIDPROCTABLE</a></span>, <span class='object_link'><a href="Error.html#WSAEINVALIDPROVIDER-constant" title="Msf::Post::Windows::Error::WSAEINVALIDPROVIDER (constant)">Error::WSAEINVALIDPROVIDER</a></span>, <span class='object_link'><a href="Error.html#WSAEISCONN-constant" title="Msf::Post::Windows::Error::WSAEISCONN (constant)">Error::WSAEISCONN</a></span>, <span class='object_link'><a href="Error.html#WSAELOOP-constant" title="Msf::Post::Windows::Error::WSAELOOP (constant)">Error::WSAELOOP</a></span>, <span class='object_link'><a href="Error.html#WSAEMFILE-constant" title="Msf::Post::Windows::Error::WSAEMFILE (constant)">Error::WSAEMFILE</a></span>, <span class='object_link'><a href="Error.html#WSAEMSGSIZE-constant" title="Msf::Post::Windows::Error::WSAEMSGSIZE (constant)">Error::WSAEMSGSIZE</a></span>, <span class='object_link'><a href="Error.html#WSAENAMETOOLONG-constant" title="Msf::Post::Windows::Error::WSAENAMETOOLONG (constant)">Error::WSAENAMETOOLONG</a></span>, <span class='object_link'><a href="Error.html#WSAENETDOWN-constant" title="Msf::Post::Windows::Error::WSAENETDOWN (constant)">Error::WSAENETDOWN</a></span>, <span class='object_link'><a href="Error.html#WSAENETRESET-constant" title="Msf::Post::Windows::Error::WSAENETRESET (constant)">Error::WSAENETRESET</a></span>, <span class='object_link'><a href="Error.html#WSAENETUNREACH-constant" title="Msf::Post::Windows::Error::WSAENETUNREACH (constant)">Error::WSAENETUNREACH</a></span>, <span class='object_link'><a href="Error.html#WSAENOBUFS-constant" title="Msf::Post::Windows::Error::WSAENOBUFS (constant)">Error::WSAENOBUFS</a></span>, <span class='object_link'><a href="Error.html#WSAENOMORE-constant" title="Msf::Post::Windows::Error::WSAENOMORE (constant)">Error::WSAENOMORE</a></span>, <span class='object_link'><a href="Error.html#WSAENOPROTOOPT-constant" title="Msf::Post::Windows::Error::WSAENOPROTOOPT (constant)">Error::WSAENOPROTOOPT</a></span>, <span class='object_link'><a href="Error.html#WSAENOTCONN-constant" title="Msf::Post::Windows::Error::WSAENOTCONN (constant)">Error::WSAENOTCONN</a></span>, <span class='object_link'><a href="Error.html#WSAENOTEMPTY-constant" title="Msf::Post::Windows::Error::WSAENOTEMPTY (constant)">Error::WSAENOTEMPTY</a></span>, <span class='object_link'><a href="Error.html#WSAENOTSOCK-constant" title="Msf::Post::Windows::Error::WSAENOTSOCK (constant)">Error::WSAENOTSOCK</a></span>, <span class='object_link'><a href="Error.html#WSAEOPNOTSUPP-constant" title="Msf::Post::Windows::Error::WSAEOPNOTSUPP (constant)">Error::WSAEOPNOTSUPP</a></span>, <span class='object_link'><a href="Error.html#WSAEPFNOSUPPORT-constant" title="Msf::Post::Windows::Error::WSAEPFNOSUPPORT (constant)">Error::WSAEPFNOSUPPORT</a></span>, <span class='object_link'><a href="Error.html#WSAEPROCLIM-constant" title="Msf::Post::Windows::Error::WSAEPROCLIM (constant)">Error::WSAEPROCLIM</a></span>, <span class='object_link'><a href="Error.html#WSAEPROTONOSUPPORT-constant" title="Msf::Post::Windows::Error::WSAEPROTONOSUPPORT (constant)">Error::WSAEPROTONOSUPPORT</a></span>, <span class='object_link'><a href="Error.html#WSAEPROTOTYPE-constant" title="Msf::Post::Windows::Error::WSAEPROTOTYPE (constant)">Error::WSAEPROTOTYPE</a></span>, <span class='object_link'><a href="Error.html#WSAEPROVIDERFAILEDINIT-constant" title="Msf::Post::Windows::Error::WSAEPROVIDERFAILEDINIT (constant)">Error::WSAEPROVIDERFAILEDINIT</a></span>, <span class='object_link'><a href="Error.html#WSAEREFUSED-constant" title="Msf::Post::Windows::Error::WSAEREFUSED (constant)">Error::WSAEREFUSED</a></span>, <span class='object_link'><a href="Error.html#WSAEREMOTE-constant" title="Msf::Post::Windows::Error::WSAEREMOTE (constant)">Error::WSAEREMOTE</a></span>, <span class='object_link'><a href="Error.html#WSAESHUTDOWN-constant" title="Msf::Post::Windows::Error::WSAESHUTDOWN (constant)">Error::WSAESHUTDOWN</a></span>, <span class='object_link'><a href="Error.html#WSAESOCKTNOSUPPORT-constant" title="Msf::Post::Windows::Error::WSAESOCKTNOSUPPORT (constant)">Error::WSAESOCKTNOSUPPORT</a></span>, <span class='object_link'><a href="Error.html#WSAESTALE-constant" title="Msf::Post::Windows::Error::WSAESTALE (constant)">Error::WSAESTALE</a></span>, <span class='object_link'><a href="Error.html#WSAETIMEDOUT-constant" title="Msf::Post::Windows::Error::WSAETIMEDOUT (constant)">Error::WSAETIMEDOUT</a></span>, <span class='object_link'><a href="Error.html#WSAETOOMANYREFS-constant" title="Msf::Post::Windows::Error::WSAETOOMANYREFS (constant)">Error::WSAETOOMANYREFS</a></span>, <span class='object_link'><a href="Error.html#WSAEUSERS-constant" title="Msf::Post::Windows::Error::WSAEUSERS (constant)">Error::WSAEUSERS</a></span>, <span class='object_link'><a href="Error.html#WSAEWOULDBLOCK-constant" title="Msf::Post::Windows::Error::WSAEWOULDBLOCK (constant)">Error::WSAEWOULDBLOCK</a></span>, <span class='object_link'><a href="Error.html#WSAHOST_NOT_FOUND-constant" title="Msf::Post::Windows::Error::WSAHOST_NOT_FOUND (constant)">Error::WSAHOST_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#WSANOTINITIALISED-constant" title="Msf::Post::Windows::Error::WSANOTINITIALISED (constant)">Error::WSANOTINITIALISED</a></span>, <span class='object_link'><a href="Error.html#WSANO_DATA-constant" title="Msf::Post::Windows::Error::WSANO_DATA (constant)">Error::WSANO_DATA</a></span>, <span class='object_link'><a href="Error.html#WSANO_RECOVERY-constant" title="Msf::Post::Windows::Error::WSANO_RECOVERY (constant)">Error::WSANO_RECOVERY</a></span>, <span class='object_link'><a href="Error.html#WSASERVICE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::WSASERVICE_NOT_FOUND (constant)">Error::WSASERVICE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#WSASYSCALLFAILURE-constant" title="Msf::Post::Windows::Error::WSASYSCALLFAILURE (constant)">Error::WSASYSCALLFAILURE</a></span>, <span class='object_link'><a href="Error.html#WSASYSNOTREADY-constant" title="Msf::Post::Windows::Error::WSASYSNOTREADY (constant)">Error::WSASYSNOTREADY</a></span>, <span class='object_link'><a href="Error.html#WSATRY_AGAIN-constant" title="Msf::Post::Windows::Error::WSATRY_AGAIN (constant)">Error::WSATRY_AGAIN</a></span>, <span class='object_link'><a href="Error.html#WSATYPE_NOT_FOUND-constant" title="Msf::Post::Windows::Error::WSATYPE_NOT_FOUND (constant)">Error::WSATYPE_NOT_FOUND</a></span>, <span class='object_link'><a href="Error.html#WSAVERNOTSUPPORTED-constant" title="Msf::Post::Windows::Error::WSAVERNOTSUPPORTED (constant)">Error::WSAVERNOTSUPPORTED</a></span>, <span class='object_link'><a href="Error.html#WSA_E_CANCELLED-constant" title="Msf::Post::Windows::Error::WSA_E_CANCELLED (constant)">Error::WSA_E_CANCELLED</a></span>, <span class='object_link'><a href="Error.html#WSA_E_NO_MORE-constant" title="Msf::Post::Windows::Error::WSA_E_NO_MORE (constant)">Error::WSA_E_NO_MORE</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_ADMISSION_FAILURE-constant" title="Msf::Post::Windows::Error::WSA_QOS_ADMISSION_FAILURE (constant)">Error::WSA_QOS_ADMISSION_FAILURE</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_BAD_OBJECT-constant" title="Msf::Post::Windows::Error::WSA_QOS_BAD_OBJECT (constant)">Error::WSA_QOS_BAD_OBJECT</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_BAD_STYLE-constant" title="Msf::Post::Windows::Error::WSA_QOS_BAD_STYLE (constant)">Error::WSA_QOS_BAD_STYLE</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EFILTERCOUNT-constant" title="Msf::Post::Windows::Error::WSA_QOS_EFILTERCOUNT (constant)">Error::WSA_QOS_EFILTERCOUNT</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EFILTERSTYLE-constant" title="Msf::Post::Windows::Error::WSA_QOS_EFILTERSTYLE (constant)">Error::WSA_QOS_EFILTERSTYLE</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EFILTERTYPE-constant" title="Msf::Post::Windows::Error::WSA_QOS_EFILTERTYPE (constant)">Error::WSA_QOS_EFILTERTYPE</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EFLOWCOUNT-constant" title="Msf::Post::Windows::Error::WSA_QOS_EFLOWCOUNT (constant)">Error::WSA_QOS_EFLOWCOUNT</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EFLOWDESC-constant" title="Msf::Post::Windows::Error::WSA_QOS_EFLOWDESC (constant)">Error::WSA_QOS_EFLOWDESC</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EFLOWSPEC-constant" title="Msf::Post::Windows::Error::WSA_QOS_EFLOWSPEC (constant)">Error::WSA_QOS_EFLOWSPEC</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EOBJLENGTH-constant" title="Msf::Post::Windows::Error::WSA_QOS_EOBJLENGTH (constant)">Error::WSA_QOS_EOBJLENGTH</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EPOLICYOBJ-constant" title="Msf::Post::Windows::Error::WSA_QOS_EPOLICYOBJ (constant)">Error::WSA_QOS_EPOLICYOBJ</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EPROVSPECBUF-constant" title="Msf::Post::Windows::Error::WSA_QOS_EPROVSPECBUF (constant)">Error::WSA_QOS_EPROVSPECBUF</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EPSFILTERSPEC-constant" title="Msf::Post::Windows::Error::WSA_QOS_EPSFILTERSPEC (constant)">Error::WSA_QOS_EPSFILTERSPEC</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EPSFLOWSPEC-constant" title="Msf::Post::Windows::Error::WSA_QOS_EPSFLOWSPEC (constant)">Error::WSA_QOS_EPSFLOWSPEC</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_ESDMODEOBJ-constant" title="Msf::Post::Windows::Error::WSA_QOS_ESDMODEOBJ (constant)">Error::WSA_QOS_ESDMODEOBJ</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_ESERVICETYPE-constant" title="Msf::Post::Windows::Error::WSA_QOS_ESERVICETYPE (constant)">Error::WSA_QOS_ESERVICETYPE</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_ESHAPERATEOBJ-constant" title="Msf::Post::Windows::Error::WSA_QOS_ESHAPERATEOBJ (constant)">Error::WSA_QOS_ESHAPERATEOBJ</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_EUNKNOWNPSOBJ-constant" title="Msf::Post::Windows::Error::WSA_QOS_EUNKNOWNPSOBJ (constant)">Error::WSA_QOS_EUNKNOWNPSOBJ</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_GENERIC_ERROR-constant" title="Msf::Post::Windows::Error::WSA_QOS_GENERIC_ERROR (constant)">Error::WSA_QOS_GENERIC_ERROR</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_NO_RECEIVERS-constant" title="Msf::Post::Windows::Error::WSA_QOS_NO_RECEIVERS (constant)">Error::WSA_QOS_NO_RECEIVERS</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_NO_SENDERS-constant" title="Msf::Post::Windows::Error::WSA_QOS_NO_SENDERS (constant)">Error::WSA_QOS_NO_SENDERS</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_POLICY_FAILURE-constant" title="Msf::Post::Windows::Error::WSA_QOS_POLICY_FAILURE (constant)">Error::WSA_QOS_POLICY_FAILURE</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_RECEIVERS-constant" title="Msf::Post::Windows::Error::WSA_QOS_RECEIVERS (constant)">Error::WSA_QOS_RECEIVERS</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_REQUEST_CONFIRMED-constant" title="Msf::Post::Windows::Error::WSA_QOS_REQUEST_CONFIRMED (constant)">Error::WSA_QOS_REQUEST_CONFIRMED</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_RESERVED_PETYPE-constant" title="Msf::Post::Windows::Error::WSA_QOS_RESERVED_PETYPE (constant)">Error::WSA_QOS_RESERVED_PETYPE</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_SENDERS-constant" title="Msf::Post::Windows::Error::WSA_QOS_SENDERS (constant)">Error::WSA_QOS_SENDERS</a></span>, <span class='object_link'><a href="Error.html#WSA_QOS_TRAFFIC_CTRL_ERROR-constant" title="Msf::Post::Windows::Error::WSA_QOS_TRAFFIC_CTRL_ERROR (constant)">Error::WSA_QOS_TRAFFIC_CTRL_ERROR</a></span>, <span class='object_link'><a href="Error.html#WX86_ERROR-constant" title="Msf::Post::Windows::Error::WX86_ERROR (constant)">Error::WX86_ERROR</a></span>, <span class='object_link'><a href="Error.html#WX86_WARNING-constant" title="Msf::Post::Windows::Error::WX86_WARNING (constant)">Error::WX86_WARNING</a></span>, <span class='object_link'><a href="Error.html#XMLDSIG_ERROR-constant" title="Msf::Post::Windows::Error::XMLDSIG_ERROR (constant)">Error::XMLDSIG_ERROR</a></span>, <span class='object_link'><a href="Error.html#XML_ENCODING_MISMATCH-constant" title="Msf::Post::Windows::Error::XML_ENCODING_MISMATCH (constant)">Error::XML_ENCODING_MISMATCH</a></span>, <span class='object_link'><a href="Error.html#XML_PARSE_ERROR-constant" title="Msf::Post::Windows::Error::XML_PARSE_ERROR (constant)">Error::XML_PARSE_ERROR</a></span></p>
<h2>
Instance Method Summary
<small><a href="#" class="summary_toggle">collapse</a></small>
</h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#advapi32-instance_method" title="#advapi32 (instance method)">#<strong>advapi32</strong> &#x21d2; Object </a>
</span>
<span class="summary_desc"><div class='inline'></div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#close_service_handle-instance_method" title="#close_service_handle (instance method)">#<strong>close_service_handle</strong>(handle) &#x21d2; Object </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Call advapi32.dll!CloseServiceHandle on the given handle.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#each_service-instance_method" title="#each_service (instance method)">#<strong>each_service</strong> {|String| ... } &#x21d2; Array&lt;Hash&gt; </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Yield each service name on the remote host.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#initialize-instance_method" title="#initialize (instance method)">#<strong>initialize</strong>(info = {}) &#x21d2; Object </a>
</span>
<span class="summary_desc"><div class='inline'></div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#open_sc_manager-instance_method" title="#open_sc_manager (instance method)">#<strong>open_sc_manager</strong>(opts = {}) {|manager| ... } &#x21d2; Integer </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Open the service manager with advapi32.dll!OpenSCManagerA on the given host or the local machine if :host option is nil.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#open_service_handle-instance_method" title="#open_service_handle (instance method)">#<strong>open_service_handle</strong>(manager, name, access) {|manager| ... } &#x21d2; Integer </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Open the service with advapi32.dll!OpenServiceA on the target manager.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#parse_service_status_struct-instance_method" title="#parse_service_status_struct (instance method)">#<strong>parse_service_status_struct</strong>(lpServiceStatus) &#x21d2; Hash </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Parses out a SERVICE_STATUS struct from the lpServiceStatus out parameter.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_change_config-instance_method" title="#service_change_config (instance method)">#<strong>service_change_config</strong>(name, opts, server = nil) &#x21d2; GetLastError </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Modify a service on the session host.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_change_startup-instance_method" title="#service_change_startup (instance method)">#<strong>service_change_startup</strong>(name, mode, server = nil) &#x21d2; Object </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Changes a given service startup mode, name must be provided and the mode.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_create-instance_method" title="#service_create (instance method)">#<strong>service_create</strong>(name, opts, server = nil) &#x21d2; GetLastError </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Create a service that runs <code>executable_on_host</code> on the session host.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_delete-instance_method" title="#service_delete (instance method)">#<strong>service_delete</strong>(name, server = nil) &#x21d2; Object </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Delete a service.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_exists%3F-instance_method" title="#service_exists? (instance method)">#<strong>service_exists?</strong>(service) &#x21d2; Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Check if the specified Windows service exists.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_info-instance_method" title="#service_info (instance method)">#<strong>service_info</strong>(name) &#x21d2; Hash<sup>?</sup> </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Get Windows Service information.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_list-instance_method" title="#service_list (instance method)">#<strong>service_list</strong> &#x21d2; Array&lt;Hash&gt; </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>List all Windows Services present.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_restart-instance_method" title="#service_restart (instance method)">#<strong>service_restart</strong>(name, start_type = START_TYPE_AUTO, server = nil, should_retry = true) &#x21d2; Boolean </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Performs an aggressive service (re)start If service is disabled it will re-enable If service is running it will stop and restart.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_start-instance_method" title="#service_start (instance method)">#<strong>service_start</strong>(name, server = nil) &#x21d2; Integer </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Start a service.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_status-instance_method" title="#service_status (instance method)">#<strong>service_status</strong>(name, server = nil) &#x21d2; Object </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Query Service Status.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#service_stop-instance_method" title="#service_stop (instance method)">#<strong>service_stop</strong>(name, server = nil) &#x21d2; Integer </a>
</span>
<span class="summary_desc"><div class='inline'>
<p>Stop a service.</p>
</div></span>
</li>
</ul>
<h3 class="inherited">Methods included from <span class='object_link'><a href="Registry.html" title="Msf::Post::Windows::Registry (module)">Registry</a></span></h3>
<p class="inherited"><span class='object_link'><a href="Registry.html#meterpreter_registry_createkey-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_createkey (method)">#meterpreter_registry_createkey</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_deletekey-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_deletekey (method)">#meterpreter_registry_deletekey</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_deleteval-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_deleteval (method)">#meterpreter_registry_deleteval</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_enumkeys-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_enumkeys (method)">#meterpreter_registry_enumkeys</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_enumvals-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_enumvals (method)">#meterpreter_registry_enumvals</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_getvaldata-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_getvaldata (method)">#meterpreter_registry_getvaldata</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_getvalinfo-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_getvalinfo (method)">#meterpreter_registry_getvalinfo</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_key_exist%3F-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_key_exist? (method)">#meterpreter_registry_key_exist?</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_loadkey-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_loadkey (method)">#meterpreter_registry_loadkey</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_perms-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_perms (method)">#meterpreter_registry_perms</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_setvaldata-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_setvaldata (method)">#meterpreter_registry_setvaldata</a></span>, <span class='object_link'><a href="Registry.html#meterpreter_registry_unloadkey-instance_method" title="Msf::Post::Windows::Registry#meterpreter_registry_unloadkey (method)">#meterpreter_registry_unloadkey</a></span>, <span class='object_link'><a href="Registry.html#normalize_key-instance_method" title="Msf::Post::Windows::Registry#normalize_key (method)">#normalize_key</a></span>, <span class='object_link'><a href="Registry.html#registry_createkey-instance_method" title="Msf::Post::Windows::Registry#registry_createkey (method)">#registry_createkey</a></span>, <span class='object_link'><a href="Registry.html#registry_deletekey-instance_method" title="Msf::Post::Windows::Registry#registry_deletekey (method)">#registry_deletekey</a></span>, <span class='object_link'><a href="Registry.html#registry_deleteval-instance_method" title="Msf::Post::Windows::Registry#registry_deleteval (method)">#registry_deleteval</a></span>, <span class='object_link'><a href="Registry.html#registry_enumkeys-instance_method" title="Msf::Post::Windows::Registry#registry_enumkeys (method)">#registry_enumkeys</a></span>, <span class='object_link'><a href="Registry.html#registry_enumvals-instance_method" title="Msf::Post::Windows::Registry#registry_enumvals (method)">#registry_enumvals</a></span>, <span class='object_link'><a href="Registry.html#registry_getvaldata-instance_method" title="Msf::Post::Windows::Registry#registry_getvaldata (method)">#registry_getvaldata</a></span>, <span class='object_link'><a href="Registry.html#registry_getvalinfo-instance_method" title="Msf::Post::Windows::Registry#registry_getvalinfo (method)">#registry_getvalinfo</a></span>, <span class='object_link'><a href="Registry.html#registry_hive_lookup-instance_method" title="Msf::Post::Windows::Registry#registry_hive_lookup (method)">#registry_hive_lookup</a></span>, <span class='object_link'><a href="Registry.html#registry_key_exist%3F-instance_method" title="Msf::Post::Windows::Registry#registry_key_exist? (method)">#registry_key_exist?</a></span>, <span class='object_link'><a href="Registry.html#registry_loadkey-instance_method" title="Msf::Post::Windows::Registry#registry_loadkey (method)">#registry_loadkey</a></span>, <span class='object_link'><a href="Registry.html#registry_setvaldata-instance_method" title="Msf::Post::Windows::Registry#registry_setvaldata (method)">#registry_setvaldata</a></span>, <span class='object_link'><a href="Registry.html#registry_unloadkey-instance_method" title="Msf::Post::Windows::Registry#registry_unloadkey (method)">#registry_unloadkey</a></span>, <span class='object_link'><a href="Registry.html#session_has_registry_ext-instance_method" title="Msf::Post::Windows::Registry#session_has_registry_ext (method)">#session_has_registry_ext</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_cmd-instance_method" title="Msf::Post::Windows::Registry#shell_registry_cmd (method)">#shell_registry_cmd</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_cmd_result-instance_method" title="Msf::Post::Windows::Registry#shell_registry_cmd_result (method)">#shell_registry_cmd_result</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_createkey-instance_method" title="Msf::Post::Windows::Registry#shell_registry_createkey (method)">#shell_registry_createkey</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_deletekey-instance_method" title="Msf::Post::Windows::Registry#shell_registry_deletekey (method)">#shell_registry_deletekey</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_deleteval-instance_method" title="Msf::Post::Windows::Registry#shell_registry_deleteval (method)">#shell_registry_deleteval</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_enumkeys-instance_method" title="Msf::Post::Windows::Registry#shell_registry_enumkeys (method)">#shell_registry_enumkeys</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_enumvals-instance_method" title="Msf::Post::Windows::Registry#shell_registry_enumvals (method)">#shell_registry_enumvals</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_getvaldata-instance_method" title="Msf::Post::Windows::Registry#shell_registry_getvaldata (method)">#shell_registry_getvaldata</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_getvalinfo-instance_method" title="Msf::Post::Windows::Registry#shell_registry_getvalinfo (method)">#shell_registry_getvalinfo</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_key_exist%3F-instance_method" title="Msf::Post::Windows::Registry#shell_registry_key_exist? (method)">#shell_registry_key_exist?</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_loadkey-instance_method" title="Msf::Post::Windows::Registry#shell_registry_loadkey (method)">#shell_registry_loadkey</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_setvaldata-instance_method" title="Msf::Post::Windows::Registry#shell_registry_setvaldata (method)">#shell_registry_setvaldata</a></span>, <span class='object_link'><a href="Registry.html#shell_registry_unloadkey-instance_method" title="Msf::Post::Windows::Registry#shell_registry_unloadkey (method)">#shell_registry_unloadkey</a></span>, <span class='object_link'><a href="Registry.html#split_key-instance_method" title="Msf::Post::Windows::Registry#split_key (method)">#split_key</a></span></p>
<h3 class="inherited">Methods included from <span class='object_link'><a href="CliParse.html" title="Msf::Post::Windows::CliParse (module)">CliParse</a></span></h3>
<p class="inherited"><span class='object_link'><a href="CliParse.html#win_parse_error-instance_method" title="Msf::Post::Windows::CliParse#win_parse_error (method)">#win_parse_error</a></span>, <span class='object_link'><a href="CliParse.html#win_parse_results-instance_method" title="Msf::Post::Windows::CliParse#win_parse_results (method)">#win_parse_results</a></span></p>
<div id="instance_method_details" class="method_details_list">
<h2>Instance Method Details</h2>
<div class="method_details first">
<h3 class="signature first" id="advapi32-instance_method">
#<strong>advapi32</strong> &#x21d2; <tt>Object</tt>
</h3><table class="source_code">
<tr>
<td>
<pre class="lines">
87
88
89</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 87</span>
<span class='kw'>def</span> <span class='id identifier rubyid_advapi32'>advapi32</span>
<span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_railgun'>railgun</span><span class='period'>.</span><span class='id identifier rubyid_advapi32'>advapi32</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="close_service_handle-instance_method">
#<strong>close_service_handle</strong>(handle) &#x21d2; <tt>Object</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Call advapi32.dll!CloseServiceHandle on the given handle</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
140
141
142
143
144</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 140</span>
<span class='kw'>def</span> <span class='id identifier rubyid_close_service_handle'>close_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_handle'>handle</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='id identifier rubyid_handle'>handle</span>
<span class='id identifier rubyid_advapi32'>advapi32</span><span class='period'>.</span><span class='const'>CloseServiceHandle</span><span class='lparen'>(</span><span class='id identifier rubyid_handle'>handle</span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="each_service-instance_method">
#<strong>each_service</strong> {|String| ... } &#x21d2; <tt>Array&lt;Hash&gt;</tt>
</h3><div class="docstring">
<div class="discussion">
<div class="note todo">
<strong>TODO:</strong>
<div class='inline'>
<p>Allow operating on a remote host</p>
</div>
</div>
<p>Yield each service name on the remote host</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Yields:</p>
<ul class="yield">
<li>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>Case-sensitive name of a service</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Array&lt;Hash&gt;</tt>)</span>
&mdash;
<div class='inline'>
<p>Array of Hashes containing Service details. May contain the following keys:</p>
<ul><li>
<p>:name</p>
</li></ul>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 184</span>
<span class='kw'>def</span> <span class='id identifier rubyid_each_service'>each_service</span><span class='lparen'>(</span><span class='op'>&amp;</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_commands'>commands</span><span class='period'>.</span><span class='id identifier rubyid_include?'>include?</span><span class='lparen'>(</span><span class='const'><span class='object_link'><a href="../../../Rex.html" title="Rex (module)">Rex</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post.html" title="Rex::Post (module)">Post</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter.html" title="Rex::Post::Meterpreter (module)">Meterpreter</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions.html" title="Rex::Post::Meterpreter::Extensions (module)">Extensions</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions/Stdapi.html" title="Rex::Post::Meterpreter::Extensions::Stdapi (module)">Stdapi</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions/Stdapi.html#COMMAND_ID_STDAPI_REGISTRY_ENUM_KEY-constant" title="Rex::Post::Meterpreter::Extensions::Stdapi::COMMAND_ID_STDAPI_REGISTRY_ENUM_KEY (constant)">COMMAND_ID_STDAPI_REGISTRY_ENUM_KEY</a></span></span><span class='rparen'>)</span>
<span class='kw'>begin</span>
<span class='kw'>return</span> <span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_extapi'>extapi</span><span class='period'>.</span><span class='id identifier rubyid_service'>service</span><span class='period'>.</span><span class='id identifier rubyid_enumerate'>enumerate</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span><span class='lparen'>(</span><span class='op'>&amp;</span><span class='id identifier rubyid_block'>block</span><span class='rparen'>)</span>
<span class='kw'>rescue</span> <span class='const'><span class='object_link'><a href="../../../Rex.html" title="Rex (module)">Rex</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post.html" title="Rex::Post (module)">Post</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter.html" title="Rex::Post::Meterpreter (module)">Meterpreter</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/RequestError.html" title="Rex::Post::Meterpreter::RequestError (class)">RequestError</a></span></span> <span class='op'>=&gt;</span> <span class='id identifier rubyid_e'>e</span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Request Error </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_e'>e</span><span class='embexpr_end'>}</span><span class='tstring_content'> Falling back to registry technique</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>end</span>
<span class='id identifier rubyid_serviceskey'>serviceskey</span> <span class='op'>=</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>HKLM\\SYSTEM\\CurrentControlSet\\Services</span><span class='tstring_end'>&#39;</span></span>
<span class='id identifier rubyid_keys'>keys</span> <span class='op'>=</span> <span class='id identifier rubyid_registry_enumkeys'>registry_enumkeys</span><span class='lparen'>(</span><span class='id identifier rubyid_serviceskey'>serviceskey</span><span class='rparen'>)</span>
<span class='id identifier rubyid_keys'>keys</span><span class='period'>.</span><span class='id identifier rubyid_each'>each</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_sk'>sk</span><span class='op'>|</span>
<span class='id identifier rubyid_service_type'>service_type</span> <span class='op'>=</span> <span class='id identifier rubyid_registry_getvaldata'>registry_getvaldata</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_serviceskey'>serviceskey</span><span class='embexpr_end'>}</span><span class='tstring_content'>\\</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_sk'>sk</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Type</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span>
<span class='kw'>next</span> <span class='kw'>if</span> <span class='id identifier rubyid_service_type'>service_type</span><span class='period'>.</span><span class='id identifier rubyid_empty?'>empty?</span>
<span class='id identifier rubyid_service_type'>service_type</span> <span class='op'>=</span> <span class='lparen'>(</span><span class='id identifier rubyid_service_type'>service_type</span><span class='period'>.</span><span class='id identifier rubyid_starts_with?'>starts_with?</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>0x</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='op'>?</span> <span class='id identifier rubyid_service_type'>service_type</span><span class='period'>.</span><span class='id identifier rubyid_to_i'>to_i</span><span class='lparen'>(</span><span class='int'>16</span><span class='rparen'>)</span> <span class='op'>:</span> <span class='id identifier rubyid_service_type'>service_type</span><span class='period'>.</span><span class='id identifier rubyid_to_i'>to_i</span><span class='rparen'>)</span>
<span class='kw'>next</span> <span class='kw'>unless</span> <span class='lbracket'>[</span>
<span class='const'><span class='object_link'><a href="#SERVICE_WIN32_OWN_PROCESS-constant" title="Msf::Post::Windows::Services::SERVICE_WIN32_OWN_PROCESS (constant)">SERVICE_WIN32_OWN_PROCESS</a></span></span><span class='comma'>,</span>
<span class='const'><span class='object_link'><a href="#SERVICE_WIN32_OWN_PROCESS_INTERACTIVE-constant" title="Msf::Post::Windows::Services::SERVICE_WIN32_OWN_PROCESS_INTERACTIVE (constant)">SERVICE_WIN32_OWN_PROCESS_INTERACTIVE</a></span></span><span class='comma'>,</span>
<span class='const'><span class='object_link'><a href="#SERVICE_WIN32_SHARE_PROCESS-constant" title="Msf::Post::Windows::Services::SERVICE_WIN32_SHARE_PROCESS (constant)">SERVICE_WIN32_SHARE_PROCESS</a></span></span><span class='comma'>,</span>
<span class='const'><span class='object_link'><a href="#SERVICE_WIN32_SHARE_PROCESS_INTERACTIVE-constant" title="Msf::Post::Windows::Services::SERVICE_WIN32_SHARE_PROCESS_INTERACTIVE (constant)">SERVICE_WIN32_SHARE_PROCESS_INTERACTIVE</a></span></span>
<span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_include?'>include?</span><span class='lparen'>(</span><span class='id identifier rubyid_service_type'>service_type</span><span class='rparen'>)</span>
<span class='kw'>yield</span> <span class='id identifier rubyid_sk'>sk</span>
<span class='kw'>end</span>
<span class='id identifier rubyid_keys'>keys</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="initialize-instance_method">
#<strong>initialize</strong>(info = {}) &#x21d2; <tt>Object</tt>
</h3><table class="source_code">
<tr>
<td>
<pre class="lines">
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 70</span>
<span class='kw'>def</span> <span class='id identifier rubyid_initialize'>initialize</span><span class='lparen'>(</span><span class='id identifier rubyid_info'>info</span> <span class='op'>=</span> <span class='lbrace'>{</span><span class='rbrace'>}</span><span class='rparen'>)</span>
<span class='kw'>super</span><span class='lparen'>(</span>
<span class='id identifier rubyid_update_info'>update_info</span><span class='lparen'>(</span>
<span class='id identifier rubyid_info'>info</span><span class='comma'>,</span>
<span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Compat</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='lbrace'>{</span>
<span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Meterpreter</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='lbrace'>{</span>
<span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Commands</span><span class='tstring_end'>&#39;</span></span> <span class='op'>=&gt;</span> <span class='qwords_beg'>%w[</span><span class='words_sep'>
</span><span class='tstring_content'>extapi_service_enum</span><span class='words_sep'>
</span><span class='tstring_content'>extapi_service_query</span><span class='words_sep'>
</span><span class='tstring_content'>stdapi_railgun_api</span><span class='words_sep'>
</span><span class='tstring_end'>]</span></span>
<span class='rbrace'>}</span>
<span class='rbrace'>}</span>
<span class='rparen'>)</span>
<span class='rparen'>)</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="open_sc_manager-instance_method">
#<strong>open_sc_manager</strong>(opts = {}) {|manager| ... } &#x21d2; <tt>Integer</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Open the service manager with advapi32.dll!OpenSCManagerA on the given host or the local machine if :host option is nil. If called with a block, yields the manager and closes it when the block returns.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>opts</span>
<span class='type'>(<tt>Hash</tt>)</span>
<em class="default">(defaults to: <tt>{}</tt>)</em>
</li>
</ul>
<p class="tag_title">Options Hash (<tt>opts</tt>):</p>
<ul class="option">
<li>
<span class="name">:host</span>
<span class="type">(<tt>String</tt>)</span>
<span class="default">
&mdash; default:
<tt>nil</tt>
</span>
&mdash; <div class='inline'>
<p>The host on which to open the service manager. May be a hostname or IP address.</p>
</div>
</li>
<li>
<span class="name">:access</span>
<span class="type">(<tt>Integer</tt>)</span>
<span class="default">
&mdash; default:
<tt>0xF003F</tt>
</span>
&mdash; <div class='inline'>
<p>Bitwise-or of the SC_MANAGER_* constants (see <a href="http://msdn.microsoft.com/en-us/library/windows/desktop/ms685981(v=vs.85).aspx" target="_parent" title="http://msdn.microsoft.com/en-us/library/windows/desktop/ms685981(v=vs.85).aspx">http://msdn.microsoft.com/en-us/library/windows/desktop/ms685981(v=vs.85).aspx</a>)</p>
</div>
</li>
</ul>
<p class="tag_title">Yields:</p>
<ul class="yield">
<li>
<span class='type'>(<tt>manager</tt>)</span>
&mdash;
<div class='inline'>
<p>Gives the block a manager handle as returned by advapi32.dll!OpenSCManagerA. When the block returns, the handle will be closed with <span class='object_link'><a href="#close_service_handle-instance_method" title="Msf::Post::Windows::Services#close_service_handle (method)">#close_service_handle</a></span>.</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Integer</tt>)</span>
&mdash;
<div class='inline'>
<p>Opaque Windows handle SC_HANDLE as returned by OpenSCManagerA()</p>
</div>
</li>
</ul>
<p class="tag_title">Raises:</p>
<ul class="raise">
<li>
<span class='type'>(<tt>RuntimeError</tt>)</span>
&mdash;
<div class='inline'>
<p>if OpenSCManagerA returns a NULL handle</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 111</span>
<span class='kw'>def</span> <span class='id identifier rubyid_open_sc_manager'>open_sc_manager</span><span class='lparen'>(</span><span class='id identifier rubyid_opts'>opts</span> <span class='op'>=</span> <span class='lbrace'>{</span><span class='rbrace'>}</span><span class='rparen'>)</span>
<span class='id identifier rubyid_host'>host</span> <span class='op'>=</span> <span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:host</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='kw'>nil</span>
<span class='id identifier rubyid_access'>access</span> <span class='op'>=</span> <span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:access</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SC_MANAGER_ALL_ACCESS</span><span class='tstring_end'>&#39;</span></span>
<span class='id identifier rubyid_machine_str'>machine_str</span> <span class='op'>=</span> <span class='id identifier rubyid_host'>host</span> <span class='op'>?</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>\\\\</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_host'>host</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span> <span class='op'>:</span> <span class='kw'>nil</span>
<span class='comment'># SC_HANDLE WINAPI OpenSCManager(
</span> <span class='comment'># _In_opt_ LPCTSTR lpMachineName,
</span> <span class='comment'># _In_opt_ LPCTSTR lpDatabaseName,
</span> <span class='comment'># _In_ DWORD dwDesiredAccess
</span> <span class='comment'># );
</span> <span class='id identifier rubyid_manag'>manag</span> <span class='op'>=</span> <span class='id identifier rubyid_advapi32'>advapi32</span><span class='period'>.</span><span class='const'>OpenSCManagerA</span><span class='lparen'>(</span><span class='id identifier rubyid_machine_str'>machine_str</span><span class='comma'>,</span> <span class='kw'>nil</span><span class='comma'>,</span> <span class='id identifier rubyid_access'>access</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='lparen'>(</span><span class='id identifier rubyid_manag'>manag</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span> <span class='op'>==</span> <span class='int'>0</span><span class='rparen'>)</span>
<span class='id identifier rubyid_raise'>raise</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Unable to open service manager: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_manag'>manag</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>ErrorMessage</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span>
<span class='kw'>end</span>
<span class='kw'>if</span> <span class='id identifier rubyid_block_given?'>block_given?</span>
<span class='kw'>begin</span>
<span class='kw'>yield</span> <span class='id identifier rubyid_manag'>manag</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>ensure</span>
<span class='id identifier rubyid_close_service_handle'>close_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_manag'>manag</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>else</span>
<span class='kw'>return</span> <span class='id identifier rubyid_manag'>manag</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="open_service_handle-instance_method">
#<strong>open_service_handle</strong>(manager, name, access) {|manager| ... } &#x21d2; <tt>Integer</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Open the service with advapi32.dll!OpenServiceA on the target manager</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Yields:</p>
<ul class="yield">
<li>
<span class='type'>(<tt>manager</tt>)</span>
&mdash;
<div class='inline'>
<p>Gives the block a service handle as returned by advapi32.dll!OpenServiceA. When the block returns, the handle will be closed with <span class='object_link'><a href="#close_service_handle-instance_method" title="Msf::Post::Windows::Services#close_service_handle (method)">#close_service_handle</a></span>.</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Integer</tt>)</span>
&mdash;
<div class='inline'>
<p>Opaque Windows handle SC_HANDLE as returned by OpenServiceA()</p>
</div>
</li>
</ul>
<p class="tag_title">Raises:</p>
<ul class="raise">
<li>
<span class='type'>(<tt>RuntimeError</tt>)</span>
&mdash;
<div class='inline'>
<p>if OpenServiceA failed</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 157</span>
<span class='kw'>def</span> <span class='id identifier rubyid_open_service_handle'>open_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_manager'>manager</span><span class='comma'>,</span> <span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_access'>access</span><span class='rparen'>)</span>
<span class='id identifier rubyid_handle'>handle</span> <span class='op'>=</span> <span class='id identifier rubyid_advapi32'>advapi32</span><span class='period'>.</span><span class='const'>OpenServiceA</span><span class='lparen'>(</span><span class='id identifier rubyid_manager'>manager</span><span class='comma'>,</span> <span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_access'>access</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='lparen'>(</span><span class='id identifier rubyid_handle'>handle</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span> <span class='op'>==</span> <span class='int'>0</span><span class='rparen'>)</span>
<span class='id identifier rubyid_raise'>raise</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Could not open service. OpenServiceA error: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_handle'>handle</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>ErrorMessage</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span>
<span class='kw'>end</span>
<span class='kw'>if</span> <span class='id identifier rubyid_block_given?'>block_given?</span>
<span class='kw'>begin</span>
<span class='kw'>yield</span> <span class='id identifier rubyid_handle'>handle</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>ensure</span>
<span class='id identifier rubyid_close_service_handle'>close_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_handle'>handle</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>else</span>
<span class='kw'>return</span> <span class='id identifier rubyid_handle'>handle</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="parse_service_status_struct-instance_method">
#<strong>parse_service_status_struct</strong>(lpServiceStatus) &#x21d2; <tt>Hash</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Parses out a SERVICE_STATUS struct from the lpServiceStatus out parameter</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>lpServiceStatus</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>the latest status of calling service</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Hash</tt>)</span>
&mdash;
<div class='inline'>
<p>Containing SERVICE_STATUS values</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 591</span>
<span class='kw'>def</span> <span class='id identifier rubyid_parse_service_status_struct'>parse_service_status_struct</span><span class='lparen'>(</span><span class='id identifier rubyid_lpServiceStatus'>lpServiceStatus</span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='kw'>unless</span> <span class='id identifier rubyid_lpServiceStatus'>lpServiceStatus</span>
<span class='id identifier rubyid_vals'>vals</span> <span class='op'>=</span> <span class='id identifier rubyid_lpServiceStatus'>lpServiceStatus</span><span class='period'>.</span><span class='id identifier rubyid_unpack'>unpack</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>V*</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span>
<span class='lbrace'>{</span>
<span class='label'>type:</span> <span class='id identifier rubyid_vals'>vals</span><span class='lbracket'>[</span><span class='int'>0</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='label'>state:</span> <span class='id identifier rubyid_vals'>vals</span><span class='lbracket'>[</span><span class='int'>1</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='label'>controls_accepted:</span> <span class='id identifier rubyid_vals'>vals</span><span class='lbracket'>[</span><span class='int'>2</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='label'>win32_exit_code:</span> <span class='id identifier rubyid_vals'>vals</span><span class='lbracket'>[</span><span class='int'>3</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='label'>service_exit_code:</span> <span class='id identifier rubyid_vals'>vals</span><span class='lbracket'>[</span><span class='int'>4</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='label'>check_point:</span> <span class='id identifier rubyid_vals'>vals</span><span class='lbracket'>[</span><span class='int'>5</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='label'>wait_hint:</span> <span class='id identifier rubyid_vals'>vals</span><span class='lbracket'>[</span><span class='int'>6</span><span class='rbracket'>]</span>
<span class='rbrace'>}</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_change_config-instance_method">
#<strong>service_change_config</strong>(name, opts, server = nil) &#x21d2; <tt>GetLastError</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Modify a service on the session host</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>name</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>Name of the service to be used as the key</p>
</div>
</li>
<li>
<span class='name'>opts</span>
<span class='type'>(<tt>Hash</tt>)</span>
&mdash;
<div class='inline'>
<p>Settings to be modified</p>
</div>
</li>
<li>
<span class='name'>server</span>
<span class='type'>(<tt>String</tt>, <tt>nil</tt>)</span>
<em class="default">(defaults to: <tt>nil</tt>)</em>
&mdash;
<div class='inline'>
<p>A hostname or IP address. Default is the remote localhost</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>GetLastError</tt>)</span>
&mdash;
<div class='inline'>
<p>0 if the function succeeds</p>
</div>
</li>
</ul>
<p class="tag_title">Raises:</p>
<ul class="raise">
<li>
<span class='type'>(<tt>RuntimeError</tt>)</span>
&mdash;
<div class='inline'>
<p>if OpenSCManagerA failed</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 364</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_change_config'>service_change_config</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_opts'>opts</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='rparen'>)</span>
<span class='id identifier rubyid_open_sc_manager'>open_sc_manager</span><span class='lparen'>(</span><span class='label'>host:</span> <span class='id identifier rubyid_server'>server</span><span class='comma'>,</span> <span class='label'>access:</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SC_MANAGER_CONNECT</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_manager'>manager</span><span class='op'>|</span>
<span class='id identifier rubyid_open_service_handle'>open_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_manager'>manager</span><span class='comma'>,</span> <span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SERVICE_CHANGE_CONFIG</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='op'>|</span>
<span class='id identifier rubyid_ret'>ret</span> <span class='op'>=</span> <span class='id identifier rubyid_advapi32'>advapi32</span><span class='period'>.</span><span class='const'>ChangeServiceConfigA</span><span class='lparen'>(</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:service_type</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SERVICE_NO_CHANGE</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:starttype</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SERVICE_NO_CHANGE</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:error_control</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SERVICE_NO_CHANGE</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:path</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='kw'>nil</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:logroup</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='kw'>nil</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:tag_id</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='kw'>nil</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:dependencies</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='kw'>nil</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:startname</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='kw'>nil</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:password</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='kw'>nil</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:display</span><span class='rbracket'>]</span> <span class='op'>||</span> <span class='kw'>nil</span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='id identifier rubyid_ret'>ret</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>GetLastError</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>end</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_change_startup-instance_method">
#<strong>service_change_startup</strong>(name, mode, server = nil) &#x21d2; <tt>Object</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Changes a given service startup mode, name must be provided and the mode.</p>
<p>Mode is a string with either auto, manual or disable for the corresponding setting. The name of the service is case sensitive.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Raises:</p>
<ul class="raise">
<li>
<span class='type'>(<tt>RuntimeError</tt>)</span>
&mdash;
<div class='inline'>
<p>if an invalid startup mode is provided in the mode parameter</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 320</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_change_startup'>service_change_startup</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_mode'>mode</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='id identifier rubyid_mode'>mode</span><span class='period'>.</span><span class='id identifier rubyid_is_a?'>is_a?</span> <span class='const'>Integer</span>
<span class='id identifier rubyid_startup_number'>startup_number</span> <span class='op'>=</span> <span class='id identifier rubyid_mode'>mode</span>
<span class='kw'>else</span>
<span class='kw'>case</span> <span class='id identifier rubyid_mode'>mode</span><span class='period'>.</span><span class='id identifier rubyid_downcase'>downcase</span>
<span class='kw'>when</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>boot</span><span class='tstring_end'>&#39;</span></span> <span class='kw'>then</span> <span class='id identifier rubyid_startup_number'>startup_number</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="#START_TYPE_BOOT-constant" title="Msf::Post::Windows::Services::START_TYPE_BOOT (constant)">START_TYPE_BOOT</a></span></span>
<span class='kw'>when</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>system</span><span class='tstring_end'>&#39;</span></span> <span class='kw'>then</span> <span class='id identifier rubyid_startup_number'>startup_number</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="#START_TYPE_SYSTEM-constant" title="Msf::Post::Windows::Services::START_TYPE_SYSTEM (constant)">START_TYPE_SYSTEM</a></span></span>
<span class='kw'>when</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>auto</span><span class='tstring_end'>&#39;</span></span> <span class='kw'>then</span> <span class='id identifier rubyid_startup_number'>startup_number</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="#START_TYPE_AUTO-constant" title="Msf::Post::Windows::Services::START_TYPE_AUTO (constant)">START_TYPE_AUTO</a></span></span>
<span class='kw'>when</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>manual</span><span class='tstring_end'>&#39;</span></span> <span class='kw'>then</span> <span class='id identifier rubyid_startup_number'>startup_number</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="#START_TYPE_MANUAL-constant" title="Msf::Post::Windows::Services::START_TYPE_MANUAL (constant)">START_TYPE_MANUAL</a></span></span>
<span class='kw'>when</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>disable</span><span class='tstring_end'>&#39;</span></span> <span class='kw'>then</span> <span class='id identifier rubyid_startup_number'>startup_number</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="#START_TYPE_DISABLED-constant" title="Msf::Post::Windows::Services::START_TYPE_DISABLED (constant)">START_TYPE_DISABLED</a></span></span>
<span class='kw'>else</span>
<span class='id identifier rubyid_raise'>raise</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Invalid Startup Mode: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_mode'>mode</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span>
<span class='kw'>end</span>
<span class='kw'>end</span>
<span class='kw'>if</span> <span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_commands'>commands</span><span class='period'>.</span><span class='id identifier rubyid_include?'>include?</span><span class='lparen'>(</span><span class='const'><span class='object_link'><a href="../../../Rex.html" title="Rex (module)">Rex</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post.html" title="Rex::Post (module)">Post</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter.html" title="Rex::Post::Meterpreter (module)">Meterpreter</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions.html" title="Rex::Post::Meterpreter::Extensions (module)">Extensions</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions/Stdapi.html" title="Rex::Post::Meterpreter::Extensions::Stdapi (module)">Stdapi</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions/Stdapi.html#COMMAND_ID_STDAPI_RAILGUN_API-constant" title="Rex::Post::Meterpreter::Extensions::Stdapi::COMMAND_ID_STDAPI_RAILGUN_API (constant)">COMMAND_ID_STDAPI_RAILGUN_API</a></span></span><span class='rparen'>)</span>
<span class='kw'>begin</span>
<span class='id identifier rubyid_ret'>ret</span> <span class='op'>=</span> <span class='id identifier rubyid_service_change_config'>service_change_config</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='lbrace'>{</span> <span class='label'>starttype:</span> <span class='id identifier rubyid_startup_number'>startup_number</span> <span class='rbrace'>}</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='lparen'>(</span><span class='id identifier rubyid_ret'>ret</span> <span class='op'>==</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SUCCESS-constant" title="Msf::Post::Windows::Error::SUCCESS (constant)">SUCCESS</a></span></span><span class='rparen'>)</span>
<span class='kw'>rescue</span> <span class='const'><span class='object_link'><a href="../../../Rex.html" title="Rex (module)">Rex</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post.html" title="Rex::Post (module)">Post</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter.html" title="Rex::Post::Meterpreter (module)">Meterpreter</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/RequestError.html" title="Rex::Post::Meterpreter::RequestError (class)">RequestError</a></span></span> <span class='op'>=&gt;</span> <span class='id identifier rubyid_e'>e</span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Request Error </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_e'>e</span><span class='embexpr_end'>}</span><span class='tstring_content'> Falling back to registry technique</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>end</span>
<span class='kw'>unless</span> <span class='id identifier rubyid_server'>server</span><span class='period'>.</span><span class='id identifier rubyid_blank?'>blank?</span>
<span class='id identifier rubyid_raise'>raise</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Could not change service startup mode. Operation not supported on remote hosts when using registry technique.</span><span class='tstring_end'>&#39;</span></span>
<span class='kw'>end</span>
<span class='id identifier rubyid_servicekey'>servicekey</span> <span class='op'>=</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>HKLM\\SYSTEM\\CurrentControlSet\\Services\\</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='period'>.</span><span class='id identifier rubyid_chomp'>chomp</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span>
<span class='id identifier rubyid_registry_setvaldata'>registry_setvaldata</span><span class='lparen'>(</span><span class='id identifier rubyid_servicekey'>servicekey</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Start</span><span class='tstring_end'>&#39;</span></span><span class='comma'>,</span> <span class='id identifier rubyid_startup_number'>startup_number</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>REG_DWORD</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_create-instance_method">
#<strong>service_create</strong>(name, opts, server = nil) &#x21d2; <tt>GetLastError</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Create a service that runs <code>executable_on_host</code> on the session host</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>name</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>Name of the service to be used as the key</p>
</div>
</li>
<li>
<span class='name'>opts</span>
<span class='type'>(<tt>Hash</tt>)</span>
&mdash;
<div class='inline'>
<p>Settings to be modified</p>
</div>
</li>
<li>
<span class='name'>server</span>
<span class='type'>(<tt>String</tt>, <tt>nil</tt>)</span>
<em class="default">(defaults to: <tt>nil</tt>)</em>
&mdash;
<div class='inline'>
<p>A hostname or IP address. Default is the remote localhost</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>GetLastError</tt>)</span>
&mdash;
<div class='inline'>
<p>0 if the function succeeds</p>
</div>
</li>
</ul>
<p class="tag_title">Raises:</p>
<ul class="raise">
<li>
<span class='type'>(<tt>RuntimeError</tt>)</span>
&mdash;
<div class='inline'>
<p>if OpenSCManagerA failed</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 396</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_create'>service_create</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_opts'>opts</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='rparen'>)</span>
<span class='id identifier rubyid_access'>access</span> <span class='op'>=</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SC_MANAGER_CONNECT | SC_MANAGER_CREATE_SERVICE | SC_MANAGER_QUERY_LOCK_STATUS</span><span class='tstring_end'>&#39;</span></span>
<span class='id identifier rubyid_open_sc_manager'>open_sc_manager</span><span class='lparen'>(</span><span class='label'>host:</span> <span class='id identifier rubyid_server'>server</span><span class='comma'>,</span> <span class='label'>access:</span> <span class='id identifier rubyid_access'>access</span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_manager'>manager</span><span class='op'>|</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:display</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='const'><span class='object_link'><a href="../../../Rex.html" title="Rex (module)">Rex</a></span></span><span class='op'>::</span><span class='const'>Text</span><span class='period'>.</span><span class='id identifier rubyid_rand_text_alpha'>rand_text_alpha</span><span class='lparen'>(</span><span class='int'>8</span><span class='rparen'>)</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:desired_access</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SERVICE_START</span><span class='tstring_end'>&#39;</span></span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:service_type</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SERVICE_WIN32_OWN_PROCESS</span><span class='tstring_end'>&#39;</span></span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:starttype</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='const'><span class='object_link'><a href="#START_TYPE_AUTO-constant" title="Msf::Post::Windows::Services::START_TYPE_AUTO (constant)">START_TYPE_AUTO</a></span></span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:error_control</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SERVICE_ERROR_IGNORE</span><span class='tstring_end'>&#39;</span></span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:path</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='kw'>nil</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:logroup</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='kw'>nil</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:tag_id</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='kw'>nil</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:dependencies</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='kw'>nil</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:startname</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='kw'>nil</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:password</span><span class='rbracket'>]</span> <span class='op'>||=</span> <span class='kw'>nil</span>
<span class='id identifier rubyid_newservice'>newservice</span> <span class='op'>=</span> <span class='id identifier rubyid_advapi32'>advapi32</span><span class='period'>.</span><span class='const'>CreateServiceA</span><span class='lparen'>(</span><span class='id identifier rubyid_manager'>manager</span><span class='comma'>,</span>
<span class='id identifier rubyid_name'>name</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:display</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:desired_access</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:service_type</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:starttype</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:error_control</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:path</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:logroup</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:tag_id</span><span class='rbracket'>]</span><span class='comma'>,</span> <span class='comment'># out
</span> <span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:dependencies</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:startname</span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='id identifier rubyid_opts'>opts</span><span class='lbracket'>[</span><span class='symbol'>:password</span><span class='rbracket'>]</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='id identifier rubyid_newservice'>newservice</span>
<span class='id identifier rubyid_close_service_handle'>close_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_newservice'>newservice</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>return</span> <span class='id identifier rubyid_newservice'>newservice</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>GetLastError</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_delete-instance_method">
#<strong>service_delete</strong>(name, server = nil) &#x21d2; <tt>Object</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Delete a service.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>name</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>Service name (not display name)</p>
</div>
</li>
<li>
<span class='name'>server</span>
<span class='type'>(<tt>String</tt>, <tt>nil</tt>)</span>
<em class="default">(defaults to: <tt>nil</tt>)</em>
&mdash;
<div class='inline'>
<p>A hostname or IP address. Default is the remote localhost</p>
</div>
</li>
</ul>
<p class="tag_title">Raises:</p>
<ul class="raise">
<li>
<span class='type'>(<tt>RuntimeError</tt>)</span>
&mdash;
<div class='inline'>
<p>if OpenServiceA failed</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
499
500
501
502
503
504
505
506</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 499</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_delete'>service_delete</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='rparen'>)</span>
<span class='id identifier rubyid_open_sc_manager'>open_sc_manager</span><span class='lparen'>(</span><span class='label'>host:</span> <span class='id identifier rubyid_server'>server</span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_manager'>manager</span><span class='op'>|</span>
<span class='id identifier rubyid_open_service_handle'>open_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_manager'>manager</span><span class='comma'>,</span> <span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>DELETE</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='op'>|</span>
<span class='id identifier rubyid_ret'>ret</span> <span class='op'>=</span> <span class='id identifier rubyid_advapi32'>advapi32</span><span class='period'>.</span><span class='const'>DeleteService</span><span class='lparen'>(</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='id identifier rubyid_ret'>ret</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>GetLastError</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>end</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_exists?-instance_method">
#<strong>service_exists?</strong>(service) &#x21d2; <tt>Boolean</tt>
</h3><div class="docstring">
<div class="discussion">
<div class="note todo">
<strong>TODO:</strong>
<div class='inline'>
<p>Rewrite to allow operating on a remote host</p>
</div>
</div>
<p>Check if the specified Windows service exists.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>name</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>The target service's name (not to be confused with Display Name). Case sensitive.</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Boolean</tt>)</span>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
297
298
299
300
301
302
303
304
305
306
307
308
309
310</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 297</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_exists?'>service_exists?</span><span class='lparen'>(</span><span class='id identifier rubyid_service'>service</span><span class='rparen'>)</span>
<span class='id identifier rubyid_srv_info'>srv_info</span> <span class='op'>=</span> <span class='id identifier rubyid_service_info'>service_info</span><span class='lparen'>(</span><span class='id identifier rubyid_service'>service</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='id identifier rubyid_srv_info'>srv_info</span><span class='period'>.</span><span class='id identifier rubyid_nil?'>nil?</span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Unable to enumerate Windows services</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='kw'>false</span>
<span class='kw'>end</span>
<span class='kw'>if</span> <span class='id identifier rubyid_srv_info'>srv_info</span> <span class='op'>&amp;&amp;</span> <span class='id identifier rubyid_srv_info'>srv_info</span><span class='lbracket'>[</span><span class='symbol'>:display</span><span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_empty?'>empty?</span>
<span class='kw'>return</span> <span class='kw'>false</span>
<span class='kw'>end</span>
<span class='kw'>true</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_info-instance_method">
#<strong>service_info</strong>(name) &#x21d2; <tt>Hash</tt><sup>?</sup>
</h3><div class="docstring">
<div class="discussion">
<div class="note todo">
<strong>TODO:</strong>
<div class='inline'>
<p>Rewrite to allow operating on a remote host</p>
</div>
</div>
<p>Get Windows Service information.</p>
<p>Information returned in a hash with display name, startup mode and command executed by the service. Service name is case sensitive. Hash keys are Name, Start, Command and Credentials.</p>
<p>If ExtAPI is available we return the DACL, LOGroup, and Interactive values otherwise these values are nil</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>name</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>The target service's name (not to be confused with Display Name). Case sensitive.</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Hash</tt>, <tt>nil</tt>)</span>
&mdash;
<div class='inline'>
<p>Hash containing service details on success, nil otherwise.</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 260</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_info'>service_info</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_commands'>commands</span><span class='period'>.</span><span class='id identifier rubyid_include?'>include?</span><span class='lparen'>(</span><span class='const'><span class='object_link'><a href="../../../Rex.html" title="Rex (module)">Rex</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post.html" title="Rex::Post (module)">Post</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter.html" title="Rex::Post::Meterpreter (module)">Meterpreter</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions.html" title="Rex::Post::Meterpreter::Extensions (module)">Extensions</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions/Stdapi.html" title="Rex::Post::Meterpreter::Extensions::Stdapi (module)">Stdapi</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions/Stdapi.html#COMMAND_ID_STDAPI_REGISTRY_QUERY_VALUE-constant" title="Rex::Post::Meterpreter::Extensions::Stdapi::COMMAND_ID_STDAPI_REGISTRY_QUERY_VALUE (constant)">COMMAND_ID_STDAPI_REGISTRY_QUERY_VALUE</a></span></span><span class='rparen'>)</span>
<span class='kw'>begin</span>
<span class='kw'>return</span> <span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_extapi'>extapi</span><span class='period'>.</span><span class='id identifier rubyid_service'>service</span><span class='period'>.</span><span class='id identifier rubyid_query'>query</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='rparen'>)</span>
<span class='kw'>rescue</span> <span class='const'><span class='object_link'><a href="../../../Rex.html" title="Rex (module)">Rex</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post.html" title="Rex::Post (module)">Post</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter.html" title="Rex::Post::Meterpreter (module)">Meterpreter</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/RequestError.html" title="Rex::Post::Meterpreter::RequestError (class)">RequestError</a></span></span> <span class='op'>=&gt;</span> <span class='id identifier rubyid_e'>e</span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Request Error </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_e'>e</span><span class='embexpr_end'>}</span><span class='tstring_content'> Falling back to registry technique</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>end</span>
<span class='id identifier rubyid_servicekey'>servicekey</span> <span class='op'>=</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>HKLM\\SYSTEM\\CurrentControlSet\\Services\\</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='period'>.</span><span class='id identifier rubyid_chomp'>chomp</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span>
<span class='id identifier rubyid_start_type'>start_type</span> <span class='op'>=</span> <span class='id identifier rubyid_registry_getvaldata'>registry_getvaldata</span><span class='lparen'>(</span><span class='id identifier rubyid_servicekey'>servicekey</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Start</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span>
<span class='kw'>if</span> <span class='id identifier rubyid_start_type'>start_type</span><span class='period'>.</span><span class='id identifier rubyid_empty?'>empty?</span>
<span class='id identifier rubyid_print_error'>print_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Could not retrieve the start type of the </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='period'>.</span><span class='id identifier rubyid_chomp'>chomp</span><span class='embexpr_end'>}</span><span class='tstring_content'> service!</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='kw'>nil</span>
<span class='kw'>end</span>
<span class='lbrace'>{</span>
<span class='label'>display:</span> <span class='id identifier rubyid_registry_getvaldata'>registry_getvaldata</span><span class='lparen'>(</span><span class='id identifier rubyid_servicekey'>servicekey</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>DisplayName</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span><span class='comma'>,</span>
<span class='label'>starttype:</span> <span class='lparen'>(</span><span class='id identifier rubyid_start_type'>start_type</span><span class='period'>.</span><span class='id identifier rubyid_starts_with?'>starts_with?</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>0x</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='op'>?</span> <span class='id identifier rubyid_start_type'>start_type</span><span class='period'>.</span><span class='id identifier rubyid_to_i'>to_i</span><span class='lparen'>(</span><span class='int'>16</span><span class='rparen'>)</span> <span class='op'>:</span> <span class='id identifier rubyid_start_type'>start_type</span><span class='period'>.</span><span class='id identifier rubyid_to_i'>to_i</span><span class='rparen'>)</span><span class='comma'>,</span>
<span class='label'>path:</span> <span class='id identifier rubyid_registry_getvaldata'>registry_getvaldata</span><span class='lparen'>(</span><span class='id identifier rubyid_servicekey'>servicekey</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>ImagePath</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span><span class='comma'>,</span>
<span class='label'>startname:</span> <span class='id identifier rubyid_registry_getvaldata'>registry_getvaldata</span><span class='lparen'>(</span><span class='id identifier rubyid_servicekey'>servicekey</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>ObjectName</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_to_s'>to_s</span><span class='comma'>,</span>
<span class='label'>dacl:</span> <span class='kw'>nil</span><span class='comma'>,</span>
<span class='label'>logroup:</span> <span class='kw'>nil</span><span class='comma'>,</span>
<span class='label'>interactive:</span> <span class='kw'>nil</span>
<span class='rbrace'>}</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_list-instance_method">
#<strong>service_list</strong> &#x21d2; <tt>Array&lt;Hash&gt;</tt>
</h3><div class="docstring">
<div class="discussion">
<div class="note todo">
<strong>TODO:</strong>
<div class='inline'>
<p>Rewrite to allow operating on a remote host</p>
</div>
</div>
<p>List all Windows Services present</p>
<p>If ExtAPI is available we return the DACL, LOGroup, and Interactive values otherwise these values are nil</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Array&lt;Hash&gt;</tt>)</span>
&mdash;
<div class='inline'>
<p>Array of Hashes containing Service details. May contain the following keys:</p>
<ul><li>
<p>:name</p>
</li><li>
<p>:display</p>
</li><li>
<p>:pid</p>
</li><li>
<p>:status</p>
</li><li>
<p>:interactive</p>
</li></ul>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
230
231
232
233
234
235
236
237
238
239
240
241</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 230</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_list'>service_list</span>
<span class='kw'>if</span> <span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_type'>type</span> <span class='op'>==</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>meterpreter</span><span class='tstring_end'>&#39;</span></span> <span class='op'>&amp;&amp;</span> <span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_commands'>commands</span><span class='period'>.</span><span class='id identifier rubyid_include?'>include?</span><span class='lparen'>(</span><span class='const'><span class='object_link'><a href="../../../Rex.html" title="Rex (module)">Rex</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post.html" title="Rex::Post (module)">Post</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter.html" title="Rex::Post::Meterpreter (module)">Meterpreter</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions.html" title="Rex::Post::Meterpreter::Extensions (module)">Extensions</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions/Stdapi.html" title="Rex::Post::Meterpreter::Extensions::Stdapi (module)">Stdapi</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="../../../Rex/Post/Meterpreter/Extensions/Stdapi.html#COMMAND_ID_STDAPI_REGISTRY_ENUM_KEY-constant" title="Rex::Post::Meterpreter::Extensions::Stdapi::COMMAND_ID_STDAPI_REGISTRY_ENUM_KEY (constant)">COMMAND_ID_STDAPI_REGISTRY_ENUM_KEY</a></span></span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='id identifier rubyid_meterpreter_service_list'>meterpreter_service_list</span>
<span class='kw'>end</span>
<span class='id identifier rubyid_services'>services</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
<span class='id identifier rubyid_each_service'>each_service</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_s'>s</span><span class='op'>|</span>
<span class='id identifier rubyid_services'>services</span> <span class='op'>&lt;&lt;</span> <span class='lbrace'>{</span> <span class='label'>name:</span> <span class='id identifier rubyid_s'>s</span> <span class='rbrace'>}</span>
<span class='kw'>end</span>
<span class='id identifier rubyid_services'>services</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_restart-instance_method">
#<strong>service_restart</strong>(name, start_type = START_TYPE_AUTO, server = nil, should_retry = true) &#x21d2; <tt>Boolean</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Performs an aggressive service (re)start If service is disabled it will re-enable If service is running it will stop and restart</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>name</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>The service name</p>
</div>
</li>
<li>
<span class='name'>start_type</span>
<span class='type'>(<tt>Integer</tt>)</span>
<em class="default">(defaults to: <tt>START_TYPE_AUTO</tt>)</em>
&mdash;
<div class='inline'>
<p>The start type to configure if disabled</p>
</div>
</li>
<li>
<span class='name'>server</span>
<span class='type'>(<tt>String</tt>)</span>
<em class="default">(defaults to: <tt>nil</tt>)</em>
&mdash;
<div class='inline'>
<p>The server to target</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Boolean</tt>)</span>
&mdash;
<div class='inline'>
<p>indicating success</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 546</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_restart'>service_restart</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_start_type'>start_type</span> <span class='op'>=</span> <span class='const'><span class='object_link'><a href="#START_TYPE_AUTO-constant" title="Msf::Post::Windows::Services::START_TYPE_AUTO (constant)">START_TYPE_AUTO</a></span></span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='comma'>,</span> <span class='id identifier rubyid_should_retry'>should_retry</span> <span class='op'>=</span> <span class='kw'>true</span><span class='rparen'>)</span>
<span class='id identifier rubyid_status'>status</span> <span class='op'>=</span> <span class='id identifier rubyid_service_start'>service_start</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='id identifier rubyid_status'>status</span> <span class='op'>==</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SUCCESS-constant" title="Msf::Post::Windows::Error::SUCCESS (constant)">SUCCESS</a></span></span>
<span class='id identifier rubyid_vprint_good'>vprint_good</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>[</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>] Service started</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='kw'>true</span>
<span class='kw'>end</span>
<span class='kw'>case</span> <span class='id identifier rubyid_status'>status</span>
<span class='kw'>when</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#ACCESS_DENIED-constant" title="Msf::Post::Windows::Error::ACCESS_DENIED (constant)">ACCESS_DENIED</a></span></span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>[</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>] Access denied</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>when</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#INVALID_HANDLE-constant" title="Msf::Post::Windows::Error::INVALID_HANDLE (constant)">INVALID_HANDLE</a></span></span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>[</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>] Invalid handle</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>when</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#PATH_NOT_FOUND-constant" title="Msf::Post::Windows::Error::PATH_NOT_FOUND (constant)">PATH_NOT_FOUND</a></span></span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>[</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>] Service binary could not be found</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>when</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SERVICE_ALREADY_RUNNING-constant" title="Msf::Post::Windows::Error::SERVICE_ALREADY_RUNNING (constant)">SERVICE_ALREADY_RUNNING</a></span></span>
<span class='id identifier rubyid_vprint_status'>vprint_status</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>[</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>] Service already running attempting to stop and restart</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='id identifier rubyid_stopped'>stopped</span> <span class='op'>=</span> <span class='id identifier rubyid_service_stop'>service_stop</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='lparen'>(</span><span class='lparen'>(</span><span class='id identifier rubyid_stopped'>stopped</span> <span class='op'>==</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SUCCESS-constant" title="Msf::Post::Windows::Error::SUCCESS (constant)">SUCCESS</a></span></span><span class='rparen'>)</span> <span class='op'>||</span> <span class='lparen'>(</span><span class='id identifier rubyid_stopped'>stopped</span> <span class='op'>==</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SERVICE_NOT_ACTIVE-constant" title="Msf::Post::Windows::Error::SERVICE_NOT_ACTIVE (constant)">SERVICE_NOT_ACTIVE</a></span></span><span class='rparen'>)</span><span class='rparen'>)</span>
<span class='id identifier rubyid_service_restart'>service_restart</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_start_type'>start_type</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span><span class='comma'>,</span> <span class='kw'>false</span><span class='rparen'>)</span> <span class='kw'>if</span> <span class='id identifier rubyid_should_retry'>should_retry</span>
<span class='kw'>else</span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>[</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>] Service disabled, unable to change start type Error: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_stopped'>stopped</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>when</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SERVICE_DISABLED-constant" title="Msf::Post::Windows::Error::SERVICE_DISABLED (constant)">SERVICE_DISABLED</a></span></span>
<span class='id identifier rubyid_vprint_status'>vprint_status</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>[</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>] Service disabled attempting to set to manual</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='lparen'>(</span><span class='id identifier rubyid_service_change_config'>service_change_config</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='lbrace'>{</span> <span class='label'>starttype:</span> <span class='id identifier rubyid_start_type'>start_type</span> <span class='rbrace'>}</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span><span class='rparen'>)</span> <span class='op'>==</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SUCCESS-constant" title="Msf::Post::Windows::Error::SUCCESS (constant)">SUCCESS</a></span></span><span class='rparen'>)</span>
<span class='id identifier rubyid_service_restart'>service_restart</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_start_type'>start_type</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span><span class='comma'>,</span> <span class='kw'>false</span><span class='rparen'>)</span> <span class='kw'>if</span> <span class='id identifier rubyid_should_retry'>should_retry</span>
<span class='kw'>else</span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>[</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>] Service disabled, unable to change start type</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>else</span>
<span class='id identifier rubyid_status'>status</span> <span class='op'>=</span> <span class='op'>::</span><span class='const'>WindowsError</span><span class='op'>::</span><span class='const'>Win32</span><span class='period'>.</span><span class='id identifier rubyid_find_by_retval'>find_by_retval</span><span class='lparen'>(</span><span class='id identifier rubyid_s'>s</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_first'>first</span>
<span class='id identifier rubyid_vprint_error'>vprint_error</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>[</span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>] Unhandled error: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_status'>status</span><span class='period'>.</span><span class='id identifier rubyid_name'>name</span><span class='embexpr_end'>}</span><span class='tstring_content'>: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_status'>status</span><span class='period'>.</span><span class='id identifier rubyid_description'>description</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='kw'>false</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_start-instance_method">
#<strong>service_start</strong>(name, server = nil) &#x21d2; <tt>Integer</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Start a service.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>name</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>Service name (not display name)</p>
</div>
</li>
<li>
<span class='name'>server</span>
<span class='type'>(<tt>String</tt>, <tt>nil</tt>)</span>
<em class="default">(defaults to: <tt>nil</tt>)</em>
&mdash;
<div class='inline'>
<p>A hostname or IP address. Default is the remote localhost</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Integer</tt>)</span>
&mdash;
<div class='inline'>
<p>0 if service started successfully, 1 if it failed because the service is already running, 2 if it is disabled</p>
</div>
</li>
</ul>
<p class="tag_title">Raises:</p>
<ul class="raise">
<li>
<span class='type'>(<tt>RuntimeError</tt>)</span>
&mdash;
<div class='inline'>
<p>if OpenServiceA failed</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
445
446
447
448
449
450
451
452
453
454
455
456
457</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 445</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_start'>service_start</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='rparen'>)</span>
<span class='id identifier rubyid_raise'>raise</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Invalid service name</span><span class='tstring_end'>&#39;</span></span> <span class='kw'>if</span> <span class='id identifier rubyid_name'>name</span><span class='period'>.</span><span class='id identifier rubyid_blank?'>blank?</span>
<span class='kw'>return</span> <span class='id identifier rubyid__shell_service_start'>_shell_service_start</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span><span class='rparen'>)</span> <span class='kw'>if</span> <span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_type'>type</span> <span class='op'>==</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>shell</span><span class='tstring_end'>&#39;</span></span>
<span class='id identifier rubyid_open_sc_manager'>open_sc_manager</span><span class='lparen'>(</span><span class='label'>host:</span> <span class='id identifier rubyid_server'>server</span><span class='comma'>,</span> <span class='label'>access:</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SC_MANAGER_CONNECT</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_manager'>manager</span><span class='op'>|</span>
<span class='id identifier rubyid_open_service_handle'>open_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_manager'>manager</span><span class='comma'>,</span> <span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SERVICE_START</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='op'>|</span>
<span class='id identifier rubyid_retval'>retval</span> <span class='op'>=</span> <span class='id identifier rubyid_advapi32'>advapi32</span><span class='period'>.</span><span class='const'>StartServiceA</span><span class='lparen'>(</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='comma'>,</span> <span class='int'>0</span><span class='comma'>,</span> <span class='kw'>nil</span><span class='rparen'>)</span>
<span class='kw'>return</span> <span class='id identifier rubyid_retval'>retval</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>GetLastError</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>end</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_status-instance_method">
#<strong>service_status</strong>(name, server = nil) &#x21d2; <tt>Object</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Query Service Status</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>name</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>Service name (not display name)</p>
</div>
</li>
<li>
<span class='name'>server</span>
<span class='type'>(<tt>String</tt>, <tt>nil</tt>)</span>
<em class="default">(defaults to: <tt>nil</tt>)</em>
&mdash;
<div class='inline'>
<p>A hostname or IP address. Default is the remote localhost</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'></span>
<div class='inline'>
<p>{} representing lpServiceStatus</p>
</div>
</li>
</ul>
<p class="tag_title">Raises:</p>
<ul class="raise">
<li>
<span class='type'>(<tt>RuntimeError</tt>)</span>
&mdash;
<div class='inline'>
<p>if OpenServiceA failed</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 517</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_status'>service_status</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='rparen'>)</span>
<span class='id identifier rubyid_ret'>ret</span> <span class='op'>=</span> <span class='kw'>nil</span>
<span class='id identifier rubyid_open_sc_manager'>open_sc_manager</span><span class='lparen'>(</span><span class='label'>host:</span> <span class='id identifier rubyid_server'>server</span><span class='comma'>,</span> <span class='label'>access:</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>GENERIC_READ</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_manager'>manager</span><span class='op'>|</span>
<span class='id identifier rubyid_open_service_handle'>open_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_manager'>manager</span><span class='comma'>,</span> <span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>GENERIC_READ</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='op'>|</span>
<span class='id identifier rubyid_status'>status</span> <span class='op'>=</span> <span class='id identifier rubyid_advapi32'>advapi32</span><span class='period'>.</span><span class='const'>QueryServiceStatus</span><span class='lparen'>(</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='comma'>,</span> <span class='int'>28</span><span class='rparen'>)</span>
<span class='kw'>if</span> <span class='lparen'>(</span><span class='id identifier rubyid_status'>status</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>return</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span> <span class='op'>==</span> <span class='int'>0</span><span class='rparen'>)</span>
<span class='id identifier rubyid_raise'>raise</span> <span class='tstring'><span class='tstring_beg'>&quot;</span><span class='tstring_content'>Could not query service. QueryServiceStatus error: </span><span class='embexpr_beg'>#{</span><span class='id identifier rubyid_status'>status</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>ErrorMessage</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='embexpr_end'>}</span><span class='tstring_end'>&quot;</span></span>
<span class='kw'>end</span>
<span class='id identifier rubyid_ret'>ret</span> <span class='op'>=</span> <span class='id identifier rubyid_parse_service_status_struct'>parse_service_status_struct</span><span class='lparen'>(</span><span class='id identifier rubyid_status'>status</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>lpServiceStatus</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span>
<span class='kw'>end</span>
<span class='kw'>end</span>
<span class='id identifier rubyid_ret'>ret</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="service_stop-instance_method">
#<strong>service_stop</strong>(name, server = nil) &#x21d2; <tt>Integer</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Stop a service.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>name</span>
<span class='type'>(<tt>String</tt>)</span>
&mdash;
<div class='inline'>
<p>Service name (not display name)</p>
</div>
</li>
<li>
<span class='name'>server</span>
<span class='type'>(<tt>String</tt>, <tt>nil</tt>)</span>
<em class="default">(defaults to: <tt>nil</tt>)</em>
&mdash;
<div class='inline'>
<p>A hostname or IP address. Default is the remote localhost</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Integer</tt>)</span>
&mdash;
<div class='inline'>
<p>0 if service stopped successfully, 1 if it failed because the service is already stopped or disabled, 2 if it cannot be stopped for some other reason.</p>
</div>
</li>
</ul>
<p class="tag_title">Raises:</p>
<ul class="raise">
<li>
<span class='type'>(<tt>RuntimeError</tt>)</span>
&mdash;
<div class='inline'>
<p>if OpenServiceA failed</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/msf/core/post/windows/services.rb', line 469</span>
<span class='kw'>def</span> <span class='id identifier rubyid_service_stop'>service_stop</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span> <span class='op'>=</span> <span class='kw'>nil</span><span class='rparen'>)</span>
<span class='id identifier rubyid_raise'>raise</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>Invalid service name</span><span class='tstring_end'>&#39;</span></span> <span class='kw'>if</span> <span class='id identifier rubyid_name'>name</span><span class='period'>.</span><span class='id identifier rubyid_blank?'>blank?</span>
<span class='kw'>return</span> <span class='id identifier rubyid__shell_service_stop'>_shell_service_stop</span><span class='lparen'>(</span><span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='id identifier rubyid_server'>server</span><span class='rparen'>)</span> <span class='kw'>if</span> <span class='id identifier rubyid_session'>session</span><span class='period'>.</span><span class='id identifier rubyid_type'>type</span> <span class='op'>==</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>shell</span><span class='tstring_end'>&#39;</span></span>
<span class='id identifier rubyid_open_sc_manager'>open_sc_manager</span><span class='lparen'>(</span><span class='label'>host:</span> <span class='id identifier rubyid_server'>server</span><span class='comma'>,</span> <span class='label'>access:</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SC_MANAGER_CONNECT</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_manager'>manager</span><span class='op'>|</span>
<span class='id identifier rubyid_open_service_handle'>open_service_handle</span><span class='lparen'>(</span><span class='id identifier rubyid_manager'>manager</span><span class='comma'>,</span> <span class='id identifier rubyid_name'>name</span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>SERVICE_STOP</span><span class='tstring_end'>&#39;</span></span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='op'>|</span>
<span class='id identifier rubyid_retval'>retval</span> <span class='op'>=</span> <span class='id identifier rubyid_advapi32'>advapi32</span><span class='period'>.</span><span class='const'>ControlService</span><span class='lparen'>(</span><span class='id identifier rubyid_service_handle'>service_handle</span><span class='comma'>,</span> <span class='int'>1</span><span class='comma'>,</span> <span class='int'>28</span><span class='rparen'>)</span>
<span class='kw'>case</span> <span class='id identifier rubyid_retval'>retval</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>GetLastError</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>when</span> <span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SUCCESS-constant" title="Msf::Post::Windows::Error::SUCCESS (constant)">SUCCESS</a></span></span><span class='comma'>,</span>
<span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#INVALID_SERVICE_CONTROL-constant" title="Msf::Post::Windows::Error::INVALID_SERVICE_CONTROL (constant)">INVALID_SERVICE_CONTROL</a></span></span><span class='comma'>,</span>
<span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SERVICE_CANNOT_ACCEPT_CTRL-constant" title="Msf::Post::Windows::Error::SERVICE_CANNOT_ACCEPT_CTRL (constant)">SERVICE_CANNOT_ACCEPT_CTRL</a></span></span><span class='comma'>,</span>
<span class='const'><span class='object_link'><a href="Error.html" title="Msf::Post::Windows::Error (module)">Error</a></span></span><span class='op'>::</span><span class='const'><span class='object_link'><a href="Error.html#SERVICE_NOT_ACTIVE-constant" title="Msf::Post::Windows::Error::SERVICE_NOT_ACTIVE (constant)">SERVICE_NOT_ACTIVE</a></span></span>
<span class='id identifier rubyid_status'>status</span> <span class='op'>=</span> <span class='id identifier rubyid_parse_service_status_struct'>parse_service_status_struct</span><span class='lparen'>(</span><span class='id identifier rubyid_retval'>retval</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>lpServiceStatus</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span><span class='rparen'>)</span>
<span class='kw'>else</span>
<span class='id identifier rubyid_status'>status</span> <span class='op'>=</span> <span class='kw'>nil</span>
<span class='kw'>end</span>
<span class='kw'>return</span> <span class='id identifier rubyid_retval'>retval</span><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>&#39;</span><span class='tstring_content'>GetLastError</span><span class='tstring_end'>&#39;</span></span><span class='rbracket'>]</span>
<span class='kw'>end</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="footer">
Generated on Fri May 8 17:01:44 2026 by
<a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
0.9.37 (ruby-3.1.5).
</div>
</div>
</body>
</html>