syg_hira's tech-work memo

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

2012-08-22から1日間の記事一覧

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…