Я пытаюсь изменить файлы в приложениях WindowsApps, заблокированных SYSTEM, но, что бы я ни пытался, я не добился успеха. Единственное, что я могу сделать с помощью кода, который я использую - это удалить файлы в этой папке. Я знаю, что на самом деле это возможно, потому что вы можете сделать это с помощью Unlocker IObit, но это закрытый источник, поэтому я понятия не имею, как они это делают. Возможно ли сделать это в C #?
Это для программы, которую я делаю, которая меняет ваш плащ в Minecraft с большей гибкостью. Я использую C # с .NET Framework 4.8 в Windows 10. Я пробовал такие команды, как takeown и icacls, но безуспешно. Сейчас я убиваю процессы, которые обрабатывают файлы в этой папке, а затем получают временное владение, а затем пытаются скопировать файл.
Это функция, которую я использую для получения всех процессов изfile:
public static class Win32Processes
{
/// <summary>
/// Find out what process(es) have a lock on the specified file.
/// </summary>
/// <param name="path">Path of the file.</param>
/// <returns>Processes locking the file</returns>
/// <remarks>See also:
/// http://msdn.microsoft.com/en-us/library/windows/desktop/aa373661(v=vs.85).aspx
/// http://wyupdate.googlecode.com/svn-history/r401/trunk/frmFilesInUse.cs (no copyright in code at time of viewing)
/// </remarks>
public static List<Process> GetProcessesLockingFile(string path)
{
uint handle;
string key = Guid.NewGuid().ToString();
int res = RmStartSession(out handle, 0, key);
if (res != 0) throw new Exception("Could not begin restart session. Unable to determine file locker.");
try
{
const int MORE_DATA = 234;
uint pnProcInfoNeeded, pnProcInfo = 0, lpdwRebootReasons = RmRebootReasonNone;
string[] resources = { path }; // Just checking on one resource.
res = RmRegisterResources(handle, (uint)resources.Length, resources, 0, null, 0, null);
if (res != 0) throw new Exception("Could not register resource.");
//Note: there's a race condition here -- the first call to RmGetList() returns
// the total number of process. However, when we call RmGetList() again to get
// the actual processes this number may have increased.
res = RmGetList(handle, out pnProcInfoNeeded, ref pnProcInfo, null, ref lpdwRebootReasons);
if (res == MORE_DATA)
{
return EnumerateProcesses(pnProcInfoNeeded, handle, lpdwRebootReasons);
}
else if (res != 0) throw new Exception("Could not list processes locking resource. Failed to get size of result.");
}
finally
{
RmEndSession(handle);
}
return new List<Process>();
}
[StructLayout(LayoutKind.Sequential)]
public struct RM_UNIQUE_PROCESS
{
public int dwProcessId;
public System.Runtime.InteropServices.ComTypes.FILETIME ProcessStartTime;
}
const int RmRebootReasonNone = 0;
const int CCH_RM_MAX_APP_NAME = 255;
const int CCH_RM_MAX_SVC_NAME = 63;
public enum RM_APP_TYPE
{
RmUnknownApp = 0,
RmMainWindow = 1,
RmOtherWindow = 2,
RmService = 3,
RmExplorer = 4,
RmConsole = 5,
RmCritical = 1000
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public struct RM_PROCESS_INFO
{
public RM_UNIQUE_PROCESS Process;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = CCH_RM_MAX_APP_NAME + 1)] public string strAppName;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = CCH_RM_MAX_SVC_NAME + 1)] public string strServiceShortName;
public RM_APP_TYPE ApplicationType;
public uint AppStatus;
public uint TSSessionId;
[MarshalAs(UnmanagedType.Bool)] public bool bRestartable;
}
[DllImport("rstrtmgr.dll", CharSet = CharSet.Unicode)]
static extern int RmRegisterResources(uint pSessionHandle, uint nFiles, string[] rgsFilenames,
uint nApplications, [In] RM_UNIQUE_PROCESS[] rgApplications, uint nServices,
string[] rgsServiceNames);
[DllImport("rstrtmgr.dll", CharSet = CharSet.Auto)]
static extern int RmStartSession(out uint pSessionHandle, int dwSessionFlags, string strSessionKey);
[DllImport("rstrtmgr.dll")]
static extern int RmEndSession(uint pSessionHandle);
[DllImport("rstrtmgr.dll")]
static extern int RmGetList(uint dwSessionHandle, out uint pnProcInfoNeeded,
ref uint pnProcInfo, [In, Out] RM_PROCESS_INFO[] rgAffectedApps,
ref uint lpdwRebootReasons);
private static List<Process> EnumerateProcesses(uint pnProcInfoNeeded, uint handle, uint lpdwRebootReasons)
{
var processes = new List<Process>(10);
// Create an array to store the process results
var processInfo = new RM_PROCESS_INFO[pnProcInfoNeeded];
var pnProcInfo = pnProcInfoNeeded;
// Get the list
var res = RmGetList(handle, out pnProcInfoNeeded, ref pnProcInfo, processInfo, ref lpdwRebootReasons);
if (res != 0) throw new Exception("Could not list processes locking resource.");
for (int i = 0; i < pnProcInfo; i++)
{
try
{
processes.Add(Process.GetProcessById(processInfo[i].Process.dwProcessId));
}
catch (ArgumentException) { } // catch the error -- in case the process is no longer running
}
return processes;
}
}
Эта функция используется для уничтожения этих процессов:
static void KillProcesses()
{
try
{
foreach (string path in GetDirectoryFiles(skinPacksPath, "*.*", SearchOption.AllDirectories))
{
foreach (Process p in Win32Processes.GetProcessesLockingFile(path))
{
if (p.HasExited) continue;
p.Kill();
p.WaitForExit();
}
}
}catch(Exception e)
{
throw e;
}
}
Эта функция используется для копирования файла:
static void DoCopy()
{
try
{
File.Copy(path + "/nitrosfn.png", vanillaPath + "/nitrosfn.png", true);
}
catch(Exception e)
{
throw e;
}
}
Это моя основная функция, в которой я запускаю все эти функции:
static void Main(string[] args)
{
path = args[0];
//capePath = args[1];
//skinPath = args[2];
skinPacksPath = "C:\\Program Files\\WindowsApps\\Microsoft.MinecraftUWP_1.12.101.0_x64__8wekyb3d8bbwe\\data\\skin_packs";
vanillaPath = skinPacksPath + "/vanilla";
KillProcesses(); // kill processes handling the files in skinPacksPath
SetOwnership(skinPacksPath); // take temp ownership of skinPacksPath folder
DoCopy(); // copy files to vanillaPath folder
Console.ReadLine(); // stop from closing
}
Это мои аргументы отладки:
"C:\Users\angel\OneDrive\Desktop\vanilla"
Я ожидаю файл nitrosfn.png
в C:/Program Files/WindowsApps/Microsoft.MinecraftUWP_1.12.101.0_x64__8wekyb3d8bbwe/data/skin_packs/vanilla
должен быть заменен файлом nitrosfn.png
в C:/Users/angel/OneDrive/Desktop/vanilla
, но я получаю эту ошибку: System.UnauthorizedAccessException: 'Access to the path 'C:\Program Files\WindowsApps\Microsoft.MinecraftUWP_1.12.101.0_x64__8wekyb3d8bbwe\data\skin_packs/vanilla/nitrosfn.png' is denied.'