zoukankan      html  css  js  c++  java
  • c#调用系统资源大集合-3

    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);
    }   
    屌丝一直很屌
  • 相关阅读:
    jQuery学习----简单介绍,基本使用,操作样式,动画
    JavaScript进阶----关于数字的方法,Math对象,日期对象,定时器,函数,for in
    MR的常用命令
    YARN的三种调度器
    yarn资源管理
    yarn的架构设计
    yarn的web界面查看log时出现的问题
    HDFS副本放置策略
    HDFS读流程
    HDFS写流程
  • 原文地址:https://www.cnblogs.com/xiashenbin/p/3210318.html
Copyright © 2011-2022 走看看