TFS2013インストール(できるだけコマンドで) その3:TFSサーバOS環境作成

TFSサーバのOS環境設定です。

○PowerShell設定
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine

○コンピュータ名の変更
Rename-Computer tfs2013sv01 -Restart

○ネットワークアダプタの名称変更
Get-NetAdapter | Rename-NetAdapter -NewName Public

○IPv6のアドレスを削除する
Get-NetAdapter | Remove-NetIPAddress -AddressFamily Ipv6

○IPv4のアドレスを設定する
Get-NetAdapter | New-NetIPAddress -IPAddress "192.168.0.202" -AddressFamily IPv4 -PrefixLength 24

○DNS設定
Get-NetAdapter | Set-DnsClientServerAddress -ServerAddress "192.168.0.201"

○AD参加
$cred = Get-Credential
Add-Computer -DomainName "tfs2013.localnet" -Credential $cred
→ADにコンピュータを参加させるためにAD管理者ユーザを入力します。

○(念のため)再起動
Restart-Computer

次は、SharePoint Foundation 2013の必須コンポーネントのインストールについてです。

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

This website stores cookies on your computer. These cookies are used to provide a more personalized experience and to track your whereabouts around our website in compliance with the European General Data Protection Regulation. If you decide to to opt-out of any future tracking, a cookie will be setup in your browser to remember this choice for one year.

Accept or Deny