最近刚好用到一款软件学习版,30天试用期满,但是还想继续用,不具体透露是什么软件了. 发现更改了系统时间后,这个软件就又能启动了,不过每次改来改去很麻烦,就写了段脚本 @echo off date 11/1/2017 & time 13:13 cd C:\Program Files (x86)\ABC start ABC.exe ping 127.0.0.1 -n 6 net time \\xxx_server /set /y date命令修改时间 ping命令是为了等待启动该软件 net ti
using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { SystemTime MySystemTime = new SystemTime();
Process p = new Process(); //Process类有一个StartInfo属性 //设定程序名 p.StartInfo.FileName = "cmd.exe"; ////设定程式执行参数 “/C”表示执行完命令后马上退出 p.StartInfo.Arguments = string.Format("/c date {0} time {1}",date,time); ////关闭Shell的使用 p.StartInfo.UseShellE
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\DateTime\Servers]@="4""1"="time.windows.com""2"="time.nist.gov""3"="time-nw.nist.gov"&