Performs the needed configuration to get a newly installed WSUS server up and running PostInstall SQL_INSTANCE_NAME= CONTENT_DIR= ...

Performs the needed configuration to get a newly installed WSUS 
server up and running

PostInstall [SQL_INSTANCE_NAME=] [CONTENT_DIR=]

SQL_INSTANCE_NAME

    The (fully qualified) name of the SQL Server. This option is mandatory,
    if WSUS is installed with the Database role service. This option is ignored,
    if WSUS is installed with the WID role service.
   
CONTENT_DIR

    The path to a directory where downloaded update files will be stored. Can
    be a file share.

Additional arguments are ignored.

EXAMPLES

Run postinstall for a WSUS server using the WID role and the default content
directory:

    wsusutil postinstall
    
Run postinstall for a WSUS server using the WID role to store downloaded update 
files in the directory C:\WSUS:

    wsusutil postinstall CONTENT_DIR=C:\WSUS
    
Run postinstall for a WSUS server using the Database role, where the SQL Server
is installed on machine MYSQLSRV:

    wsustil postinstall SQL_INSTANCE_NAME=MYSQLSRV
    
Run postinstall for a WSUS server using the Database role, where the SQL Server 
is installed on the same machine as the WSUS server and update files will be 
stored in the C:\WSUS directory:

    wsusutil postinstall SQL_INSTANCE_NAME=localhost CONTENT_DIR=C:\WSUS