ZNtObjectManager.psm1

# Copyright 2016, 2017 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Set-StrictMode -Version Latest

Import-Module "$PSScriptRoot\NtObjectManager.dll"

# Source the external scripts into this module.
. "$PSScriptRoot\AppModelFunctions.ps1"
. "$PSScriptRoot\FirewallFunctions.ps1"
. "$PSScriptRoot\KerberosFunctions.ps1"
. "$PSScriptRoot\LsaFunctions.ps1"
. "$PSScriptRoot\MiscFunctions.ps1"
. "$PSScriptRoot\NtDeviceFunctions.ps1"
. "$PSScriptRoot\NtFileFunctions.ps1"
. "$PSScriptRoot\NtKeyFunctions.ps1"
. "$PSScriptRoot\NtObjectFunctions.ps1"
. "$PSScriptRoot\NtProcessFunctions.ps1"
. "$PSScriptRoot\NtSectionFunctions.ps1"
. "$PSScriptRoot\NtSecurityFunctions.ps1"
. "$PSScriptRoot\NtSystemInfoFunctions.ps1"
. "$PSScriptRoot\NtThreadFunctions.ps1"
. "$PSScriptRoot\NtTokenFunctions.ps1"
. "$PSScriptRoot\NtVirtualMemoryFunctions.ps1"
. "$PSScriptRoot\NtWindowFunctions.ps1"
. "$PSScriptRoot\RpcFunctions.ps1"
. "$PSScriptRoot\SamFunctions.ps1"
. "$PSScriptRoot\SocketFunctions.ps1"
. "$PSScriptRoot\UtilityFunctions.ps1"
. "$PSScriptRoot\Win32DebugFunctions.ps1"
. "$PSScriptRoot\Win32ModuleFunctions.ps1"
. "$PSScriptRoot\Win32ProcessFunctions.ps1"
. "$PSScriptRoot\Win32SecurityFunctions.ps1"
. "$PSScriptRoot\Win32ServiceFunctions.ps1"
. "$PSScriptRoot\DsFunctions.ps1"