05 2012 档案

摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Diagnostics;using System.Drawing;using System.IO;using System.Linq;using System.Text;using System.Windows.Forms;using Microsoft.VisualBasic;using System.Runtime.InteropServices;using System.Net;u 阅读全文
posted @ 2012-05-21 11:22 魍魉_198x 阅读(245) 评论(0) 推荐(0)
摘要:上次说过了Citrix的命令安装以及简单的解压安装。参见:http://blog.csdn.net/lw_198x/article/details/6861582这次详细的介绍下解压安装的步骤:1.把exe文件解压到某一目录,CitrixReceiverEnterprise.exe /extract C:\temp2.然后在该目录下各自点击模块的MSI文件进行安装,有顺序的哦:RIIstallerICAWebWrapperGenericUSBDesktopViewerCitrixHDXMediaStreamForFlashVd3dClientAuthMangerSelfServicePlugi 阅读全文
posted @ 2012-05-21 11:18 魍魉_198x 阅读(2315) 评论(0) 推荐(0)
摘要:如何利用MsiZap.exe卸载软件.1.首先获得标识码a) HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Uninstall 获得.b) CMD中输入wmic product > c:\temp.txt 从该txt文件获得.2.获取MsiZap.exehttp://download.csdn.net/detail/lw_198x/43173813.卸载该软件在CMD中输入 msiZap.exe -T 标识码例如:msiZap.exe -T{66Ch7520-B423-4BD1-A7E4-75BB8B44740E 阅读全文
posted @ 2012-05-21 10:57 魍魉_198x 阅读(824) 评论(0) 推荐(0)
摘要:public bool Ping(string ip) { int timeout = 1000; string data = "Test Data!"; System.Net.NetworkInformation.Ping p = new System.Net.NetworkInformation.Ping(); System.Net.NetworkInformation.PingOptions options = new System.Net.NetworkInformation.Ping... 阅读全文
posted @ 2012-05-16 15:46 魍魉_198x 阅读(247) 评论(0) 推荐(0)
摘要:进程寻找与终止 //寻找进程 public bool ExProgress(string name) { bool init = false; try { Process[] prc = Process.GetProcesses(); foreach (Process pr in prc) //遍历整个进程 { if (name == pr.ProcessNam... 阅读全文
posted @ 2012-05-16 15:40 魍魉_198x 阅读(159) 评论(0) 推荐(0)
摘要:在Linux发现无法输入|符号,原来默认居然是英国键盘,汗一个先。解决办法:找到 /etc/default/keyboard用root修改如下:# XKBLAYOUT="gb" (把这行注解掉,加上下面那行,或直接把gb改成us就好了)XKBLAYOUT="us"重新启动 阅读全文
posted @ 2012-05-11 13:49 魍魉_198x 阅读(645) 评论(0) 推荐(0)
摘要:=========================================开始→运行→命令集锦winver---------检查Windows版本wmimgmt.msc----打开windows管理体系结构(WMI)wupdmgr--------windows更新程序wscript--------windows脚本宿主设置write----------写字板winmsd---------系统信息wiaacmgr-------扫描仪和照相机向导winchat--------XP自带局域网聊天mem.exe--------显示内存使用情况Msconfig.exe---系统配置实用程序mpl 阅读全文
posted @ 2012-05-08 09:27 魍魉_198x 阅读(216) 评论(0) 推荐(0)
摘要:好吧 标题有点混乱实际情况是这样的,很多时候一个域里面的DNS不能过满足你的要求,你希望所有指向这个DNS(比如说DNS Server #A )的机器也能够包括另外一台DNS Server上的记录 (比如说DNS Server #B).那就需要我们修改DNS Server#A,好使它包括DNS Server#B的内容1.在DNS 上创建辅助区域.参见http://blog.csdn.net/lw_198x/article/details/73438752.添加DNS的转向.在下述区域添加DNS Server#B的地址3.修改路由设置不详4.修改当前连接在下述任意区域添加DNS Server#B 阅读全文
posted @ 2012-05-04 18:04 魍魉_198x 阅读(343) 评论(0) 推荐(0)