我正在使用C#.net在Windows Embedded Standard 7操作系统上设置日期和时间。
我尝试使用以下链接中的代码更改系统日期。
http://www.pinvoke.net/default.aspx/kernel32.setsystemtime
但我也看到一个人应该获得改变相同的特权。但我收到一个错误。这是
的代码Privileges.EnablePrivilege(SecurityEntity.SE_SYSTEMTIME_NAME);
if (SetSystemTime(ref st) == 0)
{
return 0;
}
return 1;
为了获得私有化,我使用了以下链接中的代码。
http://www.pinvoke.net/default.aspx/advapi32/AdjustTokenPrivileges.html C#示例代码2(完整错误处理):
我有疑问: 是否可以使用PInvoke更改日期和时间。如果有可能,我应该在操作系统上进行哪些更改/设置。
还有其他改变日期和时间的方法。
谢谢
编辑:
[DllImport("kernel32.dll")]
extern static uint SetSystemTime(ref SYSTEMTIME lpSystemTime);
public int SetSystemDateTime(DateTime NewSystemDateTime)
{
SYSTEMTIME st = new SYSTEMTIME();
st.wYear = (ushort)NewSystemDateTime.Year;
st.wMonth = (ushort)NewSystemDateTime.Month;
st.wDay = (ushort)NewSystemDateTime.Day;
st.wHour = (ushort)NewSystemDateTime.Hour;
st.wMinute = (ushort)NewSystemDateTime.Minute;
st.wMilliseconds = (ushort)NewSystemDateTime.Millisecond;
Privileges.EnablePrivilege(SecurityEntity.SE_SYSTEMTIME_NAME);
if (SetSystemTime(ref st) == 0)
{
return 0;
}
return 1;
}
答案 0 :(得分:1)
好的,我做了一些研究,我尝试了一些事情。您需要管理员权限才能更改系统日期和时间,一个解决方案是添加
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
到应用程序清单文件,这样应用程序将始终询问用户权限。
在代码项目上,有一篇文章可能能够在不添加清单文件的情况下帮助ypu。
http://www.codeproject.com/Articles/125810/A-complete-Impersonation-Demo-in-C-NET
答案 1 :(得分:1)
我终于找到了解决方案。以下链接中的代码对我来说很好: http://www.pinvoke.net/default.aspx/kernel32/SetLocalTime.html
另外,我在stackoverflow中的一篇帖子中找到的代码,帮助了我。
using System.Security.Principal;
bool IsUserAdministrator()
{
bool isAdmin;
try
{
WindowsIdentity user = WindowsIdentity.GetCurrent();
WindowsPrincipal principal = new WindowsPrincipal(user);
isAdmin = principal.IsInRole(WindowsBuiltInRole.Administrator);
}
catch (UnauthorizedAccessException ex)
{
isAdmin = false;
}
catch (Exception ex)
{
isAdmin = false;
}
return isAdmin;
}