C#部署數(shù)據(jù)庫及IIS站點(diǎn)
一、前言
最近忙里偷閑,做了一個(gè)部署數(shù)據(jù)庫及IIS網(wǎng)站站點(diǎn)的WPF應(yīng)用程序工具。
二、內(nèi)容
此工具的目的是:
- 根據(jù).sql文件在本機(jī)上部署數(shù)據(jù)庫
- 在本機(jī)部署IIS站點(diǎn),包括新建站點(diǎn),新建應(yīng)用程序池。只新建而不會(huì)對(duì)本機(jī)上原有的程序池或站點(diǎn)做修改操作
最終樣式:(Check按鈕的作用是防止與本機(jī)已有的站點(diǎn)或程序池有沖突)
View:
<Window x:Class="AutoWebTool.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:local="clr-namespace:AutoWebTool" Title="Web Site Automatic Deployment" Height="500" Width="800" WindowStartupLocation="CenterScreen" ResizeMode="NoResize"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="0.5*"/> <RowDefinition Height="0.5*"/> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <GroupBox Header="DataBase Configuration" FontSize="15" BorderThickness="3" Margin="5,10" Grid.Row="0"> <Grid> <Grid.RowDefinitions> <RowDefinition/> <RowDefinition/> <RowDefinition/> <RowDefinition/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="65*"/> <ColumnDefinition Width="133*"/> <ColumnDefinition Width="Auto"/> </Grid.ColumnDefinitions> <TextBlock Grid.Row="0" Grid.Column="0" Text="Server Address" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" Height="26" /> <TextBlock Grid.Row="1" Grid.Column="0" Text="User" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" Height="26" /> <TextBlock Grid.Row="2" Grid.Column="0" Text="Password" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" Height="26" /> <TextBlock Grid.Row="3" Grid.Column="0" Text="Script Path" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" Height="26" /> <TextBox Grid.Row="0" Grid.Column="1" Text="{Binding ServerAddress, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Width="450" Height="32" /> <TextBox Grid.Row="1" Grid.Column="1" Text="{Binding User, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Width="450" Height="32" /> <PasswordBox Grid.Row="2" Grid.Column="1" PasswordChar="*" local:PasswordBoxHelper.Password="{Binding Password, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Width="450" Height="32"> <i:Interaction.Behaviors> <local:PasswordBoxBehavior /> </i:Interaction.Behaviors> </PasswordBox> <TextBox Grid.Row="3" Grid.Column="1" Text="{Binding SqlPath, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Width="450" Height="32" /> <Button Grid.Row="4" Grid.Column="2" Width="70" Height="25" Margin="0,0,10,0" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Browse" Click="FilePathBrowse_Click"/> </Grid> </GroupBox> <GroupBox Header="WebSite And Pool" FontSize="15" BorderThickness="3" Margin="5,10" Grid.Row="1"> <Grid> <Grid.RowDefinitions> <RowDefinition/> <RowDefinition/> <RowDefinition/> <RowDefinition/> <RowDefinition/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="65*"/> <ColumnDefinition Width="133*"/> <ColumnDefinition Width="Auto"/> </Grid.ColumnDefinitions> <TextBlock Grid.Row="0" Grid.Column="0" Text="WebSite Name" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" Height="26" /> <TextBlock Grid.Row="1" Grid.Column="0" Text="WebSite ID" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" Height="26" /> <TextBlock Grid.Row="2" Grid.Column="0" Text="WebSite PhysicalPath" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" Height="26" /> <TextBlock Grid.Row="3" Grid.Column="0" Text="WebSite Port" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" Height="26" /> <TextBlock Grid.Row="4" Grid.Column="0" Text="Application Pool Name" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" Height="26"/> <TextBox Grid.Row="0" Grid.Column="1" Text="{Binding WebSiteName, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Width="450" Height="32" /> <TextBox Grid.Row="1" Grid.Column="1" Text="{Binding WebSiteID, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Width="450" Height="32" /> <TextBox Grid.Row="2" Grid.Column="1" Text="{Binding PhysicalPath, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Width="450" Height="32" /> <TextBox Grid.Row="3" Grid.Column="1" Text="{Binding WebSitePort, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Width="450" Height="32" /> <TextBox Grid.Row="4" Grid.Column="1" Text="{Binding PoolName, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="Center" FontSize="15" Width="450" Height="32" /> <Button Grid.Row="0" Grid.Column="2" Width="70" Height="25" Margin="0,0,10,0" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Check" Click="WebSiteNameCheck_Click"/> <Button Grid.Row="1" Grid.Column="2" Width="70" Height="25" Margin="0,0,10,0" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Check" Click="WebSiteIDCheck_Click"/> <Button Grid.Row="2" Grid.Column="2" Width="70" Height="25" Margin="0,0,10,0" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Browse" Click="PathBrowse_Click"/> <Button Grid.Row="3" Grid.Column="2" Width="70" Height="25" Margin="0,0,10,0" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Check" Click="WebSitePortCheck_Click"/> <Button Grid.Row="4" Grid.Column="2" Width="70" Height="25" Margin="0,0,10,0" HorizontalAlignment="Left" VerticalAlignment="Center" Content="Check" Click="PoolNameCheck_Click"/> </Grid> </GroupBox> <StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="10"> <Button Width="70" Height="25" Content="OK" Click="Deploy_Click"/> <Button Width="70" Height="25" Content="Cancel" Margin="10,0,0,0" Click="Close_Click"/> </StackPanel> </Grid> </Window>
View的后臺(tái)文件:
using System.Windows; using System.Windows.Controls; using System.Windows.Interactivity; namespace AutoWebTool { /// <summary> /// MainWindow.xaml 的交互邏輯 /// </summary> public partial class MainWindow : Window { private AutoGenerationVM _vm; public MainWindow() { InitializeComponent(); DataContext = new AutoGenerationVM(); _vm = DataContext as AutoGenerationVM; } private bool sqlPath; private void FilePathBrowse_Click(object sender, RoutedEventArgs e) { sqlPath = _vm.GetSqlFilePath(); } private void WebSiteNameCheck_Click(object sender, RoutedEventArgs e) { var isInUse = _vm.CheckNameAndID(); if (isInUse) { MessageBox.Show("1.This name is Empty \r\n2.This name is in use,please change name!"); } else { MessageBox.Show("No Problem!"); } } private void WebSiteIDCheck_Click(object sender, RoutedEventArgs e) { var isInUse = _vm.CheckNameAndID(); if (isInUse) { MessageBox.Show("1.This ID is Empty \r\n2.This ID is in use,please change ID!"); } else { MessageBox.Show("No Problem!"); } } private bool physicalPath; private void PathBrowse_Click(object sender, RoutedEventArgs e) { physicalPath = _vm.GetFolderPath(); } private void WebSitePortCheck_Click(object sender, RoutedEventArgs e) { var isInUse = _vm.CheckWebPort(); if (isInUse) { MessageBox.Show("1.This port is Empty \r\n2.This port is in use,please change port!"); } else { MessageBox.Show("No Problem!"); } } private void PoolNameCheck_Click(object sender, RoutedEventArgs e) { var isInUse = _vm.CkeckPoolName(); if (isInUse) { MessageBox.Show("1.This pool name is Empty \r\n2.This name is in use,please change name!"); } else { MessageBox.Show("No Problem!"); } } private void Deploy_Click(object sender, RoutedEventArgs e) { var dataBaseServerAddressChecked = string.IsNullOrEmpty(_vm.ServerAddress); var dataBaseUserChecked = string.IsNullOrEmpty(_vm.User); var dataBasePasswordChecked = string.IsNullOrEmpty(_vm.Password); var dataBaseScriptChecked = sqlPath; var dataBaseCondition = !dataBaseServerAddressChecked && !dataBaseUserChecked && !dataBasePasswordChecked && !dataBaseScriptChecked; var webSiteNameAndIDChecked = _vm.CheckNameAndID(); var webSitePortChecked = _vm.CheckWebPort(); var applicationPoolNameChecked = _vm.CkeckPoolName(); var webSiteCondition = !webSiteNameAndIDChecked && !physicalPath && !webSitePortChecked && !applicationPoolNameChecked; if (dataBaseCondition&& webSiteCondition) { _vm.Execute(); } else { MessageBox.Show("Please Check Your Input!"); } } private void Close_Click(object sender, RoutedEventArgs e) { Close(); } } public static class PasswordBoxHelper { public static readonly DependencyProperty PasswordProperty = DependencyProperty.RegisterAttached("Password", typeof(string), typeof(PasswordBoxHelper), new FrameworkPropertyMetadata(string.Empty, OnPasswordPropertyChanged)); private static void OnPasswordPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e) { var passwordBox = sender as PasswordBox; string password = (string)e.NewValue; if (passwordBox != null && passwordBox.Password != password) { passwordBox.Password = password; } } public static string GetPassword(DependencyObject dp) { return (string)dp.GetValue(PasswordProperty); } public static void SetPassword(DependencyObject dp, string value) { dp.SetValue(PasswordProperty, value); } } public class PasswordBoxBehavior : Behavior<PasswordBox> { protected override void OnAttached() { base.OnAttached(); AssociatedObject.PasswordChanged += OnPasswordChanged; } private static void OnPasswordChanged(object sender, RoutedEventArgs e) { var passwordBox = sender as PasswordBox; string password = PasswordBoxHelper.GetPassword(passwordBox); if (passwordBox != null && passwordBox.Password != password) { PasswordBoxHelper.SetPassword(passwordBox, passwordBox.Password); } } protected override void OnDetaching() { base.OnDetaching(); AssociatedObject.PasswordChanged -= OnPasswordChanged; } } }
ViewModel:
using System; using System.DirectoryServices; using System.ComponentModel; using System.Linq; using System.Net; using System.Net.NetworkInformation; using Microsoft.Web.Administration; using System.Windows.Forms; using System.Diagnostics; using System.Data.SqlClient; using System.IO; namespace AutoWebTool { public class AutoGenerationVM : INotifyPropertyChanged { public AutoGenerationVM() { _physicalPath = AppDomain.CurrentDomain.BaseDirectory; } //DataBase ServerAddress private string _serverAddress = string.Empty; public string ServerAddress { get { return _serverAddress; } set { if (_serverAddress != value) { _serverAddress = value; NotifyPropertyChanged("ServerAddress"); } } } //DataBase User private string _user = string.Empty; public string User { get { return _user; } set { if (_user != value) { _user = value; NotifyPropertyChanged("User"); } } } //DataBase Password private string _password = string.Empty; public string Password { get { return _password; } set { if (_password != value) { _password = value; NotifyPropertyChanged("Password"); } } } //DataBase SQLPath private string _sqlPath = string.Empty; public string SqlPath { get { return _sqlPath; } set { if (_sqlPath != value) { _sqlPath = value; NotifyPropertyChanged("SqlPath"); } } } public bool GetSqlFilePath() { var openFileDialog = new OpenFileDialog(); openFileDialog.Filter = "數(shù)據(jù)庫腳本文件|*.sql"; if (openFileDialog.ShowDialog() == DialogResult.OK) { SqlPath = openFileDialog.FileName; } return false; } //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //WebSite Name private string _webSiteName = string.Empty; public string WebSiteName { get { return _webSiteName; } set { if (_webSiteName != value) { _webSiteName = value; NotifyPropertyChanged("WebSiteName"); } } } //WebSite ID private string _webSiteID = string.Empty; public string WebSiteID { get { return _webSiteID; } set { if (_webSiteID != value) { _webSiteID = value; NotifyPropertyChanged("WebSiteID"); } } } /// <summary> /// Check WebSite Name and ID /// </summary> /// <returns></returns> public bool CheckNameAndID() { if (string.IsNullOrEmpty(WebSiteName) || string.IsNullOrEmpty(WebSiteID)) return true; DirectoryEntry rootEntry = new DirectoryEntry("IIS://localhost/w3svc"); foreach (DirectoryEntry entry in rootEntry.Children) { if (entry.SchemaClassName.Equals("IIsWebServer", StringComparison.OrdinalIgnoreCase)) { if (WebSiteID == entry.Name) { return true; } if (entry.Properties["ServerComment"].Value.ToString() == WebSiteName) { return true; } } } return false; } //Physical Path private string _physicalPath = string.Empty; public string PhysicalPath { get { return _physicalPath; } set { if (_physicalPath != value) { _physicalPath = value; NotifyPropertyChanged("PhysicalPath"); } } } /// <summary> /// Get Path for WebSite /// </summary> public bool GetFolderPath() { if (string.IsNullOrEmpty(PhysicalPath)) return true; var openFolderDialog = new FolderBrowserDialog(); if (openFolderDialog.ShowDialog() == DialogResult.OK) { PhysicalPath = openFolderDialog.SelectedPath; } return false; } //WebSite Port private string _webSitePort = string.Empty; public string WebSitePort { get { return _webSitePort; } set { if (_webSitePort != value) { _webSitePort = value; NotifyPropertyChanged("WebSitePort"); } } } /// <summary> /// Check WebSite Port /// </summary> /// <returns></returns> public bool CheckWebPort() { try { IPGlobalProperties ipProperties = IPGlobalProperties.GetIPGlobalProperties(); IPEndPoint[] ipEndPoints = ipProperties.GetActiveTcpListeners(); foreach (IPEndPoint endPoint in ipEndPoints) { if (endPoint.Port == Convert.ToInt32(WebSitePort)) { return true; } } return false; } catch { return true; } } //Pool Name private string _poolName = string.Empty; public string PoolName { get { return _poolName; } set { if (_poolName != value) { _poolName = value; NotifyPropertyChanged("PoolName"); } } } /// <summary> /// Check Application Pool Name /// </summary> /// <returns></returns> public bool CkeckPoolName() { if (string.IsNullOrEmpty(PoolName)) return true; var manager = new ServerManager(); var list = manager.ApplicationPools; var matchedItem = list.FirstOrDefault(x => x.Name == PoolName); if (matchedItem != null) return true; return false; } /// <summary> /// Execute Script /// </summary> public void Execute() { //Deploy DataBase var tmpConn = new SqlConnection(); tmpConn.ConnectionString = "SERVER = " + ServerAddress +"; DATABASE = master; User ID = " + User+ "; Pwd = " + Password+ ";"; var scriptFile = new FileInfo(SqlPath); var sqlCreateDBQuery = scriptFile.OpenText().ReadToEnd(); SqlCommand myCommand = new SqlCommand(sqlCreateDBQuery, tmpConn); try { tmpConn.Open(); myCommand.ExecuteNonQuery(); MessageBox.Show("Database has been created successfully!","Create Database", MessageBoxButtons.OK,MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show(ex.ToString(), "Create Database", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } finally { tmpConn.Close(); } try { //Deploy WebSite and Application Pool var script = "net start w3svc " + "& cd c:/Windows/System32/inetsrv " + "& appcmd add site /name:" + WebSiteName + " /id:" + WebSiteID + " /physicalPath:" + PhysicalPath + " /bindings:http/*:" + WebSitePort + ":" + WebSiteName + " & appcmd add apppool /name:" + PoolName + " /managedRuntimeVersion:v4.0 /managedPipelineMode:Integrated" + " & appcmd set site /site.name:" + WebSiteName + " /[path='/'].applicationPool:" + PoolName; ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.WorkingDirectory = @"C:\Windows\System32"; startInfo.FileName = @"C:\Windows\System32\cmd.exe"; startInfo.RedirectStandardInput = true; startInfo.RedirectStandardOutput = true; startInfo.RedirectStandardError = true; startInfo.UseShellExecute = false; startInfo.Verb = "RunAs"; Process process = new Process(); process.StartInfo = startInfo; process.Start(); process.StandardInput.WriteLine(script); process.StandardInput.WriteLine("&exit"); process.StandardInput.Flush(); process.StandardInput.Close(); process.WaitForExit(); MessageBox.Show("IIS WebSite and Application Pool Deployed Successfully!", "Create WebSite and Application Pool", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show(ex.ToString(), "Exception", MessageBoxButtons.OK, MessageBoxIcon.Information); } } public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged(string name) { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name)); } } }
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
- C#如何控制IIS動(dòng)態(tài)添加刪除網(wǎng)站詳解
- IIS下調(diào)用證書出現(xiàn)異常的解決方法 (C#)
- C# WebService發(fā)布以及IIS發(fā)布
- C#實(shí)現(xiàn)獲取IIS站點(diǎn)及虛擬目錄信息的方法
- C#開發(fā)windows服務(wù)實(shí)現(xiàn)自動(dòng)從FTP服務(wù)器下載文件
- FtpHelper實(shí)現(xiàn)ftp服務(wù)器文件讀寫操作(C#)
- C# FTP,GetResponse(),遠(yuǎn)程服務(wù)器返回錯(cuò)誤
- c# 在windows中操作IIS設(shè)置FTP服務(wù)器的示例
相關(guān)文章
WPF實(shí)現(xiàn)帶模糊搜索的DataGrid的示例代碼
這篇文章主要為大家詳細(xì)介紹了WPF如何實(shí)現(xiàn)帶模糊搜索的DataGrid,文中的示例代碼講解詳細(xì),具有一定的借鑒價(jià)值,需要的可以參考一下2023-02-02C#過濾DataTable中空數(shù)據(jù)和重復(fù)數(shù)據(jù)的示例代碼
這篇文章主要給大家介紹了關(guān)于C#過濾DataTable中空數(shù)據(jù)和重復(fù)數(shù)據(jù)的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-01-01C#中Convert.ToString和ToString的區(qū)別分析
這篇文章主要介紹了C#中Convert.ToString和ToString的區(qū)別,是C#初學(xué)者需要牢固掌握的技巧,需要的朋友可以參考下2014-08-08C#獲取系統(tǒng)當(dāng)前日期和時(shí)間的示例詳解
這篇文章主要為大家詳細(xì)介紹了C#如何使用DateTime的Now靜態(tài)屬性動(dòng)態(tài)獲得系統(tǒng)當(dāng)前日期和時(shí)間,文中的示例代碼講解詳細(xì),有需要的小伙伴可以參考一下2024-01-01C#通過NPOI導(dǎo)入導(dǎo)出數(shù)據(jù)EXCEL
這篇文章主要為大家詳細(xì)介紹了C#通過NPOI導(dǎo)入導(dǎo)出數(shù)據(jù)EXCEL,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-02-02Visual Studio 2019 清理空行問題(非正則表達(dá)式)
這篇文章主要介紹了Visual Studio 2019 清理空行問題(非正則表達(dá)式),本文通過實(shí)例截圖給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-04-04