• 大小: 0.05M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: C#  定时  开机  

资源简介

远程服务器通过局域网来控制开机,要主板支持Lan开机


进入CMOS参数设置。选择电源管理设置“Power Management Setup”菜单。
将局域网启动置为enable即可;
观察发现不同的CMOS的局域网启动名称不同。
注意一下关键字即可 LAN XXXXXX Power UP 
有这些关键字就可能是。



资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net.Sockets;
using System.Net;
using System.Runtime.InteropServices;
using System.xml;
using System.IO;

namespace LanStartUp
{
    public partial class frmTelnet : Form
    {
        public frmTelnet()
        {
            InitializeComponent();
        }

        [DllImport(“ws2_32.dll“)]
        private static extern int inet_addr(string cp);
        [DllImport(“IPHLPAPI.dll“)]
        private static extern int SendARP(Int32 DestIP Int32 SrcIP ref Int64 pMacAddr ref Int32 PhyAddrLen);
        int total;
        DataSet ds = null;
        private void button1_Click(object sender E

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      24576  2008-11-03 14:33  定时开机\LanStartUp\LanStartUp\bin\Debug\LanStartUp.exe

     文件      32256  2008-11-03 14:33  定时开机\LanStartUp\LanStartUp\bin\Debug\LanStartUp.pdb

     文件       5632  2005-12-08 14:51  定时开机\LanStartUp\LanStartUp\bin\Debug\LanStartUp.vshost.exe

     文件        270  2008-11-03 14:34  定时开机\LanStartUp\LanStartUp\bin\Debug\Telnet.xml

     文件       7697  2008-11-03 17:50  定时开机\LanStartUp\LanStartUp\frmTelnet.cs

     文件       7833  2008-11-03 10:51  定时开机\LanStartUp\LanStartUp\frmTelnet.Designer.cs

     文件       6008  2008-11-03 10:51  定时开机\LanStartUp\LanStartUp\frmTelnet.resx

     文件       3344  2008-11-02 11:33  定时开机\LanStartUp\LanStartUp\LanStartUp.csproj

     文件        557  2008-11-02 11:33  定时开机\LanStartUp\LanStartUp\LanStartUp.csproj.user

     文件        904  2008-11-03 13:34  定时开机\LanStartUp\LanStartUp\obj\Debug\LanStartUp.csproj.GenerateResource.Cache

     文件      24576  2008-11-03 14:33  定时开机\LanStartUp\LanStartUp\obj\Debug\LanStartUp.exe

     文件        180  2008-11-03 13:34  定时开机\LanStartUp\LanStartUp\obj\Debug\LanStartUp.frmTelnet.resources

     文件      32256  2008-11-03 14:33  定时开机\LanStartUp\LanStartUp\obj\Debug\LanStartUp.pdb

     文件        180  2008-06-25 08:54  定时开机\LanStartUp\LanStartUp\obj\Debug\LanStartUp.Properties.Resources.resources

     文件       6027  2008-06-25 08:54  定时开机\LanStartUp\LanStartUp\obj\Debug\ResolveAssemblyReference.cache

     文件       4000  2008-11-03 14:33  定时开机\LanStartUp\LanStartUp\obj\LanStartUp.csproj.FileListAbsolute.txt

     文件        473  2008-08-25 13:01  定时开机\LanStartUp\LanStartUp\Program.cs

     文件       1192  2008-11-02 10:14  定时开机\LanStartUp\LanStartUp\Properties\AssemblyInfo.cs

     文件       2876  2008-06-25 08:46  定时开机\LanStartUp\LanStartUp\Properties\Resources.Designer.cs

     文件       5612  2008-06-25 08:46  定时开机\LanStartUp\LanStartUp\Properties\Resources.resx

     文件       1095  2008-06-25 08:46  定时开机\LanStartUp\LanStartUp\Properties\Settings.Designer.cs

     文件        249  2008-06-25 08:46  定时开机\LanStartUp\LanStartUp\Properties\Settings.settings

     文件        919  2008-06-25 08:46  定时开机\LanStartUp\LanStartUp.sln

    ..A..H.     26112  2008-11-02 11:33  定时开机\LanStartUp\LanStartUp.suo

     文件        213  2008-06-25 10:10  定时开机\怎样利用远程启动计算机.txt

     目录          0  2008-08-25 13:01  定时开机\LanStartUp\LanStartUp\obj\Debug\Refactor

     目录          0  2008-06-25 10:11  定时开机\LanStartUp\LanStartUp\obj\Debug\TempPE

     目录          0  2008-11-03 14:34  定时开机\LanStartUp\LanStartUp\bin\Debug

     目录          0  2008-11-03 14:33  定时开机\LanStartUp\LanStartUp\obj\Debug

     目录          0  2008-08-25 13:01  定时开机\LanStartUp\LanStartUp\bin

............此处省略8个文件信息

评论

共有 条评论