zoukankan      html  css  js  c++  java
  • ASP.NET部署前环境检测

    /// <summary>
            
    /// 检测IIS及版本号
            
    /// </summary>
            
    /// <returns></returns>
            public string GetIISVerstion()
            {

                RegistryKey key 
    = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\INetStp");
                
    if (key == null)
                    
    return string.Empty;
                
    else
                    
    return Convert.ToString(key.GetValue("MajorVersion")) + "." + Convert.ToString(key.GetValue("MinorVersion"));

            }

    From: http://www.cnblogs.com/wujy/archive/2011/10/07/2200813.html

    --------------------------------------------------------------------------------------------------

    asp.net 验证 服务器 文件夹 权限

    (1) DirectoryInfo dInfo = new DirectoryInfo(@"d:\演示");
    if(dInfo.GetDirectories().IsReadOnly==true)//只读
    (2)try catch 上传一个文件试试,抛出异常查看异常是不是因为只读。

    AddDirectorySecurity(DirectoryName, "IIS_IUSRS", FileSystemRights.ReadData, AccessControlType.Allow);
    RemoveDirectorySecurity(DirectoryName, @"域\用户名", FileSystemRights.ReadData, AccessControlType.Allow);
    // Adds an ACL entry on the specified directory for the specified account.
            public static void AddDirectorySecurity(string FileName, string Account, FileSystemRights Rights, AccessControlType ControlType)
            {
                // Create a new DirectoryInfo object.
                DirectoryInfo dInfo = new DirectoryInfo(FileName);

                // Get a DirectorySecurity object that represents the
                // current security settings.
                DirectorySecurity dSecurity = dInfo.GetAccessControl();

                // Add the FileSystemAccessRule to the security settings.
                dSecurity.AddAccessRule(new FileSystemAccessRule(Account,
                                                                Rights,
                                                                ControlType));

                // Set the new access settings.
                dInfo.SetAccessControl(dSecurity);

            }

            // Removes an ACL entry on the specified directory for the specified account.
            public static void RemoveDirectorySecurity(string FileName, string Account, FileSystemRights Rights, AccessControlType ControlType)
            {
                // Create a new DirectoryInfo object.
                DirectoryInfo dInfo = new DirectoryInfo(FileName);

                // Get a DirectorySecurity object that represents the
                // current security settings.
                DirectorySecurity dSecurity = dInfo.GetAccessControl();

                // Add the FileSystemAccessRule to the security settings.
                dSecurity.RemoveAccessRule(new FileSystemAccessRule(Account,
                                                                Rights,
                                                                ControlType));

                // Set the new access settings.
                dInfo.SetAccessControl(dSecurity);

            }
  • 相关阅读:
    i3wm菜单
    开始写博客拉
    xterm配置
    Linux Tips
    docker下运行labview2010
    oracle连接字符串解析
    C# 域登录实现
    解决Winform程序在不同分辨率系统下界面混乱
    FTP设置:FTP隔离用户
    sqlserver 启动不了sqlserver服务,提示特定服务错误代码10048
  • 原文地址:https://www.cnblogs.com/8090sns/p/2881063.html
Copyright © 2011-2022 走看看