public static void 打开格式化对话框()
{
Process.Start("rundll32.exe"," shell32.dll,SHFormatDrive");
} public static void 打开控制面板游戏控制器一般()
{
Process.Start("rundll32.exe"," shell32.dll,Control_RunDLL joy.cpl,,0");
} public static void 打开控制面板游戏控制器进阶()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL joy.cpl,,1");
} public static void 打开控制面板键盘属性速度()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @1");
} public static void 打开控制面板键盘属性语言()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @1,,1");
} public static void 打开Windows打印机档案夹()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @2");
} public static void 打开Windows字体档案夹()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @3");
} public static void 打开控制面板输入法属性()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL main.cpl @4");
} public static void 打开添加新调制解调器向导()
{
Process.Start("rundll32.exe"," shell32.dll,Control_RunDLL modem.cpl,,add");
} public static void 打开控制面板多媒体属性音频()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,0");
} public static void 打开控制面板多媒体属性视频()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,1");
} public static void 打开控制面板多媒体属性MIDI()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,2");
} public static void 打开控制面板多媒体属性CD音乐()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,3");
} public static void 打开控制面板多媒体属性设备()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL mmsys.cpl,,4");
} public static void 打开控制面板声音()
{
Process.Start("rundll32.exe"," shell32.dll,Control_RunDLL mmsys.cpl @1");
} public static void 打开控制面板网络()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL netcpl.cpl");
} public static void 打开控制面板密码()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL password.cpl");
} public static void 打开控制面板电源管理()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL powercfg.cpl");
} public static void 打开控制面板区域设置属性区域设置()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL intl.cpl,,0");
} public static void 打开控制面板区域设置属性数字选项()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL intl.cpl,,1");
} public static void 打开控制面板区域设置属性货币选项()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL intl.cpl,,2");
} public static void 打开控制面板区域设置属性时间选项()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL intl.cpl,,3");
} public static void 打开控制面板区域设置属性日期选项()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL intl.cpl,,4");
} public static void 打开ODBC数据源管理器()
{
Process.Start("rundll32.exe"," shell32.dll,Control_RunDLL odbccp32.cpl");
} public static void 打开控制面板系统属性常规()
{
Process.Start("rundll32.exe"," shell32.dll,Control_RunDLL sysdm.cpl,,0");
} public static void 打开控制面板系统属性设备管理器()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL sysdm.cpl,,1");
} public static void 打开控制面板系统属性硬件配置()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL sysdm.cpl,,2");
} public static void 打开控制面板系统属性性能()
{
Process.Start("rundll32.exe", " shell32.dll,Control_RunDLL sysdm.cpl,,3");
} ////自定义执行函数,以便下面调用
//public static void execute(string dosCommand)
//{
// //创建进程对象
// Process dos = new Process();
// ProcessStartInfo p = new ProcessStartInfo();
// p.FileName = "cmd.exe";
// p.Arguments = dosCommand;
// //不使用系统外壳程序启动
// p.UseShellExecute = false;
// //不创建窗口
// //p.CreateNoWindow = true;
// dos.StartInfo =p;
// dos.Start();
//} /*shutdown -s -t 3600 -f
一小时后强行关机 用强行主要怕有些程序卡住 关不了机
-s 关机
-r重启
-f强行
-t 时间
-a 取消关机
-l 注销
-i 显示用户界面 具体是什么试试就知道了*/ public static void 关闭并重启计算机()
{
Process.Start("shutdown.exe", "-r");
} public static void 关闭计算机()
{
Process.Start("shutdown.exe", "-s -f");
}
//重载关闭计算机函数,可以设定倒计时
public static void 关闭计算机(string time)
{
string s = "-s -t " + time;
Process.Start("shutdown.exe", s);
} public static void 注销计算机()
{
Process.Start("shutdown.exe", "-l");
} public static void 撤销关闭计算机()
{
Process.Start("shutdown.exe", "-a");
} public static void 打开桌面主旨面板()
{
Process.Start("rundll32.exe"," shell32.dll,Control_RunDLL themes.cpl");
} public static void 打开网址(string address)
{
Process.Start(address);
} public static void 运行程序(string name)
{
Process .Start (name);
} public static void 显示任务栏()
{
ShowWindow(FindWindow("Shell_TrayWnd",null),SW_SHOW);
} public static void 隐藏任务栏()
{
ShowWindow(FindWindow("Shell_TrayWnd",null),SW_HIDE);
} public static void 发送邮件(string address)
{
string s = "mailto:" + address;
Process.Start(s);
} public static void 发送邮件()
{
Process.Start("mailto:feiyangqingyun@163.com");
} public static string 获取系统文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.System);
return s;
} public static void 打开系统文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.System);
Process.Start(s);
} public static string 获取ProgramFiles目录()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles );
return s;
} public static void 打开ProgramFiles目录()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
Process.Start(s);
} public static string 获取逻辑桌面()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
return s;
} public static void 打开逻辑桌面()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
Process.Start(s);
} public static string 获取启动程序组()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
return s;
} public static void 打开启动程序组()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
Process.Start(s);
} public static string 获取Cookies文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.Cookies);
return s;
} public static void 打开Cookies文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.Cookies);
Process.Start(s);
} public static string 获取Internet历史文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.History );
return s;
} public static void 打开Internet历史文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.History );
Process.Start(s);
} public static string 获取我的电脑文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.MyComputer );
return s;
} public static void 打开我的电脑文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.MyComputer );
Process.Start(s);
} public static string 获取MyMusic文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.MyMusic );
return s;
} public static void 打开MyMusic文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.MyMusic );
Process.Start(s);
} public static string 获取MyPictures文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures );
return s;
} public static void 打开MyPictures文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures );
Process.Start(s);
} public static string 获取StartMenu文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.StartMenu );
return s;
} public static void 打开StartMenu文件夹()
{
string s = Environment.GetFolderPath(Environment.SpecialFolder.StartMenu );
Process.Start(s);
}
}
}

