Does Server Side Targeting need GPO for WSUS server to start?

This may be obvious, but for WSUS Server side targeting, I assume that I still need to use GPO (with AD) to point the client machines at the WSUS Server, before they will appear under the Unassigned group?
Is that true?   Otherwise, i don't understand how the clients will know that they are using that WSUS server.
What exactly needs to be setup for Server side targeting using GPO.   Is it only the WSUS server that needs to be setup, or does Automatic Updates needs to be configured as well.
Thanks for your help.

Hi Gleb:
That's what I thought.  Thanks, for confirming.   So just to make sure I'm clear on this.  
For server side targeting:
I would probably setup the AD GPO at the domain level, so that WUServer and WUStatusServer  values point at the WSUS Server.   Once, those are setup and a sufficient period of time has passed for the policy to be passed to the client workstations,
I should start seeing the workstations appearing under the Unassigned group.
I assume that I would also configure some of the following as well using the GPO, since we will be using the AU for updates, after I move the computers manually to groups.   For example, I would probably configure under AU:
NoAutoRebootWithLoggedOnUsers 
UseWUServer 
NoAutoUpdate 
AUOptions 
ScheduledInstallDay 
ScheduledInstallTime 
I would guess that the above items need to be configured whether I'm doing server side targeting or client side targeting.
Can someone confirm?:

