我有以下代码,其中我使用外部源中提供的其他Windows凭据引发进程。
代码:
public static void ImpersonateProcess_WithProfile(string appPath, string domain,
string user, string password)
{
ImpersonateProcess(appPath, domain, user, password, LogonFlags.LOGON_WITH_PROFILE);
}
private static void ImpersonateProcess(string appPath, string domain, string user,
string password, LogonFlags lf)
{
StartupInfo si = new StartupInfo();
si.cb = Marshal.SizeOf(typeof(StartupInfo));
ProcessInfo pi = new ProcessInfo();
if (CreateProcessWithLogonW(user, domain, password,
lf,
appPath, null,
0, IntPtr.Zero, null,
ref si, out pi))
{
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
}
else
{
throw new System.ComponentModel.Win32Exception(Marshal.GetLastWin32Error());
}
}
这个程序在windows 7、8和10的版本中非常适合我。。
但在windows 10版本1703中,我正在处理一个按日期格式的错误(所述错误是由运行过程的验证引发的(。。我不明白为什么只有这个版本才会出现这种情况。
出现此错误的原因是运行的进程要求日期格式为dd/MM/yyyy。但我重复一遍,这种情况只发生在这个版本的Windows 10中,并且在我尝试过的所有版本中共享相同的日期格式。
最后我找到了一个帮助我的解决方案。
我只是创建了一个bat文件,在那里我更改了系统日期格式,然后运行我的.exe
@echo off
reg add "HKCUControl PanelInternational" /f /v sShortDate /t REG_SZ /d "dd/MM/yyyy" >nul
app.exe
这对我有用。