syg_hira's tech-work memo

某人材サービス会社の情報共有インフラ担当のおぼえがきです。MicrosoftのEnterprise製品多め。

2012-08-01から1ヶ月間の記事一覧

Source=Msinstaller, ID=11310

I had encounted error when installing SQL Server Management Studio with SQL Server 2008 R2 Developer on domain controller. It may be a issue of Windows Installer Component. I had to do this steps to complete installation. msiexec /unreg ms…

Disable and enable ipv6 Interfaces on Windows Server 2008 R2(修正版)

ネットワークアダプタのプロパティで、IPv6を無効にしても、6to4などのトンネルインターフェースは有効なまま。 ホスト自体はIPv6のアドレスを持ったままになってしまう。 実害はほとんどないと思うが、IPv6のアドレスを管理するのが面倒、ということもある…

Get Windows service properties (Updated)

This command get get windows services properties with TSV. DisplayName Name Status(Stopped or Running) StartMode(Auto, Manual or Disabled) StartName(Service Account) Get-Service | sort-object DisplayName |ForEach-Object -Process{$Filter="N…

get displayname, name, status, startupmode(startup type) and 'log on as' of windows services (Updated)

Get-Service | sort-object DisplayName |ForEach-Object -Process{$Filter="Name='$($_.Name)'";$Service=(Get-WmiObject Win32_Service -filter $Filter);$("$($Service.DisplayName)`t$($Service.Name)`t$($_.Status)`t$($Service.StartMode)`t$($Service…

Disable and enable ipv6 Tunnel Interfaces on Windows Server 2008 R2

トンネルインターフェースを選択的に有効化・無効化する場合は、下記のコマンドを実行。 IPv6をまるっと無効化する場合は、こちらを参照 # Disable netsh interface ipv6 isatap set state disablednetsh interface ipv6 6to4 set state disablednetsh inter…