c#调用系统资源大集合-2的更多相关文章

  1. c#调用系统资源大集合-1

    using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServi ...

  2. c#调用系统资源大集合-3

    public static void 打开控制面板多媒体属性音频() { Process.Start("rundll32.exe", " shell32.dll,Cont ...

  3. 干货!IT小伙伴们实用的网站及工具大集合!持续更新!

    1.Git 还在担心自己辛辛苦苦写的代码被误删了吗?还在担心自己改错了代码不能挽回吗?还在苦恼于多人开发合作找不到一个好的工具吗?那么用Git就对 了,Git是一个开源的分布式版本控制系统,用以有效. ...

  4. Office在线预览及PDF在线预览的实现方式史上最全大集合

    Office在线预览及PDF在线预览的实现方式大集合 一.服务器先转换为PDF,再转换为SWF,最后通过网页加载Flash预览 微软方:利用Office2007以上版本的一个PDF插件SaveAsPD ...

  5. Android 常用代码大集合 [转]

    [Android]调用字符串资源的几种方法   字符串资源的定义 文件路径:res/values/strings.xml 字符串资源定义示例: <?xml version="1.0&q ...

  6. Python GUI之tkinter窗口视窗教程大集合(看这篇就够了) JAVA日志的前世今生 .NET MVC采用SignalR更新在线用户数 C#多线程编程系列(五)- 使用任务并行库 C#多线程编程系列(三)- 线程同步 C#多线程编程系列(二)- 线程基础 C#多线程编程系列(一)- 简介

    Python GUI之tkinter窗口视窗教程大集合(看这篇就够了) 一.前言 由于本篇文章较长,所以下面给出内容目录方便跳转阅读,当然也可以用博客页面最右侧的文章目录导航栏进行跳转查阅. 一.前言 ...

  7. 100多个很有用的JavaScript函数以及基础写法大集合

    100多个很有用的JavaScript函数以及基础写法大集合 1.document.write("");为 输出语句2.JS中的注释为//3.传统的HTML文档顺序是:docume ...

  8. LINUX下编译安装PHP各种报错大集合

    本文为大家整理汇总了一些linux下编译安装php各种报错大集合 ,感兴趣的同学参考下. nginx1.6.2-mysql5.5.32二进制,php安装报错解决: 123456 [root@clien ...

  9. 【ASP.NET实战教程】ASP.NET实战教程大集合,各种项目实战集合

    [ASP.NET实战教程]ASP.NET实战教程大集合,各种项目实战集合,希望大家可以好好学习教程中,有的比较老了,但是一直很经典!!!!论坛中很多小伙伴说.net没有实战教程学习,所以小编连夜搜集整 ...

随机推荐

  1. C/C++中内存区域划分大总结

    C++作为一款C语言的升级版本,具有非常强大的功能.它不但能够支持各种程序设计风格,而且还具有C语言的所有功能.我们在这里为大家介绍的是其中一个比较重要的内容,C和C++内存区域的划分. 一. 在c中 ...

  2. code::blocks 初使用遇到的问题记录

    /* 做本程序遇到的问题:由于使用的是CODE::BLOCKS 开发环境,刚开始使用code::blocks是,什么都 没有设置,居然输入的中文字符串,保存项目后,再次打开,code::blocks不 ...

  3. 通过 Mesos、Docker 和 Go,使用 300 行代码创建一个分布式系统

    [摘要]虽然 Docker 和 Mesos 已成为不折不扣的 Buzzwords ,但是对于大部分人来说它们仍然是陌生的,下面我们就一起领略 Mesos .Docker 和 Go 配合带来的强大破坏力 ...

  4. Java 中最常见的 5 个错误

    在编程时,开发者经常会遭遇各式各样莫名错误.近日,Sushil Das 在 Geek On Java上列举了 Java 开发中常见的 5 个错误,与君共「免」. 原文链接:Top 5 Common M ...

  5. 企业级Java应用最重要的4个性能指标

    应用性能管理(APM)是一种即时监控以实现对应用程序性能管理和故障管理的系统化解决方案.目前主要指对企业的关键业务应用进行监测.优化,最终达到提高企业应用的可靠性和质量,保证用户得到良好的服务,降低I ...

  6. ECMAScript 5.1中对属性的操作

    此操作只针对新版本浏览器. Object.defineProperty(obj,'name',{configurable:true/false,enumberable:true/false,value ...

  7. POJ 3336 Count the string (KMP+DP,好题)

    参考连接: KMP+DP: http://www.cnblogs.com/yuelingzhi/archive/2011/08/03/2126346.html 另外给出一个没用dp做的:http:// ...

  8. SPL 全面剖析

    SPL 全面剖析 来自百度百科 http://baike.baidu.com/view/1130234.htm?fr=aladdin SPL(Standard PHP Library) IN PHP5 ...

  9. POJ 3304 Segments (直线与线段是否相交)

    题目链接 题意 : 能否找出一条直线使得所有给定的线段在该直线上的投影有一个公共点. 思路 : 假设存在一条直线a使得所有线段在该直线上的投影有公共点,则必存在一条垂直于直线a的直线b,直线b与所有线 ...

  10. 传说中的WCF(11):会话(Session)

    在标题中我加了一个大家都很熟悉的单词——Session,熟吧?玩过Web开发的朋友肯定在梦中都会见到她. 在Web中为什么要会话呢?毕竟每个用户在一个Web应用中可能不止进行一次操作,比如,某二手飞机 ...