windows server 2003 R2 ドメインにwindows7を参加させる
WINSの設定をサーバのIPに,
第1DNSの設定をサーバのIPに。
WINSの設定をサーバのIPに,
第1DNSの設定をサーバのIPに。
Windows10ではブラウザのプロキシはGUIで設定できるが,システムのプロキシは
CUIで入力する必要がある。
管理者でコマンドプロンプトを起動し,以下を入力する。
> netsh winhttp set proxy your.proxy.com:port
または,Internet Explorer の設定を同じにする場合は
> netsh winhttp import proxy source=ie
winhttpプロキシの設定が反映されていたら成功。
確認コマンドは以下
> netsh winhttp show proxy
リセットする場合は以下
> netsh winhttp reset proxy
windows10ではwindows updateが自動で実行される.
しかし諸事情で手動にしたい場合がある.
そのようなとき以下の手順で実現する.
1.コマンドプロンプトを管理者権限で起動し以下のコマンドを入力する.
2.Background Intelligent Transfer Service を無効にする.
sc config "BITS" start= disabled
もとに戻す場合は以下
sc config "BITS" start= delayed-auto
3.Delivery Optimization を無効にする
sc config "DoSvc" start= disabled
もとに戻す場合は以下
sc config "DoSvc" start= delayed-auto
4.再起動してサービス一覧を確認する.
参考
https://www.japan-secure.com/entry/how_to_disable_the_automatic_update_by_windows_update_of_windows_10.html