C#を使用してプログラムでローカルシステムの日付と時刻を変更するにはどうすればよいですか?
9 に答える
ここで私は答えを見つけました。; わかりやすくするために、ここに再投稿しました。
この構造を定義します。
[StructLayout(LayoutKind.Sequential)]
public struct SYSTEMTIME
{
public short wYear;
public short wMonth;
public short wDayOfWeek;
public short wDay;
public short wHour;
public short wMinute;
public short wSecond;
public short wMilliseconds;
}
extern
次のメソッドをクラスに追加します。
[DllImport("kernel32.dll", SetLastError = true)]
public static extern bool SetSystemTime(ref SYSTEMTIME st);
次に、次のように構造体のインスタンスを使用してメソッドを呼び出します。
SYSTEMTIME st = new SYSTEMTIME();
st.wYear = 2009; // must be short
st.wMonth = 1;
st.wDay = 1;
st.wHour = 0;
st.wMinute = 0;
st.wSecond = 0;
SetSystemTime(ref st); // invoke this method.
多くの優れた視点とアプローチがすでにここにありますが、現在取り残されていて、つまずいて一部の人々を混乱させる可能性があると私が感じているいくつかの仕様を以下に示します。
- Windows Vista、7、8 OS では、機能を正常に実行するために必要な管理者権限を取得するために、UAC プロンプトが必要
SetSystemTime
になります。その理由は、呼び出しプロセスにSE_SYSTEMTIME_NAME権限が必要だからです。 - この
SetSystemTime
関数はSYSTEMTIME
協定世界時(UTC)の構造体を想定しています。そうしないと、思いどおりに動作しません。
値を取得する場所/方法によっては、構造体に対応する値を設定する前DateTime
に安全に使用することをお勧めします。ToUniversalTime()
SYSTEMTIME
コード例:
DateTime tempDateTime = GetDateTimeFromSomeService();
DateTime dateTime = tempDateTime.ToUniversalTime();
SYSTEMTIME st = new SYSTEMTIME();
// All of these must be short
st.wYear = (short)dateTime.Year;
st.wMonth = (short)dateTime.Month;
st.wDay = (short)dateTime.Day;
st.wHour = (short)dateTime.Hour;
st.wMinute = (short)dateTime.Minute;
st.wSecond = (short)dateTime.Second;
// invoke the SetSystemTime method now
SetSystemTime(ref st);
DOS コマンドの呼び出しを使用できますが、Windows dll で関数を呼び出す方がより適切な方法です。
public struct SystemTime
{
public ushort Year;
public ushort Month;
public ushort DayOfWeek;
public ushort Day;
public ushort Hour;
public ushort Minute;
public ushort Second;
public ushort Millisecond;
};
[DllImport("kernel32.dll", EntryPoint = "GetSystemTime", SetLastError = true)]
public extern static void Win32GetSystemTime(ref SystemTime sysTime);
[DllImport("kernel32.dll", EntryPoint = "SetSystemTime", SetLastError = true)]
public extern static bool Win32SetSystemTime(ref SystemTime sysTime);
private void button1_Click(object sender, EventArgs e)
{
// Set system date and time
SystemTime updatedTime = new SystemTime();
updatedTime.Year = (ushort)2009;
updatedTime.Month = (ushort)3;
updatedTime.Day = (ushort)16;
updatedTime.Hour = (ushort)10;
updatedTime.Minute = (ushort)0;
updatedTime.Second = (ushort)0;
// Call the unmanaged function that sets the new date and time instantly
Win32SetSystemTime(ref updatedTime);
}
この機能を使用して、システムの時刻を変更します (window 8 でテスト済み)
void setDate(string dateInYourSystemFormat)
{
var proc = new System.Diagnostics.ProcessStartInfo();
proc.UseShellExecute = true;
proc.WorkingDirectory = @"C:\Windows\System32";
proc.CreateNoWindow = true;
proc.FileName = @"C:\Windows\System32\cmd.exe";
proc.Verb = "runas";
proc.Arguments = "/C date " + dateInYourSystemFormat;
try
{
System.Diagnostics.Process.Start(proc);
}
catch
{
MessageBox.Show("Error to change time of your system");
Application.ExitThread();
}
}
void setTime(string timeInYourSystemFormat)
{
var proc = new System.Diagnostics.ProcessStartInfo();
proc.UseShellExecute = true;
proc.WorkingDirectory = @"C:\Windows\System32";
proc.CreateNoWindow = true;
proc.FileName = @"C:\Windows\System32\cmd.exe";
proc.Verb = "runas";
proc.Arguments = "/C time " + timeInYourSystemFormat;
try
{
System.Diagnostics.Process.Start(proc);
}
catch
{
MessageBox.Show("Error to change time of your system");
Application.ExitThread();
}
}
例: setDate("5-6-92");の形式の load メソッドで呼び出します。setTime("2:4:5 AM");
- PInvoke で Win32 API SetSystemTime を呼び出す (例)
- WMI クラス Win32_OperatingSystem を持つ System.Management クラスを作成し、そのクラスで SetDateTime を呼び出します。
どちらも、呼び出し元に SeSystemTimePrivilege が付与されており、この特権が有効になっている必要があります。
コメントで言及したので、C++/CLI ラッパーを次に示します。
#include <windows.h>
namespace JDanielSmith
{
public ref class Utilities abstract sealed /* abstract sealed = static */
{
public:
CA_SUPPRESS_MESSAGE("Microsoft.Security", "CA2122:DoNotIndirectlyExposeMethodsWithLinkDemands")
static void SetSystemTime(System::DateTime dateTime) {
LARGE_INTEGER largeInteger;
largeInteger.QuadPart = dateTime.ToFileTimeUtc(); // "If your compiler has built-in support for 64-bit integers, use the QuadPart member to store the 64-bit integer."
FILETIME fileTime; // "...copy the LowPart and HighPart members [of LARGE_INTEGER] into the FILETIME structure."
fileTime.dwHighDateTime = largeInteger.HighPart;
fileTime.dwLowDateTime = largeInteger.LowPart;
SYSTEMTIME systemTime;
if (FileTimeToSystemTime(&fileTime, &systemTime))
{
if (::SetSystemTime(&systemTime))
return;
}
HRESULT hr = HRESULT_FROM_WIN32(GetLastError());
throw System::Runtime::InteropServices::Marshal::GetExceptionForHR(hr);
}
};
}
C# クライアント コードは非常に単純になりました。
JDanielSmith.Utilities.SetSystemTime(DateTime.Now);
クラスを探している他の人のためのコピー/貼り付けクラス
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
public static class SystemDateTime
{
[DllImport("kernel32.dll", EntryPoint = "SetSystemTime", SetLastError = true)]
private static extern bool Win32SetSystemTime(ref SystemTime sysTime);
[StructLayout(LayoutKind.Sequential)]
public struct SystemTime
{
public ushort Year;
public ushort Month;
public ushort DayOfWeek;
public ushort Day;
public ushort Hour;
public ushort Minute;
public ushort Second;
public ushort Millisecond;
};
public static void SetSystemDateTime(int year, int month, int day, int hour,
int minute, int second, int millisecond)
{
SystemTime updatedTime = new SystemTime
{
Year = (ushort) year,
Month = (ushort) month,
Day = (ushort) day,
Hour = (ushort) hour,
Minute = (ushort) minute,
Second = (ushort) second,
Millisecond = (ushort) millisecond
};
// If this returns false, then the problem is most likely that you don't have the
// admin privileges required to set the system clock
if (!Win32SetSystemTime(ref updatedTime))
{
throw new Win32Exception(Marshal.GetLastWin32Error());
}
}
public static void SetSystemDateTime(DateTime dateTime)
{
SetSystemDateTime(dateTime.Year, dateTime.Month, dateTime.Day, dateTime.Hour, dateTime.Minute,
dateTime.Second, dateTime.Millisecond);
}
}
気をつけて!。未使用のプロパティを構造体から削除すると、時刻が正しく設定されません。これのせいで1日損した。構造の順序が重要だと思います。
これは正しい構造です:
public struct SystemTime
{
public ushort Year;
public ushort Month;
public ushort DayOfWeek;
public ushort Day;
public ushort Hour;
public ushort Minute;
public ushort Second;
public ushort Millisecond;
};
SetSystemTime() を実行すると、期待どおりに動作します。テストのために、次のように時間を設定しました。
SystemTime st = new SystemTime();
st.Year = 2019;
st.Month = 10;
st.Day = 15;
st.Hour = 10;
st.Minute = 20;
st.Second = 30;
SetSystemTime(ref st);
時刻設定: 15.10.2019 10:20、大丈夫です。
しかし、使用されていない DayOfWeek プロパティを削除します。
public struct SystemTime
{
public ushort Year;
public ushort Month;
public ushort Day;
public ushort Hour;
public ushort Minute;
public ushort Second;
public ushort Millisecond;
};
SystemTime st = new SystemTime();
st.Year = 2019;
st.Month = 10;
st.Day = 15;
st.Hour = 10;
st.Minute = 20;
st.Second = 30;
SetSystemTime(ref st);
同じコードを実行しますが、時間を次のように設定します: 10.10.2019 20:30
SystemTime 構造体のすべてのフィールドの順序に注意してください。ユスフ