上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页
摘要: 一、EIGRP的基本配置 1(1)、进入接口配置IP R1(config)#inter s1/0 R1(config-if)#ip address 200.1.1.1 255.255.255.0 R1(config-if)#no shut 1(2)、配置环回地址 R1(config)#inter lo 1 R1(config-if)#ip add 1.1.1.1 255.255.255.02(1)、路由器2同理配置 R2(config)#inter s1/0 R2(config-if)#ip address 200.1.1.2 255.255.25... 阅读全文
posted @ 2013-09-03 18:35 时间淡无痕 阅读(833) 评论(0) 推荐(0) 编辑
摘要: 第一种情况:已经具有操作系统整个过程中实验账户为xiaoyang 前提你现在用的不是administrator账号登陆当前系统(系统中不只一个账户),然后使用windows键+R打开运行,并且输入lusrmgr.msc回车,将administrator账户启用(一般是禁用的),然后注销当前账户并且登陆管理员账户administrator,使用windows键+R打开运行,输入cmd回车进入dos命令框。然后输入命令如下图(意思是将原来账户的文件夹复制到非系统盘)完成之后将其原来的用户文件夹删除,可以通过界面或者使用del c:\users\xiaoyang命令完成上述操作之后使用命令创建链接回 阅读全文
posted @ 2013-09-03 18:27 时间淡无痕 阅读(361) 评论(0) 推荐(0) 编辑
摘要: On Error Resume NextDim sRunTime, aTime, iHour, iMinute, Wshshell, Now_time, closetime CloseTime = 60Now_time = time() Set Wshshell = CreateObject("WScript.Shell") sRunTime = InputBox("小杨之作,可以选择“关机时刻”或者“延迟关机时间”:" & vblf & vblf & "时间:" & Now_time & &q 阅读全文
posted @ 2013-09-03 09:16 时间淡无痕 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 程序一 #define _________ } #define ________ putchar #define _______ main #define _(a) ________(a); #define ______ _______(){ #define __ ______ _(0x48)_(0x65)_(0x6C)_(0x6C) #define ___ _(0x6F)_(0x2C)_(0x20)_(0x77)_(0x6F) #define ____ _(0x72)_(0x6C)_(0x64)_(0x21) #define _____ __ ... 阅读全文
posted @ 2013-09-03 09:13 时间淡无痕 阅读(263) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main() { int x,N; cout>N; cout>x; coutN) cout<<"你没有按照要求来输入数"; else cout<<"求出在1——"<<N<<"之间可以被"<<x<... 阅读全文
posted @ 2013-07-09 08:42 时间淡无痕 阅读(434) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main() { cout>x; while(x!=0) { sum+=x; cin>>x; } cout<<"sum="<<sum<<endl; } 阅读全文
posted @ 2013-07-09 08:41 时间淡无痕 阅读(187) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main() { int x,y; char cl; cout>x>>cl>>y; switch(cl) { case '+':cout<<x<<cl<<y<<"="<<x+y;break; c... 阅读全文
posted @ 2013-07-09 08:40 时间淡无痕 阅读(204) 评论(0) 推荐(0) 编辑
摘要: WDS的部署安装角色配置1. 选择配置服务器2. 核对是否满足要求3. 输入远程安装文件夹的路径4. 选择是否使用自带的DHCP服务器5. 可以保持默认6. 完成配置后添加映像文件7. 创建部署映像组并起名8. 最后完成映像添加客户端设置1. 更改网络启动2. 成功获取ip并选择F12启动映像3. 读取启动文件引导启动文件得到后续安装4. 进入下一步安装阶段5. 安装程序启动6.进入部署界面7. 输入域账户名和密码进行部署8. 选择要安装的Windows版本9. 选择安装位置10. 完成开始安装 阅读全文
posted @ 2013-07-02 14:50 时间淡无痕 阅读(809) 评论(0) 推荐(0) 编辑
摘要: Web服务器配置共享文件 文件服务器需要做的 1. 建立共享文件夹,并建立两个子文件夹 2. 创建用户以便访问共享时使用此凭据 3. 共享并给予刚创建的用户读取和写入权限 Web服务器的设置 1. 新建网站并指定为网络共享位置,且输入凭据 2. 在完成上步骤前同样需要在web服务器的本地创建同名同密码的账户 3. 最后才能测试通过 4. 访问测试网站 ... 阅读全文
posted @ 2013-06-23 16:21 时间淡无痕 阅读(242) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main() { int arry[10]; int i,j,min1,temp; cout<<endl<<"输入十个整数:\t\t"; for(i=0;i<10;++i) cin>>arry[i]; c... 阅读全文
posted @ 2013-06-18 19:28 时间淡无痕 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页