LoginSignup
0
0

More than 1 year has passed since last update.

WSUSの設定確認コマンド

Last updated at Posted at 2023-02-21

WSUSの設定だけ確認したい場合に、管理コンソールを使うと誤操作の危険性があるので、powershellコマンドで設定だけ参照

powershell
> $wsus = Get-WsusServer -Name WSUSサーバ名 -PortNumber 8530
> $wsus.GetConfiguration()


UpdateServer                                  : Microsoft.UpdateServices.Internal.BaseApi.UpdateServer
LastConfigChange                              : 2023/02/21 21:35:09
ServerId                                      : 65709cdc-a83b-4b63-bb86-ebda292115c1
SupportedUpdateLanguages                      : {he, cs, fr, es...}
TargetingMode                                 : Server
TrackDynamicCategories                        : False
SyncFromMicrosoftUpdate                       : True
IsReplicaServer                               : False
HostBinariesOnMicrosoftUpdate                 : False
UpstreamWsusServerName                        :
UpstreamWsusServerPortNumber                  : 8530
UpstreamWsusServerUseSsl                      : False
UseProxy                                      : True
ProxyName                                     : 192.168.0.15
ProxyServerPort                               : 3128
UseSeparateProxyForSsl                        : False
SslProxyName                                  :
SslProxyServerPort                            : 443
AnonymousProxyAccess                          : False
ProxyUserName                                 : user01
ProxyUserDomain                               :
HasProxyPassword                              : True
AllowProxyCredentialsOverNonSsl               : True
AllUpdateLanguagesEnabled                     : False
AllUpdateLanguagesDssEnabled                  : False
AllUpdateLanguagesUssEnabled                  : True

こんな感じで設定が見れる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0