2007-01-01から1年間の記事一覧

symantec topより

製品情報→企業法人→サポート→べりタスサイトはこちら

veritas support

http://www.symantec.com/ja/jp/enterprise/theme.jsp?themeid=spt_avl_index

symantec patch

http://www.symantec.com/content/ja/jp/enterprise/support_docs/be11x_download.html

HTML操作

http://groups.yahoo.co.jp/group/dotnet-csharp/messages/2688?expand=1 http://www.google.co.jp/search?q=WebBrowser+Navigate+%22ref+o%22

クラスタフェイルオーバー

フェールオーバーを識別する http://www.microsoft.com/technet/prodtechnol/windowsserver2003/ja/library/ServerHelp/c7eadf13-ccbf-41c4-8575-571b69c25e2a.mspx?mfr=true サーバー クラスタのトラブルシューティング http://www.microsoft.com/technet/p…

C# 標準出力

StreamWriter sw = new StreamWriter("d:\\work\\mbsa.txt", false, Encoding.GetEncoding("Shift_JIS")); Process process = new Process(); process.StartInfo.FileName = "C:\\Program Files\\Microsoft Baseline Security Analyzer 2\\mbsacli.exe"; //p…

c#

using System; using System.IO; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions;namespace TextCopy { class Program { public Program() { } static void Main(string[] args) { StreamReader sr = new Stre…

正規表現

using System; using System.IO; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions;namespace TextCopy { class Program { public Program() { } static void Main(string[] args) { StreamReader sr = new Stre…

c#

namespace TextCopy { class Program { public Program() { } static void Main(string[] args) { StreamReader sr = new StreamReader("d:\\work\\dest.txt", Encoding.GetEncoding("Shift_JIS")); StreamWriter sw = new StreamWriter("d:\\work\\dest2.tx…

C#,VB 他のプログラムを起動させる

System.Diagnostics.Process hProcess = System.Diagnostics.Process.Start("Notepad"); http://jeanne.wankuma.com/tips/process/waitforexit.html