<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
		xmlns:xhtml="http://www.w3.org/1999/xhtml"
>

<channel>
	<title>いんちきTech</title>
	<atom:link href="http://it.snds.jp/feed" rel="self" type="application/rss+xml" />
	<link>http://it.snds.jp</link>
	<description>略してIT</description>
	<lastBuildDate>Tue, 24 Aug 2010 14:42:17 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/feed" />
		<item>
		<title>2010年8月の電気料金</title>
		<link>http://it.snds.jp/operations/811.html</link>
		<comments>http://it.snds.jp/operations/811.html#comments</comments>
		<pubDate>Tue, 24 Aug 2010 14:37:26 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[運用]]></category>
		<category><![CDATA[電気代]]></category>

		<guid isPermaLink="false">http://it.snds.jp/?p=811</guid>
		<description><![CDATA[
¥25,694 -
先月とたいして変わらない。。。と思いつつも、先月と約 ¥1,000 違うんだよなぁ。
誤差 1K って普通の家庭にしたら結構なもんだと思うんだけど。。。
来月は引越しするから比較できないと思うけど、 [...]

<h3 style="margin-top:5em;">関連記事:</h3>
(( 関連記事は特にありません ))]]></description>
			<content:encoded><![CDATA[<p><a href="http://it.snds.jp/wp-content/uploads/2010/08/201008_billing.jpg"><img src="http://it.snds.jp/wp-content/uploads/2010/08/201008_billing_thumb.jpg" border="0" alt="2010-08_billing" title="2010-08_billing" width="300" height="226" style="background-image: none; margin: 10px; padding-left: 0px; padding-right: 0px; display: inline; padding-top: 0px; border: 0px;" /></a></p>
<p><span style="color: #ff0000; font-size: 2.4em;"><strong>¥25,694 -</strong></span></p>
<p><a href="http://it.snds.jp/operations/687.html">先月</a>とたいして変わらない。。。と思いつつも、先月と約 ¥1,000 違うんだよなぁ。</p>
<p>誤差 1K って普通の家庭にしたら結構なもんだと思うんだけど。。。</p>
<p>来月は引越しするから比較できないと思うけど、引越しでエアコン新しくなるから、省エネ効果で安くなるといいなぁ。</p>


<h3 style="margin-top:5em;">関連記事:</h3><p>(( 関連記事は特にありません ))</p>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/operations/811.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/operations/811.html" />
	</item>
		<item>
		<title>Office の「最近使ったファイル」を削除する</title>
		<link>http://it.snds.jp/software/805.html</link>
		<comments>http://it.snds.jp/software/805.html#comments</comments>
		<pubDate>Fri, 20 Aug 2010 06:19:21 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[Office]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[スクリプト]]></category>
		<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[運用]]></category>
		<category><![CDATA[VBScript]]></category>
		<category><![CDATA[ツール]]></category>

		<guid isPermaLink="false">http://it.snds.jp/?p=805</guid>
		<description><![CDATA[メモがてら。

Option Explicit
On Error Resume Next

'変数宣言
Dim oFS, oSh
Dim sRecentPath, sRecentFilePath

'オブジェクト作成
S [...]

<h3 style="margin-top:5em;">関連記事:</h3>
(( 関連記事は特にありません ))]]></description>
			<content:encoded><![CDATA[<p>メモがてら。</p>
<pre>
Option Explicit
On Error Resume Next

'変数宣言
Dim oFS, oSh
Dim sRecentPath, sRecentFilePath

'オブジェクト作成
Set oFS = CreateObject("Scripting.FileSystemObject")
Set oSh = CreateObject("WScript.Shell")

'Recentフォルダパス指定
sRecentPath = oFS.BuildPath(_
 oSh.ExpandEnvironmentStrings("%AppData%"),_
 "Microsoft\Office\Recent")

If oFS.FolderExists(sRecentPath) Then
	'Recentファイルパス指定
	sRecentFilePath = oFS.BuildPath(sRecentPath, "*.lnk")

	'ファイル削除
	oFS.DeleteFile sRecentFilePath
Else
	Set oFS = Nothing
	Set oSh = Nothing
	WScript.Quit
End If

Set oFS = Nothing
Set oSh = Nothing
</pre>
<p>OfficeXP以降かつ、ポリシーで「最近使ったファイルを消去する」とかなんとかいうポリシーを有効にしていればこんなのいらないけど、Office2000 や Office97 を面倒見ないといけないこともあってガッと作った。後悔はしていない。</p>


<h3 style="margin-top:5em;">関連記事:</h3><p>(( 関連記事は特にありません ))</p>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/software/805.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/software/805.html" />
	</item>
		<item>
		<title>STOPエラー 0&#215;00000101 &#8211; CLOCK_WATCHDOG_TIMEOUT</title>
		<link>http://it.snds.jp/software/windows/799.html</link>
		<comments>http://it.snds.jp/software/windows/799.html#comments</comments>
		<pubDate>Thu, 05 Aug 2010 13:55:00 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[トラブルシューティング]]></category>
		<category><![CDATA[自作PC]]></category>
		<category><![CDATA[STOPエラー]]></category>
		<category><![CDATA[Windows7]]></category>
		<category><![CDATA[Windwos Server 2008 R2]]></category>

		<guid isPermaLink="false">http://it.snds.jp/software/windows/799.html</guid>
		<description><![CDATA[数か月前の話ですが、Intel Xeon L3426 を使ったサーバーを調達して、WS2008R2 + Server Core + Hyper-V な環境で使い始めていたんですが、たまに BSOD を吐きながらリブートす [...]

<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/software/windows/283.html' rel='bookmark' title='Permanent Link: Windows Server 2008 R2 配布開始'>Windows Server 2008 R2 配布開始</a></li>
<li><a href='http://it.snds.jp/software/windows/581.html' rel='bookmark' title='Permanent Link: WS2008 R2 ドメインコントローラ移行 作業メモ：Hyper-V 2.0 インストール'>WS2008 R2 ドメインコントローラ移行 作業メモ：Hyper-V 2.0 インストール</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>数か月前の話ですが、Intel Xeon L3426 を使ったサーバーを調達して、WS2008R2 + Server Core + Hyper-V な環境で使い始めていたんですが、たまに BSOD を吐きながらリブートするという現象が起こっていました。</p>
<p>放っておくわけにもいかないので (数か月放置しましたが) ちょっと調べてみましたよ。</p>
<p>とりあえずイベントログ確認。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/08/bugcheck_1001.png"><img src="http://it.snds.jp/wp-content/uploads/2010/08/bugcheck_1001_thumb.png" border="0" alt="bugcheck_1001" title="bugcheck_1001" width="367" height="255" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p>STOPエラーの 0&#215;00000101 ということで、エラーコードでググってみると、</p>
<p><a href="http://support.microsoft.com/kb/975530/ja" target="_blank">停止エラー メッセージおよび Windows Server 2008 R2 を実行している Intel Xeon 5500 シリーズ processor-based コンピューターで Hyper-V の役割がインストールされている:「0&#215;00000101 &#8211; CLOCK_WATCHDOG_TIMEOUT」</a></p>
<p>MS の KB でこんなのが引っかかってきました。</p>
<p>機械翻訳でアレですが、概ね内容とマッチしている模様。ググりながら<a href="http://www.microsoft.com/japan/whdc/DevTools/Debugging/default.mspx" target="_blank">メモリダンプ</a>の準備とかしていましたが、その必要もなさそうなので素直に KB の内容を実行してみることに。</p>
<p>とは言っても対応は簡単。MS から修正プログラムが出ているのでそれを入手～インストールし、あとは様子を見るだけ。</p>
<p>ただし、このパッチは MS にリクエストを出してメールで送ってもらう必要があります。</p>
<p>スクリーンショットは撮り忘れたのですが、せっかくなのでざっくり手順を。</p>
<hr />
<ol>
<li>上記 KB ページの記事見出しの近くに、パッチ入手のためのリンクがあるのでクリックします。<br />
<a href="http://it.snds.jp/wp-content/uploads/2010/08/patch_link01.png"><img src="http://it.snds.jp/wp-content/uploads/2010/08/patch_link01_thumb.png" border="0" alt="patch_link01" title="patch_link01" width="391" height="83" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></li>
<li>使用条件が表示されるので、同意して進みます。</li>
<li>修正プログラムの選択とリクエスト送信のフォーム (下図) が表示されるので、必要事項を記入してリクエストを送信します。<br />
<a href="http://it.snds.jp/wp-content/uploads/2010/08/patch_link02.png"><img src="http://it.snds.jp/wp-content/uploads/2010/08/patch_link02_thumb.png" border="0" alt="patch_link02" title="patch_link02" width="244" height="110" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a><br />
ちなみに、↑をみると「リリース」欄に「<strong>sp1</strong>」の表示が。おそらく、Win7/WS08R2 SP1 で修正される問題なのでしょう。</li>
<li>リクエストを送信すると、入力したメールアドレスに修正プログラムの入手先を送付した旨が通知されますので、メールを受信します。</li>
<li>「ご依頼の修正プログラムのダウンロード リンク」というサブジェクトのメールが該当のメールになります。本文下部にダウンロード用のリンクと、書庫解凍用のパスワードが表示されていますので、淡々とダウンロードします。</li>
<li>あとは実行するだけ。再起動も必要だったかな？(忘れた)</li>
</ol>
<hr />
<p>手順は以上です。このエントリ時点で昨日の今日なので、もう少し間をおいてみないと何とも言えませんが、30分に1度くらいのペースで BSOD していたのがパッタリ止んだので、効いているような気がします。</p>
<p>以下に再発の追記がなければこれで解決という考えでよろしいかと。</p>


<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/software/windows/283.html' rel='bookmark' title='Permanent Link: Windows Server 2008 R2 配布開始'>Windows Server 2008 R2 配布開始</a></li>
<li><a href='http://it.snds.jp/software/windows/581.html' rel='bookmark' title='Permanent Link: WS2008 R2 ドメインコントローラ移行 作業メモ：Hyper-V 2.0 インストール'>WS2008 R2 ドメインコントローラ移行 作業メモ：Hyper-V 2.0 インストール</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/software/windows/799.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/software/windows/799.html" />
	</item>
		<item>
		<title>Microsoft Translator ウィジェット</title>
		<link>http://it.snds.jp/webdesign/785.html</link>
		<comments>http://it.snds.jp/webdesign/785.html#comments</comments>
		<pubDate>Tue, 27 Jul 2010 19:29:00 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[Webサービス]]></category>
		<category><![CDATA[Webデザイン]]></category>
		<category><![CDATA[ツール]]></category>
		<category><![CDATA[マイクロソフト]]></category>

		<guid isPermaLink="false">http://it.snds.jp/webdesign/785.html</guid>
		<description><![CDATA[前から付けようと思っていた Microsoft Translator ウィジェットをようやくつけてみた。
だから何だと言われればそれまでですが。
そもそもこんなテキトーな書き方しているブログじゃまともな翻訳なんてされませ [...]

<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/webservice/215.html' rel='bookmark' title='Permanent Link: Microsoft Store'>Microsoft Store</a></li>
<li><a href='http://it.snds.jp/hardware/299.html' rel='bookmark' title='Permanent Link: PCヘビーユーザーにオススメのマウス'>PCヘビーユーザーにオススメのマウス</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>前から付けようと思っていた <a href="http://www.microsofttranslator.com/widget/" target="_blank">Microsoft Translator ウィジェット</a>をようやくつけてみた。</p>
<p>だから何だと言われればそれまでですが。</p>
<p>そもそもこんなテキトーな書き方しているブログじゃまともな翻訳なんてされません。ええ。ただの自己満足ですハイ。</p>
<p>ちなみに、おおもとの <a href="http://www.microsofttranslator.com/" target="_blank">Bing Translator</a> 。URL は www.microsofttranslator.com なのに、サイト名は Bing Translator とか後付け感たっぷりというか「<strong>ちゃんとしてよ</strong>」って感じですが、翻訳性能はなかなか気に入っています。</p>
<p>職場や友人を観察する感じでは、翻訳サイトは Excite が人気っぽい感じで、私もわりと最近までメインで使っていたんですが、特に技術文書系とは相性がいいようで、少なくともそっち方面に関しては Excite よりまともな結果を返してくれます。</p>
<p>試しに手持ちマザボのマニュアルの中から抜粋して試してみます。</p>
<h3>原文</h3>
<pre>ATX PS/2 Keyboard and PS/2 Mouse Ports
The ATX PS/2 keyboard and PS/2 mouse are located next to
the Back Panel USB Ports 0/1 on the motherboard.
See the table at right for pin definitions.</pre>
<h3>Bing Translator</h3>
<p><a rel="attachment wp-att-781" href="http://it.snds.jp/webdesign/785.html/attachment/translation_bing-png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/translation_bing.png" alt="Bing Translator の翻訳結果" title="translation_bing.png" width="527" height="236" class="alignnone size-full wp-image-781" /></a></p>
<h3>Excite 翻訳</h3>
<p><a rel="attachment wp-att-783" href="http://it.snds.jp/webdesign/785.html/attachment/translation_excite-png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/translation_excite.png" alt="Excite の翻訳結果" title="translation_excite.png" width="340" height="311" class="alignnone size-full wp-image-783" /></a></p>
<p>こんな感じで、若干 Bing 側の方が読み取りやすい感じです。</p>
<p>もちろんこれは私の主観であり、かつ技術的な文章以外ではそれほど変わらなかったり、むしろ Excite 側の方が優秀だったりすることも多々あります。</p>
<p>ただ、英語からきしなのに英文マニュアルとかを読まなきゃいけないことが多い私としては重宝させてもらっています。</p>


<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/webservice/215.html' rel='bookmark' title='Permanent Link: Microsoft Store'>Microsoft Store</a></li>
<li><a href='http://it.snds.jp/hardware/299.html' rel='bookmark' title='Permanent Link: PCヘビーユーザーにオススメのマウス'>PCヘビーユーザーにオススメのマウス</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/webdesign/785.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/webdesign/785.html" />
	</item>
		<item>
		<title>SQL Server 2008 R2 のインストール その2</title>
		<link>http://it.snds.jp/software/775.html</link>
		<comments>http://it.snds.jp/software/775.html#comments</comments>
		<pubDate>Tue, 27 Jul 2010 15:50:00 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[構築]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[サーバー]]></category>

		<guid isPermaLink="false">http://it.snds.jp/software/775.html</guid>
		<description><![CDATA[前回は本体インストールのさわりまで書きましたので、その続きです。
前回書き忘れましたが、インストール環境はドメイン参加済みの Windows Server 2008 R2 ＠ Hyper-V です。スタンドアロンだと色々 [...]

<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/software/738.html' rel='bookmark' title='Permanent Link: SQL Server 2008 R2 のインストール その1'>SQL Server 2008 R2 のインストール その1</a></li>
<li><a href='http://it.snds.jp/software/windows/34.html' rel='bookmark' title='Permanent Link: Windows Server 2008 環境の導入'>Windows Server 2008 環境の導入</a></li>
<li><a href='http://it.snds.jp/software/windows/40.html' rel='bookmark' title='Permanent Link: Windows Server 2008 のインストール'>Windows Server 2008 のインストール</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><a title="SQL Server 2008 R2 のインストール その1" href="http://it.snds.jp/software/738.html">前回は本体インストールのさわりまで書きましたので</a>、その続きです。</p>
<p>前回書き忘れましたが、インストール環境はドメイン参加済みの Windows Server 2008 R2 ＠ Hyper-V です。スタンドアロンだと色々ややこしそうだし、個人的に SQL Server をスタンドアロン環境で使う機会がほとんどないので許してください。(・ω・)</p>
<hr />
<h3>機能の選択</h3>
<p>インストールする機能を選択します。これはもう何に使うかによって変わってきますが、今回は「後々 SharePoint で使おうかなー」なんて想定と伏線でもって選択してみたいと思います。</p>
<p>とか言いつつワリとテキトーですが、あまり欲張ると重くなるので必要最低限にしておくのがベターです。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst20.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst20_thumb.png" border="0" alt="sql08r2_inst20" title="sql08r2_inst20" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>インストール ルール</h3>
<p>ここでもチェックが入ります。例によって合格を確認して次へ進みます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst21.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst21_thumb.png" border="0" alt="sql08r2_inst21" title="sql08r2_inst21" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>インスタンスの構成</h3>
<p>インスタンス名やら何やらを決めます。デフォルトでGO。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst22.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst22_thumb.png" border="0" alt="sql08r2_inst22" title="sql08r2_inst22" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>必要ディスク領域</h3>
<p>インストールに必要なディスク領域が表示されます。確認して次へ。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst23.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst23_thumb.png" border="0" alt="sql08r2_inst23" title="sql08r2_inst23" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>サーバーの構成</h3>
<p>使用するサービス アカウントと照合順序 (文字コードとか) を設定します。</p>
<p>まずはサービス アカウントですが、これもセミナーとかだと「なるべく専用のユーザー作ってそれを使ってね」とか言いながら、なんだかんだで SYSTEM アカウントで進めることが多いというある意味やっかいな設定箇所ですが、なんか悔しいのできちんとユーザー作って進めます。</p>
<p>とはいえ、各サービスにそれぞれ別のユーザー作るとかやってられないので、とりあえず SQL Server用として 1 つのユーザーを作り、それを使っていきたいと思います。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst24.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst24_thumb.png" border="0" alt="sql08r2_inst24" title="sql08r2_inst24" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p>※個人的な理由により、SQL server Agent サービスを手動から自動へ変更しています。</p>
<p>照合順序タブでは、既定の「Japanese_CI_AS」になっていることを確認して次へ進みます。必要に応じて変更してください。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst25.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst25_thumb.png" border="0" alt="sql08r2_inst25" title="sql08r2_inst25" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>データベース エンジンの構成</h3>
<p>データベース エンジンの構成ということで、「アカウント」「データ ディレクトリ」そして「FILESTREAM」の 3 つについて設定していきます。(タブで分かれています。)</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst26.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst26_thumb.png" border="0" alt="sql08r2_inst26" title="sql08r2_inst26" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>アカウントの準備</h3>
<p>認証モードと SQL Server 管理者を設定します。</p>
<p>SA でやってもいいですが、今回はせっかくのドメイン環境なので Windows 認証モード を使います。SQL Server 管理者は、ビルトインの Administrator を指定すると何かと便利だったりしますが、できれば専用アカウントを使った方がいいっぽいです。</p>
<p>今回ここは後の利便性のために Administrator を使います。さっきと言ってること違いますが気にしない方向で。</p>
<p>追加方法は。。。見ればわかると思いますが、下の3つのボタンからどうぞ。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst27.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst27_thumb.png" border="0" alt="sql08r2_inst27" title="sql08r2_inst27" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>データ ディレクトリ</h3>
<p>各種データベース ディレクトリを指定します。既定では %ProgramFiles% なディレクトリが指定されていますが、これだとメンテ性やらパフォーマンスが落ちかねないので、別のドライブを指定するのが定石ですね。</p>
<p>ここではデータ ルート ディレクトリ D:\ 直下に設定することにします。</p>
<p>データ ルート ディレクトリを変更すると、その他のパスもそれに合わせて自動的に変更されます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst28.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst28_thumb.png" border="0" alt="sql08r2_inst28" title="sql08r2_inst28" width="244" height="183" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>FILESTREAM</h3>
<p>正直言うと「何コレ？」な項目だったりするのですが、以前受けた SharePoint2010 セミナーで <a title="高添はここにいます" href="http://blogs.technet.com/b/osamut/" target="_blank">MS エバンジェリストの高添氏</a>が「こうやっとけ」と言ってた気がしたので、盲目的に従っています。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst29.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst29_thumb.png" border="0" alt="sql08r2_inst29" title="sql08r2_inst29" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>Reporting Services の構成</h3>
<p>機能選択で Reporting Services を選択しているとこの項目が現れます。別にここで構成してしまってもいいような気もしますが、これもセミナーで聞いた内容に従い「レポート サーバーを構成せずにインストールする」にチェックして次に進みます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst30.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst30_thumb.png" border="0" alt="sql08r2_inst30" title="sql08r2_inst30" width="244" height="183" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>エラー レポート</h3>
<p>SQL Server のエラーを MS に送信するかどうかの確認です。実際のところ実運用前提だとチェックは入れられないでしょうが、評価検証時などで気が向いたらチェックしてみてもいいでしょう。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst31.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst31_thumb.png" border="0" alt="sql08r2_inst31" title="sql08r2_inst31" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>インストール構成ルール</h3>
<p>今まで設定してきた内容におかしなところがないかどうかのチェックが入ります。全て合格していることを確認して次へ進みましょう。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst32.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst32_thumb.png" border="0" alt="sql08r2_inst32" title="sql08r2_inst32" width="244" height="183" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>インストールの準備完了</h3>
<p>ここまでの構成が表示されるので、間違いがないか(ヒマなら)確認します。「インストール」をクリックするとインストールが始まります。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst33.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst33_thumb.png" border="0" alt="sql08r2_inst33" title="sql08r2_inst33" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>インストールの進行状況</h3>
<p>インストールが始まります。長いです。マシンがダウンしない限り途中で止まることは無いはずなので、食事をするなり、別の仕事を片付けるなり、仮眠をとるなり、思い思いに時間をつぶしてください。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst34.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst34_thumb.png" border="0" alt="sql08r2_inst34" title="sql08r2_inst34" width="244" height="183" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>インストール完了</h3>
<p>インストールが正常に完了するとこの画面になります。最後の最後にエラー吐いてたりするとやり場のない憤りに苛まれることになりますが、今回は無事終わりました。「閉じる」をクリックします。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst35.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst35_thumb.png" border="0" alt="sql08r2_inst35" title="sql08r2_inst35" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>インストール終了後</h3>
<p>インストールが終わると、インストール センターに戻ってきます。ここから Microsoft Update に直接飛べたりもするので、アップデートの確認などしておくといいでしょう。</p>
<p>スクリーンショットは省きますが、Management Studio などで SQL Server への接続確認など、気になるところを色々触って確認してみてください。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst36.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst36_thumb.png" border="0" alt="sql08r2_inst36" title="sql08r2_inst36" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<hr /><span style="font-size: x-small;">以上で SQL Server 2008 R2 のインストール手順は終了です。</span></p>
<p>途中軽く触れましたが、SharePoint 2010 のインストール手順などのスクリーンショットもあるので、気が向いたらそのうちまとめます。</p>


<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/software/738.html' rel='bookmark' title='Permanent Link: SQL Server 2008 R2 のインストール その1'>SQL Server 2008 R2 のインストール その1</a></li>
<li><a href='http://it.snds.jp/software/windows/34.html' rel='bookmark' title='Permanent Link: Windows Server 2008 環境の導入'>Windows Server 2008 環境の導入</a></li>
<li><a href='http://it.snds.jp/software/windows/40.html' rel='bookmark' title='Permanent Link: Windows Server 2008 のインストール'>Windows Server 2008 のインストール</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/software/775.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/software/775.html" />
	</item>
		<item>
		<title>SQL Server 2008 R2 のインストール その1</title>
		<link>http://it.snds.jp/software/738.html</link>
		<comments>http://it.snds.jp/software/738.html#comments</comments>
		<pubDate>Mon, 26 Jul 2010 18:04:37 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[ソフトウェア]]></category>
		<category><![CDATA[構築]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[サーバー]]></category>

		<guid isPermaLink="false">http://it.snds.jp/software/738.html</guid>
		<description><![CDATA[何かしらインスコするたびにスクリーンショットを撮ってみるものの、ブログ更新自体を盛大にサボりまくっているおかげで溜りまくってしまい、それがまた更新意欲を下げることになり、結果として長期間放置状態となり、そのせいで肝心のイ [...]

<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/software/775.html' rel='bookmark' title='Permanent Link: SQL Server 2008 R2 のインストール その2'>SQL Server 2008 R2 のインストール その2</a></li>
<li><a href='http://it.snds.jp/software/windows/34.html' rel='bookmark' title='Permanent Link: Windows Server 2008 環境の導入'>Windows Server 2008 環境の導入</a></li>
<li><a href='http://it.snds.jp/software/windows/40.html' rel='bookmark' title='Permanent Link: Windows Server 2008 のインストール'>Windows Server 2008 のインストール</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>何かしらインスコするたびにスクリーンショットを撮ってみるものの、ブログ更新自体を盛大にサボりまくっているおかげで溜りまくってしまい、それがまた更新意欲を下げることになり、結果として長期間放置状態となり、そのせいで肝心のインスコ方法を忘れるという悪循環かつダメ人間な今日この頃でございます。</p>
<p>というわけで今回はリハビリも兼ねて SQL Server 2008 R2 のイントール手順などをまとめていきたいと思いますよ。</p>
<p>ちなみにこのネタもリリース翌日にインスコ＆SS撮影したにも関わらず、今となってはイイ感じに今更感が漂いまくりなネタでございます。詳しいインスコ手順は忘れ気味なので、基本的にスクリーンショットを羅列する感じで進めていきます。</p>
<hr />
<h3>はじめに</h3>
<p>知っている人は知っているでしょうが、SQL Server のインストールは非常に時間がかかります。マシンスペックにもよりますが、セットアップ実行～各種構成～完了まで、2時間は見ておいてください。</p>
<p>結構なスペックのサーバー機でも約1時間、スペックの低いマシンの場合、ヘタすると4時間以上かかったりする場合もあります (というかかかった) ので、インストールを始めるタイミングには注意しましょう。</p>
<h3>セットアップ実行</h3>
<p>メディアをセットしてセットアップを実行します。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst02.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst02_thumb.png" border="0" alt="sql08r2_inst02" title="sql08r2_inst02" width="244" height="194" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p>順番的にどの辺だったか記憶が怪しいですが、セットアップを実行するとこんなダイアログが出てきます。OKで進みます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst01.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst01_thumb.png" border="0" alt="sql08r2_inst01" title="sql08r2_inst01" width="244" height="85" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p>セットアップが開始されます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst03.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst03_thumb.png" border="0" alt="sql08r2_inst03" title="sql08r2_inst03" width="244" height="57" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>SQL Server インストール センター</h3>
<p>SQL Server インストール センターが起動してきます。SQL Server のインストールやらメンテやらがワリと一元的に出来るようになっています。MSFC (MSフェイルオーバー クラスタ) の下準備が出来ていれば、ここから SQL Server のクラスタを組んだりすることもできます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst04.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst04_thumb.png" border="0" alt="sql08r2_inst04" title="sql08r2_inst04" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>システム構成の確認</h3>
<p>手始めに、左ペインの「プラン」が選択されている状態で 「<strong>システム構成チェッカー</strong>」を実行してみます。全て合格になっていることを確認しておきます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst05.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst05_thumb.png" border="0" alt="sql08r2_inst05" title="sql08r2_inst05" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst06.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst06_thumb.png" border="0" alt="sql08r2_inst06" title="sql08r2_inst06" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>インストール開始</h3>
<p>インストール センターに戻ってきました。左ペインの「インストール」を選択し、「<strong>新規インストールを実行するか、既存のインストールに機能を追加します。</strong>」を選択します。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst07.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst07_thumb.png" border="0" alt="sql08r2_inst07" title="sql08r2_inst07" width="244" height="182" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>セットアップ サポート ルール 1</h3>
<p>本体のインストール前に、セットアップ サポート ルールというチェックが実行されます。インストールするにあたって問題が出ないかどうかのチェックが入ります。上のシステム構成チェッカーに合格していれば問題ありませんが、全て合格していることを確認してOKします。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst08.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst08_thumb.png" border="0" alt="sql08r2_inst08" title="sql08r2_inst08" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p>セットアップが続行されます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst09.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst09_thumb.png" border="0" alt="sql08r2_inst09" title="sql08r2_inst09" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>プロダクト キーの入力</h3>
<p>プロダクト キーを入力します。MSDN/TechNet版だと、最初から入力されています。次へ。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst10.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst10_thumb.png" border="0" alt="sql08r2_inst10" title="sql08r2_inst10" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>ライセンス条項確認</h3>
<p>ライセンス条項が表示されます。同意にチェックし、気が向いた人は使用状況データ収集のチェックもして次へ進みます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst11.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst11_thumb.png" border="0" alt="sql08r2_inst11" title="sql08r2_inst11" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>セットアップ サポート ファイル</h3>
<p>本体のインスコ前に、セットアップ サポート ファイルなるものをインストールします。「インストール」をクリックします。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst12.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst12_thumb.png" border="0" alt="sql08r2_inst12" title="sql08r2_inst12" width="244" height="183" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p>インストールが進行します。思ったより時間がかかる感じです。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst13.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst13_thumb.png" border="0" alt="sql08r2_inst13" title="sql08r2_inst13" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p>終了すると、また何やら読み込み始めます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst14.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst14_thumb.png" border="0" alt="sql08r2_inst14" title="sql08r2_inst14" width="244" height="183" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>セットアップ サポート ルール 2</h3>
<p>再度セットアップ サポート ルールが実行されます。さっきとは項目が違うのでおとなしく待ちましょう。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst15.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst15_thumb.png" border="0" alt="sql08r2_inst15" title="sql08r2_inst15" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p>結果が表示されます。</p>
<p>Windows ファイアウォールが有効になっていると警告が表示されます。どうやら事前にポートとか空けておいても警告は出てしまうようなので無視してOKです。どうしても気になる人は、Windows ファイアウォールを停止しましょう。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst16.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst16_thumb.png" border="0" alt="sql08r2_inst16" title="sql08r2_inst16" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p>MSの自習書やらセミナーやらではファイアウォールを止めて進めることがほとんどっぽいので、ここは敢えて有効のままで進めます。実際無効になんかできないし。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst17.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst17_thumb.png" border="0" alt="sql08r2_inst17" title="sql08r2_inst17" width="244" height="36" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst18.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst18_thumb.png" border="0" alt="sql08r2_inst18" title="sql08r2_inst18" width="244" height="91" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<h3>セットアップ ロール</h3>
<p>いよいよ本体のインストールに入っていきます。「SQL Server 機能のインストール」にチェックして次へ進みます。ちなみにその他のチェックは、SQL Server インストール後に機能追加する場合に使用します。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst19.png"><img src="http://it.snds.jp/wp-content/uploads/2010/07/sql08r2_inst19_thumb.png" border="0" alt="sql08r2_inst19" title="sql08r2_inst19" width="244" height="184" class="wlDisabledImage" style="margin: 10px; display: inline; border: 0px;" /></a></p>
<hr />と、唐突ですが今回はここまで。<a title="SQL Server 2008 R2 のインストール その2" href="http://it.snds.jp/software/775.html">続きは次回！</a></p>


<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/software/775.html' rel='bookmark' title='Permanent Link: SQL Server 2008 R2 のインストール その2'>SQL Server 2008 R2 のインストール その2</a></li>
<li><a href='http://it.snds.jp/software/windows/34.html' rel='bookmark' title='Permanent Link: Windows Server 2008 環境の導入'>Windows Server 2008 環境の導入</a></li>
<li><a href='http://it.snds.jp/software/windows/40.html' rel='bookmark' title='Permanent Link: Windows Server 2008 のインストール'>Windows Server 2008 のインストール</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/software/738.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/software/738.html" />
	</item>
		<item>
		<title>2010年7月の電気料金</title>
		<link>http://it.snds.jp/operations/687.html</link>
		<comments>http://it.snds.jp/operations/687.html#comments</comments>
		<pubDate>Mon, 26 Jul 2010 14:28:37 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[運用]]></category>
		<category><![CDATA[電気代]]></category>

		<guid isPermaLink="false">http://it.snds.jp/?p=687</guid>
		<description><![CDATA[¥26,603 -
んーむ。。。。どうしたものか。
去年8月の時と比べて、使用料は(少しだけ)少ないけど料金は上がってる。
燃料費調整っていうところのマイナス分が少なくなってる。仕組みはよく知らないけど。


関連記事: [...]

<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/operations/321.html' rel='bookmark' title='Permanent Link: 2009年8月の電気料金'>2009年8月の電気料金</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<div id="attachment_688" class="wp-caption alignnone" style="width: 310px"><a rel="attachment wp-att-688" href="http://it.snds.jp/operations/687.html/attachment/100726_230458"><img src="http://it.snds.jp/wp-content/uploads/2010/07/2010-07_billing-300x205.jpg" alt="2010年7月の電気料金" title="2010年7月の電気料金" width="300" height="205" class="size-medium wp-image-688" /></a><p class="wp-caption-text">2010年7月の電気料金</p></div>
<p><span style="color: #ff0000; font-size: 2.4em;"><strong>¥26,603 -</strong></span></p>
<p>んーむ。。。。どうしたものか。</p>
<p><a title="2009年8月の電気料金" href="http://it.snds.jp/operations/321.html">去年8月の時</a>と比べて、使用料は(少しだけ)少ないけど料金は上がってる。</p>
<p>燃料費調整っていうところのマイナス分が少なくなってる。仕組みはよく知らないけど。</p>


<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/operations/321.html' rel='bookmark' title='Permanent Link: 2009年8月の電気料金'>2009年8月の電気料金</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/operations/687.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/operations/687.html" />
	</item>
		<item>
		<title>Server Core での Windows ライセンス認証</title>
		<link>http://it.snds.jp/software/windows/681.html</link>
		<comments>http://it.snds.jp/software/windows/681.html#comments</comments>
		<pubDate>Sat, 01 May 2010 17:24:09 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[構築]]></category>
		<category><![CDATA[Windows Server 2008]]></category>
		<category><![CDATA[Windwos Server 2008 R2]]></category>

		<guid isPermaLink="false">http://it.snds.jp/?p=681</guid>
		<description><![CDATA[初期設定まわりで書いたとばかり思っていたら、どうやら見当たらないので書いておきます。
でも sconfig ででできないのはなぜなんだろう？無駄な中傷を避けるため？
現在の状態確認
slmgr.vbs /dli
↓こんな [...]

<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/software/windows/625.html' rel='bookmark' title='Permanent Link: WS2008 R2 構築メモ：Server Core での電源オプション設定'>WS2008 R2 構築メモ：Server Core での電源オプション設定</a></li>
<li><a href='http://it.snds.jp/software/windows/34.html' rel='bookmark' title='Permanent Link: Windows Server 2008 環境の導入'>Windows Server 2008 環境の導入</a></li>
<li><a href='http://it.snds.jp/software/windows/577.html' rel='bookmark' title='Permanent Link: WS2008 R2 ドメインコントローラ移行 作業メモ：WS2008 R2 インストール～初期設定'>WS2008 R2 ドメインコントローラ移行 作業メモ：WS2008 R2 インストール～初期設定</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>初期設定まわりで書いたとばかり思っていたら、どうやら見当たらないので書いておきます。</p>
<p style="color: #666; font-size: 0.8em;">でも sconfig ででできないのはなぜなんだろう？無駄な中傷を避けるため？</p>
<h3>現在の状態確認</h3>
<pre>slmgr.vbs /dli</pre>
<p>↓こんな感じのダイアログが表示されます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_01.png"><img src="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_01_thumb.png" border="0" alt="slmgr_01" title="slmgr_01" width="244" height="149" style="display: inline; border: 0px;" /></a></p>
<h3>現在の猶予期間を表示</h3>
<pre>slmgr.vbs /xpr</pre>
<p>猶予期間が切れる日時が表示されます。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_02.png"><img src="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_02_thumb.png" border="0" alt="slmgr_02" title="slmgr_02" width="244" height="108" style="display: inline; border: 0px;" /></a></p>
<p>余談ですが、猶予期間はインストール日時から最大90日間延長可能です。延長する場合は以下を入力します。</p>
<pre>slmgr.vbs /rearm</pre>
<h3>プロダクト ID キーの登録</h3>
<pre>slmgr.vbs /ipk XXXXX-XXXXX-XXXXX-XXXXX-XXXXX</pre>
<p>プロダクトキーを登録します。ダイアログが表示されるまでちょっと時間がかかります。</p>
<p>ちなみにこの時点ではまだライセンスの認証はされないので注意。(考えたら当たり前だけど)</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_03.png"><img src="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_03_thumb.png" border="0" alt="slmgr_03" title="slmgr_03" width="244" height="83" style="display: inline; border: 0px;" /></a></p>
<h3>認証処理の実行</h3>
<pre>slmgr.vbs /ato</pre>
<p>これで晴れてアクティベートが完了する。これにも少々時間がかかります。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_04.png"><img src="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_04_thumb.png" border="0" alt="slmgr_04" title="slmgr_04" width="244" height="95" style="display: inline; border: 0px;" /></a></p>
<h3>状態の再確認</h3>
<pre>slmgr.vbs /dli</pre>
<p>こんな感じに変わります。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_05.png"><img src="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_05_thumb.png" border="0" alt="slmgr_05" title="slmgr_05" width="244" height="125" style="display: inline; border: 0px;" /></a></p>
<h3>猶予期間の状態確認</h3>
<pre>slmgr.vbs /xpr</pre>
<p>もう猶予もクソもないのでこんな感じに。</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_06.png"><img src="http://it.snds.jp/wp-content/uploads/2010/05/slmgr_06_thumb.png" border="0" alt="slmgr_06" title="slmgr_06" width="244" height="116" style="display: inline; border: 0px;" /></a></p>
<p>以上でライセンスの認証処理は終了。Server Core だとついつい忘れがちになってしまう（自分だけ？）ので注意しましょう！</p>
<p>なお、今回はダイアログを表示させてきましたが、鬱陶しいという方は、</p>
<pre>cscript slmgr.vbs /・・・</pre>
<p>と、頭に「cscript」を付けると標準出力のみで操作できます。WSH関連を使う方にはいつもの方法ですね。</p>
<p><strong>追記</strong></p>
<p>cscript で実行する時は、あらかじめカレントディレクトリを system32 (%systemroot%\system32) に変更しておいてください。</p>


<h3 style="margin-top:5em;">関連記事:</h3><ul><li><a href='http://it.snds.jp/software/windows/625.html' rel='bookmark' title='Permanent Link: WS2008 R2 構築メモ：Server Core での電源オプション設定'>WS2008 R2 構築メモ：Server Core での電源オプション設定</a></li>
<li><a href='http://it.snds.jp/software/windows/34.html' rel='bookmark' title='Permanent Link: Windows Server 2008 環境の導入'>Windows Server 2008 環境の導入</a></li>
<li><a href='http://it.snds.jp/software/windows/577.html' rel='bookmark' title='Permanent Link: WS2008 R2 ドメインコントローラ移行 作業メモ：WS2008 R2 インストール～初期設定'>WS2008 R2 ドメインコントローラ移行 作業メモ：WS2008 R2 インストール～初期設定</a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/software/windows/681.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/software/windows/681.html" />
	</item>
		<item>
		<title>2010年2月の電気料金</title>
		<link>http://it.snds.jp/operations/662.html</link>
		<comments>http://it.snds.jp/operations/662.html#comments</comments>
		<pubDate>Tue, 23 Feb 2010 12:50:39 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[運用]]></category>
		<category><![CDATA[電気代]]></category>

		<guid isPermaLink="false">http://it.snds.jp/?p=662</guid>
		<description><![CDATA[去年の夏に電気代のエントリーをあげた時は、記録のため毎月うｐしようと思ってたんですが、1回きりですっかりわすれてしまっていました。
というわけで2010年2月分の電気料金

\14,497 -
15k 切った！ヽ(´ー｀ [...]

<h3 style="margin-top:5em;">関連記事:</h3>
(( 関連記事は特にありません ))]]></description>
			<content:encoded><![CDATA[<p><a href="http://it.snds.jp/operations/321.html">去年の夏に電気代のエントリー</a>をあげた時は、記録のため毎月うｐしようと思ってたんですが、1回きりですっかりわすれてしまっていました。</p>
<p>というわけで2010年2月分の電気料金</p>
<p><a href="http://it.snds.jp/wp-content/uploads/2010/02/201002_Billing.jpg"><img src="http://it.snds.jp/wp-content/uploads/2010/02/201002_Billing_thumb.jpg" border="0" alt="2010-02_Billing" title="2010-02_Billing" width="244" height="184" /></a></p>
<p><strong><span style="color: #ff0000; font-size: 2em;">\14,497 -</span></strong></p>
<p>15k 切った！ヽ(´ー｀)ノ 冬サイコー！</p>


<h3 style="margin-top:5em;">関連記事:</h3><p>(( 関連記事は特にありません ))</p>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/operations/662.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/operations/662.html" />
	</item>
		<item>
		<title>【VBScript メモ】 所属するセキュリティ グループを取得する</title>
		<link>http://it.snds.jp/scripts/651.html</link>
		<comments>http://it.snds.jp/scripts/651.html#comments</comments>
		<pubDate>Tue, 16 Feb 2010 16:05:45 +0000</pubDate>
		<dc:creator>きく</dc:creator>
				<category><![CDATA[スクリプト]]></category>
		<category><![CDATA[VBScript]]></category>

		<guid isPermaLink="false">http://it.snds.jp/?p=651</guid>
		<description><![CDATA[自分自身が所属するActive Directory セキュリティ グループを取得する VBScript 関数のメモ。
戻り値は配列になります。
これだとプライマリ グループが拾えないが、その辺はMSの KB321360  [...]

<h3 style="margin-top:5em;">関連記事:</h3>
(( 関連記事は特にありません ))]]></description>
			<content:encoded><![CDATA[<p>自分自身が所属するActive Directory セキュリティ グループを取得する VBScript 関数のメモ。</p>
<p>戻り値は配列になります。</p>
<p>これだとプライマリ グループが拾えないが、その辺はMSの <strong>KB321360</strong> <a href="http://support.microsoft.com/kb/321360" target="_blank">ネイティブな ADSI コンポーネントを使用してプライマリ グループを取得する方法</a> あたりでできそうなので後で実装する予定。</p>
<p>あと、多分これでは外部フォレスト (フォレスト信頼済み) のセキュリティ グループは拾えないと思うので、そこをどうするかが課題。だれか教えてください。(´・ω・`)</p>
<p><strong>2010/7/26 追記</strong></p>
<p>5か月越しの追記もどうかと思いますが、信頼済みの外部フォレストのセキュリティ グループは普通に拾えました。</p>
<pre>Function GetSecGroupName()
 Dim oADSI, oUser, oGroup
 Dim aGroups, aGroupNames
 Dim sGroup

 Set oADSI = CreateObject("ADSystemInfo")
 Set oUser = GetObject("LDAP://" &amp; oADSI.UserName)

 Select Case TypeName(oUser.MemberOf)
   Case "Variant()"
     aGroups = oUser.MemberOf
   Case "String"
     aGroups = Array(oUser.MemberOf)
   Case Else
     aGroups = Array(Empty)
 End Select

 ReDim aGroupNames(Ubound(aGroups))
 i = 0

 For Each sGroup In aGroups
   If Len(sGroup) &gt; 0 Then
     Set oGroup = GetObject("LDAP://" &amp; sGroup)
     aGroupNames(i) = UCase(oGroup.CN)
   End If
   i = i + 1
 Next

 GetSecGroupName = aGroupNames

 Set oADSI = Nothing
 Set oUser = Nothing
 Set oGroup = Nothing
End Function</pre>


<h3 style="margin-top:5em;">関連記事:</h3><p>(( 関連記事は特にありません ))</p>]]></content:encoded>
			<wfw:commentRss>http://it.snds.jp/scripts/651.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<xhtml:link rel="alternate" media="handheld" type="text/html" href="http://it.snds.jp/scripts/651.html" />
	</item>
	</channel>
</rss>
