<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://techbank.jp/Community/utility/FeedStylesheets/atom.xsl" media="screen"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja-JP"><title type="html">Shizuku Blog ～ techbank.jp版～</title><subtitle type="html">～女性エンジニア けろ-みおの苦悩～</subtitle><id>http://techbank.jp/Community/blogs/mymio/atom.aspx</id><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/default.aspx" /><link rel="self" type="application/atom+xml" href="http://techbank.jp/Community/blogs/mymio/atom.aspx" /><generator uri="http://communityserver.org" version="3.1.20917.1142">Community Server</generator><updated>2010-01-03T20:39:00Z</updated><entry><title>ZDNet Japan に第6回目（連載最終回）の記事が掲載されました</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/03/12/25361.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/03/12/25361.aspx</id><published>2010-03-11T17:50:58Z</published><updated>2010-03-11T17:50:58Z</updated><content type="html">ZDNet Japan に第６回目となる、私のインタビュー記事が掲載されました。 ■Windows 7導入：最大のメリットは「管理の合理化」 http://japan.zdnet.com/extra/windows7_panel_200912/story/0,3800102051,20409168-4,00.htm &amp;#160; 話の趣旨としては、 &amp;#160; 「【識者に聞く】Windows 7 と Windows Server 2008 R2 の組み合わせで何を実現したいですか？」 &amp;#160; というテーマで、私なりに今後やりたいことをそのまま書いてみました。 今回で最終回なので、できれば記事の方にコメントして欲しいです。 コメントすると抽選でAmazon商品券 5000円が手に入るんですよ！ 是非お願いします。 ちなみに最終回だからちゃんと書こうと思っていたら、短めに終わっちゃいましたｗ ダラダラ書くよりはマシですが、本来自分の専門分野じゃないところで書かせて頂いたので、 結構苦労したというのが率直な感想です。 野良さんみたいに、某レポートを綺麗に書ける実力が欲しいです。 &amp;#160;...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/03/12/25361.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=25361" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="雑談" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/_D196C78A_/default.aspx" /></entry><entry><title>BitVector32 vs BitArray</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/03/07/25216.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/03/07/25216.aspx</id><published>2010-03-06T15:12:00Z</published><updated>2010-03-06T15:12:00Z</updated><content type="html">プログラミング言語論やアルゴリズムに元々興味がなかった（動けばそれで良いと思っていたダメタイプ）ので、 今まで知らなかったのですが、BitVector32とBitArrayが示す、 TrueとFalseの整数フラグ値と処理速度に違いがあることを知りました。 C# using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; namespace ConsoleApplication1 { [Flags] public enum BitFlag { TrueIndex = 0x00, FalseIndex = 0x01 } class Program { static void Main(string[] args) { // BitVector32は、trueが-1, falseが0 Console.WriteLine(&amp;quot;BitVector32の-1: {0}&amp;quot;, new BitVector32(-1)[(int...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/03/07/25216.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=25216" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="Visual Basic" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/Visual+Basic/default.aspx" /><category term="VB.NET" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/VB.NET/default.aspx" /><category term="C#" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/C_2300_/default.aspx" /></entry><entry><title>[VB.NET] : ADO時代のように構造体を放り込んでループしながらデータ操作できないんですか？の回答</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/21/24804.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/02/21/24804.aspx</id><published>2010-02-20T18:05:00Z</published><updated>2010-02-20T18:05:00Z</updated><content type="html">某所でこんな質問を承りました。 「ADO時代のように構造体を放り込んでループしながらデータ操作できないんですか？ かつてのADOのにあったrs.open rs.addnew rs.edit rs.update rs.close のような、SQLを使わない方法でテーブルに対しての操作は不可能なのでしょうか？」 この質問を某所でソースコード付きで回答すると、投稿が消されてしまうみたいなので、Blogで回答したいと思います。 条件としては、Visual Studio 2008 Express と SQL Server 2008 Express を使用しているとのことなので、 今回は、.NET 初心者の方でもわかる方法でご紹介したいと思います。 ちなみに質問の主に対し、私は 「DataSetやDataTableを使えば、ADO（ADO.NET前）と似たようなことはできますが、 DataSetやDataTableにデータを格納するにはCommandTextでSQLもしくはストアド名を設定し、 （DataAdapterを使って）Fillする必要があるので、結局はCommandTextを設定する必要があります...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/21/24804.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24804" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="VB.NET" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/VB.NET/default.aspx" /></entry><entry><title>ZDNet Japan に第5回目(BranchCache) の記事が掲載されました</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/16/24713.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/02/16/24713.aspx</id><published>2010-02-16T12:54:00Z</published><updated>2010-02-16T12:54:00Z</updated><content type="html">ZDNet Japan に第5回目となる、私のインタビュー記事が掲載されました。 ■バラバラのデータ授受をBranchCacheで一本化できると期待 http://japan.zdnet.com/extra/windows7_panel_200912/story/0,3800102051,20407839-5,00.htm 話の趣旨としては、 「【識者に聞く】データの効率的な受け渡しと生産性の向上にBranchCacheは効くか？」 というお題の中で、Windows 7 や Windows Server 2008 R2 に搭載された 「BranchCache」について自論を展開しています。 実は、自宅でBranchCacheを試したんですが、ちょっと違うなぁと思う印象がありました。 インデックスとどのように連携取っているのか？についても相当謎です。 なお、上記記事に対して、意見を寄せてくれた読者の中から毎回1名様に、 Amazon商品券5,000円分 をプレゼント してくれるそうなので、 是非是非、記事にご意見をお寄せ下さいませ。 （私をはじめとする識者の意見が違うよ等あれば、遠慮なくご指摘くださいませ...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/16/24713.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24713" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author></entry><entry><title>[ASP.NET] ：ITemplete機能を実装したユーザーコントロールで、タグ警告が出てしまった場合</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/15/24676.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/02/15/24676.aspx</id><published>2010-02-14T16:23:00Z</published><updated>2010-02-14T16:23:00Z</updated><content type="html">例えばこんな画面をユーザーコントロール（ascx) で作成したとします。 実はこの画面、ITemplete 型のプロパティとTemplateContainer属性を使用し、 独自でユーザーコントロールを作成した画面になります。 （GridViewやFormView等の標準コントロールは使用しなかった画面です） もしこのようなユーザーコントロールを画面に張り付けた際、下記のような警告が出てしまった場合の 対処方法を簡単にご紹介します。 警告：「要素 ‘ControlName’ に対しては、開始タグと終了タグの間でコンテンツを使用できません」 一番手っとい早い解決策（警告を消す方法）としては、ITemplete型のプロパティを定義している ユーザーコントロールの属性に、 PersistenceMode属性 を付与すると警告を消すことができます。 （Visual Studio 2010 Beta2での話ですが。他のバージョンでは確認してませんのであしからず） ■ ProductControl.ascx.vb Imports System.ComponentModel Imports System...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/15/24676.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24676" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author></entry><entry><title>Dynamics CRM を触る前に、CRMの現状と機能＆業務を知る</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/15/24675.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/02/15/24675.aspx</id><published>2010-02-14T15:39:00Z</published><updated>2010-02-14T15:39:00Z</updated><content type="html">先日、かめたろさんらと飲みに行った際、かめたろさんから「Dynamics CRMの画面を見てみたい」という リクエストを承りました。 確かに画面を見ながら覚えるのも大切なのですが、その前にある程度、CRMの概要を抑えておく必要があります。 （CRMの概念・背景を理解しないと画面項目見ても意味が分からなくなっちゃうので） また、今日までに様々なSIベンダーからCRMパッケージが発売されていますが、 何故、多くの企業からCRMパッケージが発売されているのか？ そして、SaaS型のCRMを展開するSalesFource.comやMicrosoft Dynamics CRM Online との違い、 私が過去に携わったことがある某パッケージとの違いも含め、けろ-みおの個人的な視点でCRMの世界を考察したいと思います。 いろいろとうさんくさいこと言ってるかもしれませんが、間違いがあれば、コメント欄にご指摘頂けると有難いです。 ■CRMの市場 CRMの正式名称は、「Customer Relationship Management」、すなわち「顧客関係管理」です。 主に「コールセンター」を持っている企業で導入されている傾向がありますが...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/15/24675.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24675" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="DynamicsCRM" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/DynamicsCRM/default.aspx" /></entry><entry><title>[Dynamics CRM 4.0] : E-mail Router の必要性と設定手順(Exchange Server 2010編）</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/08/24528.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/02/08/24528.aspx</id><published>2010-02-07T15:02:00Z</published><updated>2010-02-07T15:02:00Z</updated><content type="html">本当は今回のエントリの前に、「CRMとは何か？」ビジネスの視点でお話するエントリを用意していたのですが、 ここ最近、Exchange Server 2010 の手軽さにハマってしまったので、Blogネタが前後してしまいました。 そんな経緯もあり、今回はExchange Server とも連携しているDynamics CRM 4.0のコンポーネント 「E-Mail Router」の導入手順について紹介したいと思います。 （CRMビジネスの話はまた次回のBlogネタに取り上げます orz） E-mail Routerとは？ ところで、この「E-Mail Router」とは、いったい何をするものなのでしょうか？ 一言で言ってしまうと、「Dynamics CRM と 電子メールサーバーとのインターフェイスを提供する、いわば専用コンポーネントみたいなもの」です。 主な特徴としては、Exchange Server との連携ができるというのが売りなんですが、 Dynamics CRM 4.0 からは、 Exchange Server 以外のメールサーバーでも連携できるようになりました。 （普通にSMTPとPOP3...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/02/08/24528.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24528" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="DynamicsCRM" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/DynamicsCRM/default.aspx" /><category term="Exchange Server" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/Exchange+Server/default.aspx" /><category term="IIS" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/IIS/default.aspx" /><category term="IIS7" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/IIS7/default.aspx" /></entry><entry><title>[PowerShell] : Active DirectoryユーザとExchange Server のメールボックスを一緒に作成する</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/30/24281.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/01/30/24281.aspx</id><published>2010-01-30T04:53:00Z</published><updated>2010-01-30T04:53:00Z</updated><content type="html">ネタ元：[PowerShell] : Active DirectoryのユーザをCSVファイルを元に一括作成する http://techbank.jp/Community/blogs/mymio/archive/2010/01/25/24176.aspx 前回は、ADユーザをCSVファイルを元に一括作成する方法をPowerShellを用いてご紹介しましたが、 今回はその応用で、作成したユーザに対し、Exchange Server 2010用のメールボックスも一緒に作成してしまうというものです。 ■Active Directory内のOU構成例 ■取り込み情報のCSVファイル（前回と違うのは、ExchangeOUという列を追加しています。） カンマ区切りのCSVですが、OU列だけ、値を &amp;quot;（ダブルクォート）で括ってます。 SamAccountName Surname DisplayName OU ExchangeOU goku 孫悟空 孫悟空 OU=管理部門,OU=CRM,DC=crm,DC=techbank,DC=jp crm.techbank.jp/CRM/管理部門/goku...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/30/24281.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24281" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="PowerShell" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/PowerShell/default.aspx" /><category term="Exchange Server" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/Exchange+Server/default.aspx" /></entry><entry><title>ZDNet Japan に第5回目（BranchCache）の記事が掲載されました</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/29/24268.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/01/29/24268.aspx</id><published>2010-01-29T14:37:00Z</published><updated>2010-01-29T14:37:00Z</updated><content type="html">ZDNet Japan に第5回目となる、私のインタビュー記事が掲載されました。 ■バラバラのデータ授受をBranchCacheで一本化できると期待 http://japan.zdnet.com/extra/windows7_panel_200912/story/0,3800102051,20407839-4,00.htm &amp;#160; 話の趣旨としては、 &amp;#160; 「【識者に聞く】データの効率的な受け渡しと生産性の向上にBranchCacheは効くか？」 &amp;#160; というお題の中で、Windows 7 や Windows Server 2008 R2 に搭載された 「BranchCache」について自論を展開しています。 実は、自宅でBranchCacheを試したんですが、ちょっと違うなぁと思う印象がありました。 インデックスとどのように連携取っているのか？についても相当謎です。 なお、上記記事に対して、意見を寄せてくれた読者の中から毎回1名様に、 Amazon商品券5,000円分 をプレゼント してくれるそうなので、 是非是非、記事にご意見をお寄せ下さいませ。&amp;#160; ...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/29/24268.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24268" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author></entry><entry><title>[PowerShell] : Active DirectoryのユーザをCSVファイルを元に一括作成する</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/25/24176.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/01/25/24176.aspx</id><published>2010-01-24T15:07:00Z</published><updated>2010-01-24T15:07:00Z</updated><content type="html">今回は、PowerShell入門ネタになります・・・ 実は、ADユーザをCSVファイルを元に一括作成するには、PowerShellを使うと便利ってことに気づいちゃいました。 下記のようなCSVファイルを用意し、一括登録できるようにしてみました。 結構便利です。 OUの構成 CSVの中身 SamAccountName Surname DisplayName OU goku 孫悟空 孫悟空 OU=管理部門,OU=CRM,DC=crm,DC=techbank,DC=jp gohan 孫悟飯 孫悟飯 OU=管理部門,OU=CRM,DC=crm,DC=techbank,DC=jp goten 孫悟天 孫悟天 OU=管理部門,OU=CRM,DC=crm,DC=techbank,DC=jp chichi チチ チチ OU=管理部門,OU=CRM,DC=crm,DC=techbank,DC=jp vegeta べジータ べジータ OU=システム部門,OU=CRM,DC=crm,DC=techbank,DC=jp buruma ブルマ ブルマ OU=システム部門,OU=CRM,DC=crm,DC=techbank...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/25/24176.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24176" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="PowerShell" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/PowerShell/default.aspx" /></entry><entry><title>ZDNet Japan に第3回目(仮想ディスクの活用)のインタビュー記事が掲載されました</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/23/24144.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/01/23/24144.aspx</id><published>2010-01-22T17:57:00Z</published><updated>2010-01-22T17:57:00Z</updated><content type="html">ZDNet Japan に第三回目となる、私のインタビュー記事が掲載されました。 ■VHDの活用で削減できるコスト、できないコスト http://japan.zdnet.com/extra/windows7_panel_200912/story/0,3800102051,20406477-6,00.htm 話の趣旨としては、 「【識者に聞く】仮想ディスク、あなたならどう使う？」 というお題の中で、仮想ディスクをはじめとする「Dynamic IT」導入で ITビジネスがどれぐらいの費用対効果をもたらすのか？を掲載しています。 本当は、費用対効果を数値化したかったんですが、執筆の締切が短かったこともあり、 記載できませんでした。 今回は、かなりビジネス寄りのお話なので、導入決定権を持っている企業のTOP、幹部職員、アーキテクト向けの お話になりますので、ITビジネスの話にあまり関心がなく、 常に技術を追求していきたい方にとっては、少し物足りない記事かもしれません。 なお、上記記事に対して、意見を寄せてくれた読者の中から1名様に、Amazon商品券5,000円分 をプレゼント してくれるそうなので...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/23/24144.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24144" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="雑談" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/_D196C78A_/default.aspx" /><category term="仮想化" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/_EE4EF3601653_/default.aspx" /></entry><entry><title>BCDEDITとしてもVHDブートができない方へ &amp; Windows Server 2008 R2 用のVHDがどうしても作れない方へ</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/18/24038.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/01/18/24038.aspx</id><published>2010-01-18T09:55:00Z</published><updated>2010-01-18T09:55:00Z</updated><content type="html">Virtual PC や Hyper-V で仮想ディスクを作成すると、VHDという仮想ディスク用のファイルを作成できるんですが、 Windows 7 / Windows Server 2008 R2 では、Virutal PC などがなくても、簡単にVHDファイルを作成できるように なったというのはご存じの方も多いと思います。 しかも、Virtual PC や Hyper-V で作成したVHDにも簡単に接続でき、 さらに、VHDをマウントしてブートまでできるようになりました。 このあたりの話はさすがにもう有名なので、詳細は、 http://www.computerworld.jp/topics/win7/151010.html http://blogs.msdn.com/tomohn/archive/2009/07/23/vhd-boot-settings-tips.aspx をご覧頂くとして、今回、取り上げるネタは、上記サイトのように、 VHDにBCDEDITしてブートできるよう設定したのに、何故だかブートできない！という方向けのネタになります。 BCDEDITし、下記のようなエラーがWindows...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/18/24038.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24038" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="Windows Server 2008" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/Windows+Server+2008/default.aspx" /><category term="Exchange Server" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/Exchange+Server/default.aspx" /><category term="仮想化" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/_EE4EF3601653_/default.aspx" /><category term="VHD" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/VHD/default.aspx" /></entry><entry><title>[Exchange Server ＆ PowerShell] : Exchange Management Shell を使う</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/16/24008.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/01/16/24008.aspx</id><published>2010-01-16T12:13:00Z</published><updated>2010-01-16T12:13:00Z</updated><content type="html">Exchange Server 2010 のインストールでの話ですが、実は、Exchange Server 2010 は、 インストール時にプロダクトキーの入力を求められないんです。 早い話がインストール後にプロダクトキーを入力しなさいというスタイルですね。 このプロダクトキーを入力しないと、120日間は体験版となり、さらに120日を過ぎて、 入力しなかった場合、仮に、Exchange Server 2010 Enterprise Editionでインストールしていても、 Exchange Server 2010 Standard Edition として動作し、さらにマイクロソフトからのサポートを 受けられないといった制約事項があるようです。 Exchange Server は、2000 の時に本格的にいじくりまわしてましたが、時代が変わり、2010で 画面が激変していたのは驚きました。 以前、かめたろさんが紹介してくれた　ISA Server の最新エディションを見た時と同じくらいの カルチャショックを受けました。もう年かな。 ちなみに、このExchange Server 2010 Enterprise...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/16/24008.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=24008" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="PowerShell" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/PowerShell/default.aspx" /><category term="Exchange Server" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/Exchange+Server/default.aspx" /></entry><entry><title>[Dynamics CRM]：Windows Server 2008 にDynamics CRM 4.0 をインストールする方法</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/13/23931.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/01/13/23931.aspx</id><published>2010-01-13T08:49:00Z</published><updated>2010-01-13T08:49:00Z</updated><content type="html">Dynamics CRM に興味をもたれた方のBlogでは既にインストール方法が紹介されていますが、 正規のインストール方法だと、下記のようなエラーが発生することがあります。 エラーパターン１： 「サービス msftesql がコンピュータ ‘xxx’ で見つかりませんでした。」 msftesqlは、SQL Server フルテキストインデックス用サービスの実行ファイルですね。 「SQL Server フルテキストインデックスサービス」をインストールしているにもかかわらず、 このエラーが発生した方は、この後、後述するインストール手順を踏んでみてください。 原因は、SQL Server のフルテキストインデックスがSQL Server 内のインスタンスで有効になっているかどうか Dynamics CRM 4.0のインストーラーがチェックする仕組みが組み込まれているんですが、 そもそも、フルテキスト検索は、SQL Server のインスタンスに依存することがあっても、 Windows Server 2008 のサービスに依存しているわけではないので、 インストーラーが間違ったチェック（サービスに対してチェック...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/13/23931.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=23931" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="DynamicsCRM" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/DynamicsCRM/default.aspx" /></entry><entry><title>2010年 新年のご挨拶</title><link rel="alternate" type="text/html" href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/03/23685.aspx" /><id>http://techbank.jp/Community/blogs/mymio/archive/2010/01/03/23685.aspx</id><published>2010-01-03T11:39:00Z</published><updated>2010-01-03T11:39:00Z</updated><content type="html">あけましておめでとうございます。昨年はいろいろと暗いニュースが多く、私個人にとっても 将来を考えさせられる1年だったので、今年はもっと明るい話題が提供できれば良いなと思います。 そんなわけで、本年も宜しくお願いします。 さて、私事で大変恐縮ですが、本年もMicrosoft MVP を ASP/ASP.NET のジャンルで再受賞させて頂きました。 昨年はこのtechbank.jpというコミュニティを運営する難しさを知った1年でしたが、 techbank.jp でBlogを書いていらっしゃるメンバーの方々はじめ、 techbank.jpで立ち上げている各種書籍執筆プロジェクトに参加している著者の皆様、校正スタッフの皆様にも 支えて頂いた結果、再受賞させて頂くことができました。 ご協力頂いているメンバーの皆様には、この場をお借りし、厚く御礼申し上げます。 また、昨年まではASPやASP.NET、ISAPI、Access + VBA, PowerShellを扱ったTIPSをBlogで紹介しておりましたが、 今年からは発想を変え「ビジネスに通用するITソリューション」を銘打ったBlogエントリをUPしていきたいと考えております...(&lt;a href="http://techbank.jp/Community/blogs/mymio/archive/2010/01/03/23685.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://techbank.jp/Community/aggbug.aspx?PostID=23685" width="1" height="1"&gt;</content><author><name>kero-mio</name><uri>http://techbank.jp/Community/members/kero_2D00_mio.aspx</uri></author><category term="雑談" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/_D196C78A_/default.aspx" /><category term="DynamicsCRM" scheme="http://techbank.jp/Community/blogs/mymio/archive/tags/DynamicsCRM/default.aspx" /></entry></feed>