Created
April 22, 2019 20:47
-
-
Save CosmosKey/2a43200ef78006738674a42dd16df0dc to your computer and use it in GitHub Desktop.
Abort Windows Shutdown
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$definition = @' | |
using System; | |
using System.Runtime.InteropServices; | |
public class W32ShutdownUtil { | |
[DllImport("advapi32.dll", SetLastError = true)] | |
public static extern bool AbortSystemShutdown(String machineName); | |
[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) { | |
return SetPrivilege(processHandle, privilege, false); | |
} | |
public static bool DisablePrivilege(long processHandle, string privilege) { | |
return SetPrivilege(processHandle, privilege, true); | |
} | |
private static bool SetPrivilege(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; | |
} | |
} | |
'@ | |
$W32ShutdownUtil = Add-Type $definition -PassThru | Where-Object Name -eq 'W32ShutdownUtil' | |
$pidHandle = (Get-Process -Id $pid).Handle | |
$W32ShutdownUtil::EnablePrivilege($pidHandle, "SeShutdownPrivilege") | |
$W32ShutdownUtil::AbortSystemShutdown($null) | |
$W32ShutdownUtil::DisablePrivilege($pidHandle, "SeShutdownPrivilege") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment