スポンサーサイト
新しい記事を書く事で広告が消せます。
norimaki2000が日々気付いた事の記録です
http://1drv.ms/1xEdz8q
マイクロソフト製品サポート期間のまとめ20141116.xlsx
http://support2.microsoft.com/gp/lifecycle/ja
マイクロソフト サポート ライフサイクル - マイクロソフト サポート
この記事では画像の公開のみですが、翌日の記事ではExcelをダウンロードできるURLも公開しています。
http://support2.microsoft.com/lifecycle/
マイクロソフト サポート ライフサイクル - マイクロソフト サポート
http://firefox10.org/
10 Years of Firefox
http://ja.wikipedia.org/wiki/Mozilla_Firefox%E3%81%AE%E3%83%90%E3%83%BC%E3%82%B8%E3%83%A7%E3%83%B3%E3%81%AE%E5%A4%89%E9%81%B7
Mozilla Firefoxのバージョンの変遷 - Wikipedia
http://rickardnobel.se/vmxnet3-vs-e1000e-and-e1000-part-2/
VMXNET3 vs E1000E and E1000 – part 2 | Rickard Nobel
テストタイトル | スループット |
Test 1: Windows 2008 R2 with the default E1000 adapter | 2.65Gbps |
Test 2: Windows 2008 R2 with the VMXNET3 adapter | 4.47Gbps |
Test 3: Windows 2012 R2 with the E1000E adapter | 1.88Gbps |
Test 4: Windows 2012 R2 with the VMXNET3 adapter | 4.66Gbps |
管理者: Windows PowerShell |
PS C:\> Get-ADUser -Properties * -Filter * |export-csv -encoding default -path C:\Users\Administrator\Documents\ADUSER.csv |
http://norimaki2000.blog48.fc2.com/blog-entry-1154.html
徒然なるままに csvdeでActive Directoryのコンピュータ情報をCSVファイルにエクスポートする(2)
管理者: Windows PowerShell |
PS C:\> Get-ADGroupMember Group01 distinguishedName : CN=123456,CN=Users,DC=test01,DC=local name : 123456 objectClass : user objectGUID : c8c8f20b-1be3-4ec1-ad06-f61b58c48aa9 SamAccountName : 123456 SID : S-1-5-21-39158091-4092441004-368166152-2816 PS C:\> |
#TYPE Microsoft.ActiveDirectory.Management.ADPrincipal
"distinguishedName","name","objectClass","objectGUID","SamAccountName","SID"
"CN=123456,CN=Users,DC=test01,DC=local","123456","user","c8c8f20b-1be3-4ec1-ad06-f61b58c48aa9","123456","S-1-5-21-39158091-4092441004-368166152-2816"
New-ADGroup | |
-Name Group01 | グループ名 |
-GroupScope Global | グループのスコープ(DomainLocal / Global / Universal) |
-GroupCategory Security | グループの種類(Distribution / Security) |
-Description グループの説明 | グループの説明 |
Add-ADGroupMember | |
-Identity Group01 | グループ名 |
-Members 123456 | 登録するメンバーの名前 |
Remove-ADGroupMember | |
-Identity Group01 | グループ名 |
-Members 123456 | グループから削除するメンバーの名前 |
-Confirm:$false | 削除実行時の対話的な「はい」「いいえ」を聞いてこない |
Remove-ADGroup | |
-Identity Group01 | グループ名 |
-Confirm:$false | 削除実行時の対話的な「はい」「いいえ」を聞いてこない |
New-ADUser 123456 | ユーザー名(ID) |
-UserPrincipalName 123456@test01.local | ユーザープリンシパル名 |
-Surname 山田 | 姓 |
-GivenName 太郎 | 名 |
-DisplayName 山田太郎 | 表示名 |
-EmailAddress yamada-taro@test01.local | 電子メールアドレス |
-AccountPassword (ConvertTo-SecureString -AsPlainText "Test_Password" -Force) | パスワード |
-ChangePasswordAtLogon $True | 次回ログオン時にパスワード変更が必要 |
-Enabled $True | ユーザーを有効にする |
Remove-ADUser -Identity 123456 | 削除するユーザー名 |
-Confirm:$false | 削除実行時の対話的な「はい」「いいえ」を聞いてこない |