Similar Messages

  • Source port type for BPELProcess does not match target port type for EJB

    Hi gurus,
    I have a problem with calling EJBs from a 11.1.1.3 composite. The following summarizes the issue:
    - there are several EJBs within the same package deployed on a WLS server.
    - these beans have method names that are the same, for example create(), delete() etc.
    - using the EJB Service Adapter I have created 3 References, one for each of the 3 beans I need to invoke in a BPEL process.
    - each bean is imported into the project with their own *.wsdl *Ref.wsdl files.
    - each wsdl imports a namespace based on the java package name
    - now i have 3 wsdls, importing the same namespace and namespace conflicts arise.
    At this point I'm thinking, 'no problem, just change the namespaces manually'
    - whenever i try to change the namespace that JDev gives the Reference components I end up with the compilation error:
    Source port type for "BPELProcess" does not match target port type for "EJBRef"
    It seems that the namespace must be the same as the package name, even though I resolved all the references to the new namespaces and ensure they all match.
    The problem appears to be in the BPELProcess.componentType file.
    <reference name="HelloEJBRef" ui:wsdlLocation="HelloEJBRef.wsdl">
    <interface.wsdl interface="http://package.workspace.com/HelloEJB#wsdl.interface(HelloEJB)"/>
    </reference>
    If the namespace (text before the #) is changed at all from the default, even if it matches the wsdl, results in the port type mismatch error above.
    Any ideas?
    btw, running SOA 11.1.1.3, JDev 10.1.1.3, EJB 3.0

    Hi gurus,
    I have a problem with calling EJBs from a 11.1.1.3 composite. The following summarizes the issue:
    - there are several EJBs within the same package deployed on a WLS server.
    - these beans have method names that are the same, for example create(), delete() etc.
    - using the EJB Service Adapter I have created 3 References, one for each of the 3 beans I need to invoke in a BPEL process.
    - each bean is imported into the project with their own *.wsdl *Ref.wsdl files.
    - each wsdl imports a namespace based on the java package name
    - now i have 3 wsdls, importing the same namespace and namespace conflicts arise.
    At this point I'm thinking, 'no problem, just change the namespaces manually'
    - whenever i try to change the namespace that JDev gives the Reference components I end up with the compilation error:
    Source port type for "BPELProcess" does not match target port type for "EJBRef"
    It seems that the namespace must be the same as the package name, even though I resolved all the references to the new namespaces and ensure they all match.
    The problem appears to be in the BPELProcess.componentType file.
    <reference name="HelloEJBRef" ui:wsdlLocation="HelloEJBRef.wsdl">
    <interface.wsdl interface="http://package.workspace.com/HelloEJB#wsdl.interface(HelloEJB)"/>
    </reference>
    If the namespace (text before the #) is changed at all from the default, even if it matches the wsdl, results in the port type mismatch error above.
    Any ideas?
    btw, running SOA 11.1.1.3, JDev 10.1.1.3, EJB 3.0

  • Server-side filtering to subfolder for all users (spamassassin)

    Hello,
    I am trying to integrate a 3rd-party spam filter/virus scanner, it is just spamassassin/amavisd-new running on a front-end box that adds an X-Spam-Flag: YES header to the message before passing it on. This works great on our current postfix/cyrus-imap system using individual cyrus sieve server side filters to look for the flag and move the message into the user's spam folder.
    My question is how to do this in a universal way on OCS, I have been reading through the docs and think server-side filters are the answer, but I can't seem to find a way to set up a system-wide filter that will put the incoming message into the recipients' spam subfolder. Does anyone have any clues on this? I think the key here is to somehow be able to use the recipient name as a variable to pass as a parameter to the moveto action, but I can't see a way to do this. Any pointers would be appreciated.

    You can do this in a single system wide rule, but it's undocumented and technically unsupported.
    First of all, checking the spam-flag in a system side Deliver rule is straightforward:
    <condition>
    <attribute tag="xheader" param="X-Spam-Flag"/>
    <operator caseSensitive="no" op="stringequal"/>
    <operand>YES</operand>
    </condition>
    (Checking on the subject is OK too, if you rewrite it through SpamAssassin.)
    Then to move to a folder, you'll need an external PL/SQL action since the full folder name will vary for each user:
    <action>
    <command tag="call"/>
    <parameter>SpamCheck.moveMsg</parameter>
    <parameter>parameter1</parameter>
    <parameter>parameter2</parameter>
    </action>
    Then the tricky part is the Pl/SQL to do the move, using the undocumented es_ga.g_username variable. This is the only way to know which mailbox context you're currently in for the deliver event at the system level. Without this, you need a separate rule for every user. Here's the bare bones of a procedure that would do it.
    procedure moveMsg(p_eventid in integer,
    p_sessionid in integer,
    p_msgobj in mail_message_obj,
    myparam1 in varchar2,
    myparam2 in varchar2,
    p_status out number)
    is
    this_user varchar2(255);
    mList MAIL_MESSAGE_LIST;
    Begin
    this_user := es_ga.g_username;
    mList:=MAIL_MESSAGE_LIST(p_msgobj);
    mail_folder.move_messages(p_sessionid, mList, '/' || es_ga.g_username || '/ServerMove');
    end MoveToSpam;
    You probably want to add some exception handling, etc. to that ;-) More info on the Pl/SQL API in general is in the Mail Application Dev Guide.

  • Jinitiator 1.3.1.9, need upgrade for 9iAS server?

    Hi, I am trying to setup a 9iAS test server on Windows 2000. The bundled Jinitiator 1.1.8.? Did not work with my test box but did work on the server. I downloaded Jinitiator 1.3.1.9 and it installs and runs on my client box. I have modifed the needed FORMSWEB.CFG & Jinit files and I go get the correctly configured served out page to my client but I get a java exception:
    Oracle.ewtinAWT.lwcomponet'''s signer information does not match signer info...
    I can find the referenced .class file. However, I didnt know that the server side needed to be modifed to run Jinitiator 1.3.1.9. Is there a patch for the server side or more docs somewhere.
    I'm stuck.
    Thanks for any help,
    Scott Peterson

    Firefox 3.0 and 3.5/6 versions require at least Mac OS X 10.4
    http://www.mozilla.com/en-US/firefox/system-requirements.html - Mozilla Firefox 3.6 System Requirements
    Firefox 2.0.0.20 is the last release that runs on Mac OS X 10.2 and 10.3
    See:
    * http://kb.mozillazine.org/Installing_Firefox
    * http://kb.mozillazine.org/Unsupported_operating_systems
    Mac: https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/mac/en-US/
    Other browsers that you can look at:
    http://caminobrowser.org/download/releases/ (#os10.3.8)
    [http://en.wikipedia.org/wiki/ICab iCab]: http://www.icab.de/
    http://www.seamonkey-project.org/releases/seamonkey1.1.19

  • Do we need CALS for windows server 2008 R2 and 2012 R2 if 2008 R2 is just a stepping stone?

    We currently have a server on Windows Server 2008 RC SP2 64-bit with approximately 20 clients.
    We want to upgrade to Windows server 2012 R2 but first need to upgrade to Windows 2008 R2 to allow us to do a straight upgrade.
    Is it possible to upgrade to Windows Server 2008 R2 with the 5 CAL's included and then upgradeto 2012 R2 and install 20 new CAL's and keep all users accounts and domain PC's the same? 

    Ok sorry for using the wrong terminology... I was under the impression for each client (Computer) connecting to the server we will need a CAL (Client Activation License) in order for the computer to be a domain PC on the server. Do I need 20 CALS's
    for Windows Server 2008 R2 and then another for Windows Server 2012 R2 if we are only upgrading to 2008 R2 to be able to upgrade to 2012 R2 without having to do a clean install.
    For WindowsServer (Standard edition or Enterprise edition or DataCenter edition), a Client Access License (CAL) is required for each device (if you're using the per-Device CAL licensing method), or, is required for each user (if you're using the per-User
    CAL licensing method).
    (whether you use per-Device, or per-User, is up to you, it comes down to cost).
    CALs are version-specific (to a point) - i.e. if you purchased WS2008 CALs for your 20 devices, for use with your WS2008 server, and you are now upgrading that server to WS2012, you need to upgrade your CALs.
    If you are adding a second server which is WS2012, and you are keeping your WS2008 server, you need to upgrade your CALs (because you only purchased WS2008 CALs which don't grant you the rights to connect to the newer server).
    If you were to install your second server as WS2008, you wouldn't need to purchase additional CALs, because as long as the version is the same, a single CAL grant you access to unlimited server (of the same version).
    CALs can be tricky to correctly license.
    Here's some introductory reading:
    http://www.microsoft.com/licensing/about-licensing/client-access-license.aspx#tab=1
    And, none of this relates to the technical aspects of product installation/configuration at all (e.g. clean install vs. upgrade).
    Windows Server CALs are not license keys/tokens/files which you install/load/download - Windows Server CALs are quite literally paper-based (just like a drivers license or car registration). You are required to have them, to be correctly licensed, but, you
    don't physically do anything with them to own/drive a car.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Which OS X Server do I need just for QTSS?

    I want to use only the QTSS part of OS X server. Am I right that the 10-user version will suffice? I have no other users on my local network.

    The 10 client restriction appears to apply to file sharing, not to using the QuickTime Streaming Server. In addition, the QuickTime Streaming Server has the same code base as the Darwin Streaming Server, which has no client restrictions in its licence.
    (16212)

  • SSL Server socket: controlling the alias for the server certificate ?

    Hi,
    Could anyone please clear up the following ?
    When you create an SSL server socket, it needs a certificate (to prove its identity), and for this it relies on a keystore:
    System.setProperty("javax.net.ssl.keyStore", "c:/mystore");
    My question is, what if the keystore contains several certificates ?
    Eg:
    keytool -import -alias AAA -file cert1.cer -keystore mystore
    keytool -import -alias BBB -file cert2.cer -keystore mystore
    Which certificate would the server use ?
    And is there a way to control the alias it would use ?
    Thanks :)

    This is a very good question and one that should be described in the Guide to Features. See javax.net.ssl.X509KeyManager.chooseServerAlias(). It does a search looking for aliases of a given key type, i.e. one of the ones the peer understands, & which are trusted by the peer. Any alias which the peer can accept will do.

  • SQL Server 2012 Web synchronization option for SQL Server Merge Replication

    I have 2 servers for this:
    1. WIndows Server 2008 with SQL SERVER 2012
    2. Windows Web SErver 2008 With IIS 7 - and SQL Client Conectivity Tools installed
    https://192.168.100.8/sqlreplication/replisapi.dll?diag  i have the next results:
    Class Initialization test:
    Class Status
    ErrorCode
    replisapi.dll classes SUCCESS 0x0
    CLSID_SQLReplErrors FAILED 0x80040154
    replrec.dll classes FAILED 0x80040154
    msxml6.dll classes SUCCESS 0x0
    Where replrec.dll is supposed to be? On the WebServer or Database Server? And if the answer is on the Webserver, how can i install it?
    Thank you,
    biionut

    Hi biionut,
    Did you install SQL Server 2012 Replication Components on the IIS server?  The steps to install replication components are covered in
    How to: Install SQL Server Replication Components.
    Also, is your IIS server running 64-bit Windows?  If so you will need to allow 32-bit applications to run on the IIS server:
    cscript %SystemDrive%\inetpub\AdminScripts\adsutil.vbs set w3svc/AppPools/Enable32bitAppOnWin64 1
    Brandon Williams (blog |
    linkedin)

  • SQL Server Radio - A new podcast for SQL Server professionals

    Hi everyone,
    We (Guy Glantser and Matan Yungman) have recently launched a new podcast for SQL Server professionals, called "SQL Server Radio".
    We release two shows a month, and basically talk about everything around SQL Server and the SQL Server community. On one show of each month, we juggle around and talk about interesting blog posts, forum discussions, news, events and other things that happen
    in the SQL Server world. We expand about each of those items and add from our own experience. On the second show of the month, we go more in-depth. Sometimes we bring a guest, and sometimes we talk about a specific topic like SQL Server 2014, conferences or
    professional development.
    So if you love SQL Server and love learning by hearing, whether you're on your way to work, jogging or just chilling and
    want to learn in a fun way, check us out on
    http://www.SQLServerRadio.com
    Two shows are already online..

    Hi everyone,
    We (Guy Glantser and Matan Yungman) have recently launched a new podcast for SQL Server professionals, called "SQL Server Radio".
    We release two shows a month, and basically talk about everything around SQL Server and the SQL Server community. On one show of each month, we juggle around and talk about interesting blog posts, forum discussions, news, events and other things that happen
    in the SQL Server world. We expand about each of those items and add from our own experience. On the second show of the month, we go more in-depth. Sometimes we bring a guest, and sometimes we talk about a specific topic like SQL Server 2014, conferences or
    professional development.
    So if you love SQL Server and love learning by hearing, whether you're on your way to work, jogging or just chilling and
    want to learn in a fun way, check us out on http://www.SQLServerRadio.com
    Two shows are already online..

  • Get server with Windows Server 2012 R2 or wait for Windows Server "10"?

    We are looking to get a new server this year but with Windows 10 coming out shortly/this year, wouldnt it be better to wait until Windows Server "10" is released THEN get the server?
    Thank you

    Hi,
    Windows 10 is the next version of the Windows client operating system. Until now, there is no official information of Windows Server operating system about the version next to Windows Server 2012 R2. You may pay attention to Microsoft official website for
    the information about the newest product.
    Windows Server:
    http://technet.microsoft.com/library/bb625087.aspx
    Here is the instruction about Windows 10 Technical Preview for Enterprise, just for your reference:
    http://technet.microsoft.com/en-us/windows/dn798751.aspx?ocid=wc-tn-answr
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • GPO for Print Server Security settings?

    Hi forum,
    I am setting up a specific OU for print servers and have a GPO assigned to this.
    As we need to apply certain roles to some AD groups we have a need to reflect this to the Print Server Security settings so it gets reflected to the print queues.
    Has anyone found a way to have a GPO to alter the Security settings under the Print Server porperties?
    Thanks,
    David

    Hi David,
    Based on your description, did you mean that want to configure permission of a Print Server via group policy?
    It seems that the target can’t be achieved via group policy. However, you may be able to add some security groups to print servers by using Windows PowerShell. For more details, please refer to following article and check if can help you.
    Weekend
    Scripter: Add Security Groups to Print Servers by Using PowerShell
    If anything I misunderstand or any update, please don’t hesitate to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • Does "Bridge Web Gallery" need Java on hosting server to run?

    I have uploaded a web gallery made with Bridge CS6, but all I see is a white screen. the gallery works fine locally. I just spoke with my host servers tech support and all he can think of is that they doen't run Java on their servers because it causes them way too much trouble. All I see is Javascript in the resource folder and they have no issue with that.
    I'm on a Mac and as far as I know I'm running the lastest Java on my Mac as I updated it a few weeks ago. This is why I was wondering if I needed Java? Also I'm using Dreamweaver to upload the files to the server.

    workflow functions are also exposed via java api's. so you can have your web application in say iAS, weblogic, ibm websphere,... and display pages using the java api.
    the default workflow pages are generated using pl/sql api's. in this case you can get rid of pl/sql gateway.
    i myself have worked on implementations which developed the application using the java api's
    satish paul
    Thank you Fernando. I have been pointed out that there is a oracle plug-in for Microsoft IIS, enabling us to use it as the web server, Hence removing the need for Apache http server and the PL/SQL gateway.
    Many Thanks
    Nazeer Ahmad Syed.

  • Do we need nodemanager for SOA server installation?

    Hi All,
    I am installing both Weblogic Server ans SOA suite (SOA Server) in the same machine.
    What I red on net and nodemanager is required if managed server is installed on a different machine from the machine where weblogic server is installed.
    So in that case,Do I need to use nodemanager?
    Actually I already installed both weblogic and SOA suite in the same machine.I am able to start the servers by using startWebLogic.cmd and startManagedWebLogic.cmd.I also got the SOA folder in EM console.
    But When I am trying to deploy the application,it is giving "Closing socket as there is no read from 'ipaddress' machine etc " warning.
    That is why I want to have info whether nodemanager is the reason for not able to deploy application into server.
    Please guide me on this
    Thanks in advance

    I already replied to this same query. For benefit of others, here is the same reply.
    Hi
    1. Absolutely NOT. No, you do NOT need any NodeManager at all. Basically NodeManager is to Control all the Servers spread across different machines from One single point. Say you have 4 machines with 4 soa servers running in a cluster. General practice is we go to each machine (physically or using telnet like that) and run command like startManagedWeblogic soa_that_server_xx. We do this to start and stop. To avoid this and have better control, we use Node Manager. Node Manager is a small service that runs on each of these machines. And from one Single machine generally where we have Admin Server, we login into admin console. From Admin Console, we can Start / Stop any Server. Node Manager is more useful for complex cluster in QC or UAT or PROD Env.
    For Dev Env, absolutely not required. Use startWeblogic and startManagedWeblogic and good to go.
    Thanks
    Ravi Jegga

  • Does Enterprise Manager (10g) needs IIS on 2003 server?

    Hi,
    After installing a new EM on the new server, I am getting 'Page Cannot be displayed'. Can any one let me know, if IIS is required on windows, to make the EM10g working?
    Thank You
    Jomon

    I'm fairly positive the answer is no. Grid Control is like a baby Oracle App Server. It uses whatever app server is deployed with a standard Oracle Application Server (I've always assumed this was apache for all platforms, but I could be wrong.)
    What version of Grid Control? What URL are you trying to hit (port, https, etc), What does your emoms.properties look like. Is the web server running? What does the log file say?

  • Need Driver for Window Server 2012 R2

    Hello  I Need driver window server 2012 R2 driver for Hp laserjet MFP M226dn. Please help

    Hi Bappan1, What you could try is the HP universal print driver.I can't promise that it works but please give it a shot. Go to the following link:http://h20564.www2.hp.com/hpsc/swd/public/readIndex?sp4ts.oid=4157320 Choose your O/S Windows Server 2012 R2.It will give your 3 options:PCL6PCL5Post Script You can try either one and check if this works.Please do know that this is not the exact same driver as the original driver.This is also only for printing. Please let me know if it works. Bas Pootjes

Maybe you are looking for