-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlib.psm1
More file actions
128 lines (123 loc) · 4.95 KB
/
Copy pathlib.psm1
File metadata and controls
128 lines (123 loc) · 4.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
function Convert-WimInfo ([string]$file) {
$RawText = Get-Content $file -Raw
$lines = $RawText.Split([Environment]::NewLine, [StringSplitOptions]::RemoveEmptyEntries)
$list = [ordered]@{}
For($i = 0; $i -lt $lines.count; $i++) {
$line = $lines[$i]
if ($line.StartsWith("Index")) {
$k = $line.Split(":")[1].Trim()
continue
}
if ($line.StartsWith("Name")) {
$list[$k] = $line.Split(":")[1].Trim()
continue
}
}
return $list
}
function Convert-ProvisionedAppxPackages ([string]$file) {
$RawText = Get-Content $file -Raw
$lines = $RawText.Split([Environment]::NewLine, [StringSplitOptions]::RemoveEmptyEntries)
$list = [ordered]@{}
For($i = 0; $i -lt $lines.count; $i++) {
$line = $lines[$i]
if ($line.StartsWith("DisplayName")) {
$k = $line.Split(":")[1].Trim()
continue
}
if ($line.StartsWith("PackageName")) {
$list[$k] = $line.Split(":")[1].Trim()
continue
}
}
return $list
}
function Convert-Packages ([string]$file) {
$RawText = Get-Content $file -Raw
$lines = $RawText.Split([Environment]::NewLine, [StringSplitOptions]::RemoveEmptyEntries)
$list = New-Object System.Collections.ArrayList
# [collections.arraylist]$list
For($i = 0; $i -lt $lines.count; $i++) {
$line = $lines[$i]
if ($line.StartsWith("Package Identity")) {
$v = $line.Split(":")[1].Trim()
$list.Add($v) | out-null
continue
}
}
return $list
}
# https://learn.microsoft.com/en-us/archive/msdn-technet-forums/e718a560-2908-4b91-ad42-d392e7f8f1ad
function enable-privilege {
param(
## The privilege to adjust. This set is taken from
## http://msdn.microsoft.com/en-us/library/bb530716(VS.85).aspx
[ValidateSet(
"SeAssignPrimaryTokenPrivilege", "SeAuditPrivilege", "SeBackupPrivilege",
"SeChangeNotifyPrivilege", "SeCreateGlobalPrivilege", "SeCreatePagefilePrivilege",
"SeCreatePermanentPrivilege", "SeCreateSymbolicLinkPrivilege", "SeCreateTokenPrivilege",
"SeDebugPrivilege", "SeEnableDelegationPrivilege", "SeImpersonatePrivilege", "SeIncreaseBasePriorityPrivilege",
"SeIncreaseQuotaPrivilege", "SeIncreaseWorkingSetPrivilege", "SeLoadDriverPrivilege",
"SeLockMemoryPrivilege", "SeMachineAccountPrivilege", "SeManageVolumePrivilege",
"SeProfileSingleProcessPrivilege", "SeRelabelPrivilege", "SeRemoteShutdownPrivilege",
"SeRestorePrivilege", "SeSecurityPrivilege", "SeShutdownPrivilege", "SeSyncAgentPrivilege",
"SeSystemEnvironmentPrivilege", "SeSystemProfilePrivilege", "SeSystemtimePrivilege",
"SeTakeOwnershipPrivilege", "SeTcbPrivilege", "SeTimeZonePrivilege", "SeTrustedCredManAccessPrivilege",
"SeUndockPrivilege", "SeUnsolicitedInputPrivilege")]
$Privilege,
## The process on which to adjust the privilege. Defaults to the current process.
$ProcessId = $pid,
## Switch to disable the privilege, rather than enable it.
[Switch] $Disable
)
## Taken from P/Invoke.NET with minor adjustments.
$definition = @'
using System;
using System.Runtime.InteropServices;
public class AdjPriv
{
[DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
internal static extern bool AdjustTokenPrivileges(IntPtr htok, bool disall,
ref TokPriv1Luid newst, int len, IntPtr prev, IntPtr relen);
[DllImport("advapi32.dll", ExactSpelling = true, SetLastError = true)]
internal static extern bool OpenProcessToken(IntPtr h, int acc, ref IntPtr phtok);
[DllImport("advapi32.dll", SetLastError = true)]
internal static extern bool LookupPrivilegeValue(string host, string name, ref long pluid);
[StructLayout(LayoutKind.Sequential, Pack = 1)]
internal struct TokPriv1Luid
{
public int Count;
public long Luid;
public int Attr;
}
internal const int SE_PRIVILEGE_ENABLED = 0x00000002;
internal const int SE_PRIVILEGE_DISABLED = 0x00000000;
internal const int TOKEN_QUERY = 0x00000008;
internal const int TOKEN_ADJUST_PRIVILEGES = 0x00000020;
public static bool EnablePrivilege(long processHandle, string privilege, bool disable)
{
bool retVal;
TokPriv1Luid tp;
IntPtr hproc = new IntPtr(processHandle);
IntPtr htok = IntPtr.Zero;
retVal = OpenProcessToken(hproc, TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, ref htok);
tp.Count = 1;
tp.Luid = 0;
if(disable)
{
tp.Attr = SE_PRIVILEGE_DISABLED;
}
else
{
tp.Attr = SE_PRIVILEGE_ENABLED;
}
retVal = LookupPrivilegeValue(null, privilege, ref tp.Luid);
retVal = AdjustTokenPrivileges(htok, false, ref tp, 0, IntPtr.Zero, IntPtr.Zero);
return retVal;
}
}
'@
$processHandle = (Get-Process -id $ProcessId).Handle
$type = Add-Type $definition -PassThru
$type[0]::EnablePrivilege($processHandle, $Privilege, $Disable)
}