Remote wlserver task.

Hello,
Is there a way to start the wlserver from a remote server:
For instance I have serverA and Server B. On ServerA I have my domain. On
ServerB I have my ant script that contains the wlserver task, ServerB have
full acces to ServerA.
When I tried it, I get the following error:
<BEA-000350> <Unable to create a server socket on Channel Default for:
10.140.111.212, port: 8001. java.net.BindException: Cannot assign requested
address: JVM_Bind Perhaps the address 10.140.111.212 is incorrect or another
process is using port 9001.>
Of course there is no process on port 9001
Any idea?
Thanks
Yann.

Not a scripging question.  You should post in the platform forum for your version of Windows.  SCHTASK is system utility and not a script.
¯\_(ツ)_/¯

Similar Messages

  • Problem Using wlserver task in ant file

    I am trying to create a weblogic domain using the following in my ant file:
    <target name="new-server">
    <mkdir dir="/opt/deployment/domains" />
    <wlserver dir="/opt/deployment/domains"
    beahome="/opt/bea"
    domainname="SandboxDomain"
    servername="AdminServer"
    host="localhost" port="7001"
    generateConfig="true"
    username="weblogic" password="password"
    productionmodeenabled="false"
    action="start" failonerror="true" />
    </target>
    However, I keep getting the following exception:
    [wlserver] Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/Server
    I am executing the ant script by placing the weblogic.jar file in the lib directory of ant. I am also using ant version 1.6.2. Any suggestions on how to remedy this problem would be appreciated.

    Hi,
    Had the same problem, try adding the classpath attribute to the wlserver tasks.
    example:
    <wlserver dir="${SERVER_DOMAINS}/test_domain"
    beahome="${SERVER_ROOT}"
    weblogichome="${SERVER_WEBLOGIC_HOME}"
    generateConfig="true"
    host="localhost"
    port="6001"
    username="${WEBLOGIC_USER}"
    password="${WEBLOGIC_PASSWORD}"
    servername="testServer"
    action="start"
    classpath="<wl_installdir>\server\lib\weblogic.jar">
    Regards,

  • Remote Scheduled Tasks

    So I've been trying to use the "connect to another computer" feature of task scheduler in windows 7 and I've been met with an odd problem. (Odd to me at least). So here's the procedure.
    RDP to server that is running 2008 R2
    Open Task Scheduler Application
    Action
    Connect to another computer
    Input name of Windows 7 PC on the network
    Enter credentials to connect to that PC
    Error: "Remote PC must be Windows Vista or Later to use this feature"
    But.... as stated it is a windows 7 PC... which is later than Vista so... confuse?

    Hi,
    I tested in my Server 2008 r2, trying to connect to one remote Windows 7 PC in task scheduler, it works perfectly.
    So please make sure that you're typing a correct PC name or IP address, the PC name might be similiar to each other.
    Yolanda Zhu
    TechNet Community Support
    Hi, thanks for replying to my post but let me say I am not implying there is a problem with the feature, simply with my specific instance. I am using the check names feature so I am fairly certain it is the correct pc because there are no other users in that
    forest with a name like that (the naming convention is based off the users name conveniently). I have also checked and double checked the credentials I am using to access it. So let's refocus on the main point of the post, what would cause this error which
    states something untrue? Are there any known issues that result in this error message? Firewall/settings etc.

  • How to start weblogic instance using wlserv ant task

    Hi,
    Iam using weblogic 8.1
    Iam trying to write build script which starts remote weblogic instance and does deploy using wldeploy and restarts the instance.
    First iam trying with starting weblogic.
    ==============================
    <wlserver
                   dir="${server.project.root.dir}"
                   domainName="${weblogic.domain.name}"
                   serverName="${weblogic.server.name}"
                   host="10.106.90.50"
                   port="8001"
                   generateConfig="true"
                   productionModeEnabled="false"
                   weblogicHome="${weblogic.home}/weblogic81"
              username="weblogic"
                   password="password"
                   args = "-XX:MaxPermSize=512M -Xms256m -Xmx512m"
                   action="start">
                   <classpath refid="weblogic.classpath"/>
              </wlserver>
    ==============================
    Iam getting an issue here , it starts the weblogic but automatically it stops the weblogic , without any exception.
    as per their documentation
    "When you use the wlserver task in an Ant script, the task does not return control until the specified server is available and listening for connections. If you start up a server instance using wlserver, the server process automatically terminates after the Ant VM terminates. If you only connect to a currently-running server using the wlserver task, the server process keeps running after Ant completes."
    I understand what they are saying , but what is the remedy to it , how to rectify it. I tried starting default server it gives NPE.
    ITs kinda very urgent for me any help , or available scripts will be very use ful.
    Thanks in advance.

    meghab,
    Thanks for the reply.
    I tried using java task , now the server is starting sucessfully but iam getting exception while starting the Queue.
    Here is my ant task.
    ===================================
    <target name="weblogicrun">
              <java fork="yes" dir="${weblogic.domain.dir}" classpathref="weblogic-classpath" classname="weblogic.Server">
                   <jvmarg value="-server"/>
                   <jvmarg value="-Dweblogic.Name=MyAppServer"/>
                   <jvmarg value="-Dweblogic.RootDirectory=${weblogic.config.dir}"/>
                   <jvmarg value="-Xms256m"/>
                   <jvmarg value="-Xmx512m"/>
                   <jvmarg value="-XX:MaxPermSize=128m"/>
                   <jvmarg value="-da"/>
                   <jvmarg value="-Dplatform.home=D:/bea"/>
                   <jvmarg value="-Dwls.home=D:/bea/weblogic81/server"/>
                   <jvmarg value="-Dweblogic.ProductionModeEnabled=false"/>
                   <jvmarg value="-Djava.security.policy=D:/bea/weblogic81/server/lib/weblogic.policy"/>
              </java>
         </target>
    ===================================
    In my project i have default queue , it gives INSTANTIATION EXCEPTION while trying to invoke weblogic.jms.common.DestinationImpl
    ==================================
    java.lang.InstantiationError: weblogic.jms.common.DestinationImpl
    =====================================
    Iam providing the config information from config.xml
    <JMSServer Name="WSStoreForwardInternalJMSServerMyServer"
    Store="FileStore" Targets="MyAppServer">
    <JMSQueue CreationTime="1179819623120"
    JNDIName="jms.internal.queue.WSStoreForwardQueue"
    JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSStoreForwardQueueCCAppServer"/>
    <JMSQueue CreationTime="1179819623511"
    JNDIName="jms.internal.queue.WSDupsEliminationHistoryQueue"
    JNDINameReplicated="false" Name="WSInternaljms.internal.queue.WSDupsEliminationHistoryQueueMyAppServer"/>
    </JMSServer>
    =========================================
    The full exception stack is below...
    [java] <Oct 11, 2007 1:54:28 PM IST> <Notice> <WebLogicServer> <BEA-000327> <Starting WebLogic Admin Server "MyAppServer" for domain "MyAppDomain">
    [java] <Oct 11, 2007 1:54:41 PM IST> <Error> <JMS> <BEA-040368> <The following exception has occurred:
    [java] java.lang.InstantiationError: weblogic.jms.common.DestinationImpl
    [java] at weblogic.jms.backend.BEDestination.initialize(BEDestination.java:801)
    [java] at weblogic.jms.backend.BEDestination.initialize(BEDestination.java:341)
    [java] at weblogic.jms.backend.BackEnd.createDestination(BackEnd.java:1952)
    [java] at weblogic.jms.backend.BackEnd.initialize(BackEnd.java:667)
    [java] at weblogic.jms.JMSService.addJMSServer(JMSService.java:2247)
    [java] at weblogic.jms.JMSService.addDeployment(JMSService.java:2031)
    [java] at weblogic.management.mbeans.custom.DeploymentTarget.addDeployment(DeploymentTarget.java:337)
    [java] at weblogic.management.mbeans.custom.DeploymentTarget.addDeployments(DeploymentTarget.java:597)
    [java] at weblogic.management.mbeans.custom.DeploymentTarget.updateServerDeployments(DeploymentTarget.java:575)
    [java] at weblogic.management.mbeans.custom.DeploymentTarget.updateDeployments(DeploymentTarget.java:241)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [java] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [java] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [java] at java.lang.reflect.Method.invoke(Method.java:324)
    [java] at weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl.java:755)
    [java] at weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:734)
    [java] at weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBeanImpl.java:516)
    [java] at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
    [java] at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1525)
    [java] at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:990)
    [java] at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:948)
    [java] at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:948)
    [java] at weblogic.management.internal.MBeanProxy.invokeForCachingStub(MBeanProxy.java:475)
    [java] at weblogic.management.configuration.ServerMBean_Stub.updateDeployments(ServerMBean_Stub.java:7731)
    [java] at weblogic.management.deploy.slave.SlaveDeployer.updateServerDeployments(SlaveDeployer.java:1321)
    [java] at weblogic.management.deploy.slave.SlaveDeployer.resume(SlaveDeployer.java:339)
    [java] at weblogic.management.deploy.DeploymentManagerServerLifeCycleImpl.resume(DeploymentManagerServerLifeCycleImpl.java:229)
    [java] at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:136)
    [java] at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:965)
    [java] at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:360)
    [java] at weblogic.Server.main(Server.java:32)
    Am i missing something.
    Thanks in advance.
    Edited by rdayalan at 10/11/2007 1:45 AM

  • Exception starting server when using wlserver Ant task

    Hello All:
    When attempting to start my server using the wlserver Ant task, i receive the following error:
    [wlserver] java.lang.NoClassDefFoundError: weblogic/Server
    [wlserver] Exception in thread "main"
    [wlserver] Error in server execution
    my snippet is as follows:
    <target name="start-server">
    <wlserver beahome="C:\bea" weblogichome="c:\bea\weblogic81" host="localhost"
                        port="7001" username="weblogic" domainname="mydomain" password="weblogic"
                        servername="myserver" action="start"/>
    </target>
    It seems as if it should work fine. Anybody have any solutions? Thanks in advance.
    Ricky

    Ricky,
    You have to add the weblogic JARs to the classpath of the wlserver task.
    add something similar to the following (bold text are additions):
    <path id="classpath.weblogic">
    <fileset dir="c:/bea/weblogic81/server/lib">
    <include name="weblogic_sp.jar" />
    <include name="weblogic.jar" />
    <include name="webserviceclient.jar" />
    </fileset>
    </path>
    <target name="start-server">
    <wlserver beahome="C:\bea" weblogichome="c:\bea\weblogic81" host="localhost"
    port="7001" username="weblogic" domainname="mydomain" password="weblogic"
    servername="myserver" action="start" classpathref="classpath.weblogic"/>
    </target>
    --Peter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Ant task wlserver

    Hi, i try to use a wlserver task in my maven plugin :
    <ant:wlserver
    dir="c:/myDomain"
    host="myHost"
    port="7005"
    username="name"
    password="pwd"
    action="start"
    verbose="true"
    domainname="msl"
    servername="AdminServer"
    beahome="C:/bea"
    weblogichome="C:/bea/weblogic81">
         <ant:classpath>
         <ant:path refid="maven.dependency.classpath"/>
         </ant:classpath>
    </ant:wlserver>
    i have the following exception :
    [wlserver] The WebLogic Server did not start up properly.
    [wlserver] java.lang.ExceptionInInitializerError
    [wlserver]      at weblogic.management.internal.BootStrap.<clinit>(BootStrap.java:116)
    [wlserver]      at weblogic.security.internal.BootProperties.<clinit>(BootProperties.java:31)
    [wlserver]      at weblogic.security.internal.ServerAuthenticate.main(ServerAuthenticate.java:88)
    [wlserver]      at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:333)
    [wlserver]      at weblogic.Server.main(Server.java:32)
    [wlserver] Caused by: java.lang.RuntimeException: error in finding weblogic.Home
    [wlserver]      at weblogic.Home.<init>(Home.java:52)
    [wlserver]      at weblogic.Home.getInstance(Home.java:86)
    [wlserver]      at weblogic.Home.getPath(Home.java:94)
    [wlserver]      at weblogic.management.internal.BootStrapConstants.<clinit>(BootStrapConstants.java:91)
    [wlserver]      ... 5 more
    I set weblogichome, so what is my mistake ?
    Thanks for any help,
    Fabrice

    See CR294076 in [url http://edocs.bea.com/wls/docs92/issues/known_resolved.html]
    Need to set in ANT_OPTS ignore the comment about javac its just java task which takes the jvmargs

  • Wlserver ant task

    When I use the wlserver task is in ant build file I get an error saying class weblogic.ant.taskdefs...
    not found even though I have set it in my build file..
    I am not using ant which comes with weblogic.
    Anil

    I heard that wlconfig and wlserver ant tasks do not work with Weblogic 7.0 is that
    true?
    Anil
    "Vitaly Yurik" <[email protected]> wrote:
    >
    Hi Anil,
    Could you send your build file as an attachment. Also I need to know
    under which
    directory this build file is place. Is it correct that you are failing
    to run
    command:
    ant weblogic.Admin
    Vitaly
    "Anil Jacob" <[email protected]> wrote:
    Hi vitaly,
    I am using ant 1.5 which is downloaded from the ant website. Currently
    I use the
    weblogic.Admin utility as a task in the ant build file for stopping,
    starting
    etc.
    However I wanted to see if the wlserver tak gives me any added advantage.
    I have my own build file. I use the ant command to run the build.
    I know I am missing a class, I want to know which class I need in my
    ant /lib
    folder or in my classpath?
    Thanks
    Anil
    "Vitaly Yurik" <[email protected]> wrote:
    Hi Anil,
    When you are saying: "I am not using ant which comes with weblogic.",
    does it
    mean that
    you are using a different version of ant. If so which version are you
    using.
    Also,
    1. are you using the Weblogic build file?
    2. What "ant" command are yo running.
    Vitaly Yurik
    "Anil Jacob" <[email protected]> wrote:
    When I use the wlserver task is in ant build file I get an error saying
    class weblogic.ant.taskdefs...
    not found even though I have set it in my build file..
    I am not using ant which comes with weblogic.
    Anil

  • How do I connect the remote app on my iDevice to my computer?

    I've seen this question asked plenty of times and have followed all of the suggested fixes and still cannot figure this out.
    I am running Windows 8, with iTunes version 11.0.5
    My iDevice is an iPhone 4 running iOS 6.1.3
    My Remote app is version 3.0.1
    On the Remote app, all I see (other than the settings icon) is
    "Turn on Home Sharing in iTunes on your computer or Apple TV using the account (my account name)
    I have turned on Home Sharing for both iTunes, as well as my iPhone.
    I have went to "Settings>Music>Turn on Home Sharing" This is on.
    I have opened iTunes and went to "File>Home Sharing>Turn Home Sharing on."
    I have opened the remote app. "Settings" Home Sharing is on.
    Each of these are using the same Apple ID.
    I have tried deleting the app and redownloading it.
    I have tried restarting my computer.
    I have tried exiting/signing out of iTunes.
    I have tried turning my phone off, and back on again.
    I have checked my firewall settings, and iTunes is allowed.
    Both my PC, and my iPhone are connected to the same network. The iPhone wirelessly, and my desktop is hardwired.
    I have seen many other people say "Where is the remote button?" With the reply "There is no remote button."
    I have not found this button either. When I go onto the Remote app on my iPhone and go to settings, there is an option to "Add an iTunes Library."
    When I press this, I get a four digit code and the message, "To add an iTunes library, open iTunes on your computer and select "Don's iPhone" from the Devices list."
    When going to iTunes "File>Devices" I get the following.
    Sync. Transfer Purchases. Back Up. Restore From Backup.
    I have read in other related posts that your iDevice is supposed to show up on the top right of the screen, next to the iTunes Store button.
    This does not happen for me, unless I plug in my iDevice via USB.
    I have also read that the "Remote" button is supposed to be located here, but I cannot find one.
    In the iTunes "Help>iTunes Help>Search Remote>Use the Remote app to control your iTunes library>Pair Remote with an iTunes library" It states:
    Tap Remote on your device’s Home screen.
    Tap Add an iTunes Library.A 4-digit code appears.
    Open iTunes on your computer and click the Remote button .
    Type the 4-digit code in the iTunes window.iTunes pairs the library on your computer with the Remote app on your device."
    Of course, I cannot find this Remote button as mentioned before. I have run out of option on what I know to do, and what suggestions I have found to try.
    Any help would be greatly appreciated. Thank you.

    Thank you for the reply.
    ctrl B makes the top bar (File. Edit. View. Controls. Store. Help.) appear and disappear.
    ctrl S makes a side bar appear on the left side of iTunes. It shows the library which has Music. Movies. TV Shows. Apps. Playlists. Ect.
    When I did the steps you suggested, my iPhone did not show up in that list.
    I checked my firewall settings again, and they seem to be okay. My firewall is the only thing that I am not 100% sure of. If I go to Control Pannel>System and Security>Windows Firewall>Allow an app through Windows Firewall. It shows that iTunes is allowed. I'm not sure if something else might need to be allowed as well though. I have a few Remote options that are not allowed such as, Remote Event Log Management, Remote Scheduled Tasks Management, Remote Shutdown, Remote Volume Management, and Routing and Remote Access. I'm not sure if any of these need to be allowed or not, or if they are even affiliated with iTunes.

  • Guide to remote manage Hyper-V servers and VM's in workgroups or standalone

    This guide is based on the following 3 products:
    Windows server 2012 (core)
    Windows 8
    Hyper-V server v3 / Hyper-V server 2012
    The following guide will enable you to:
    1: remotely manage your Hyper-V Virtual Machines with Hyper-V manager
    2: remotely manage your Hyper-V servers' firewall with a MMC snap-in.
    3: remotely manage your Hyper-V server (2012) with server manager
    ! This should also work for Core installations of server 2012, but I haven't tried.
    This guide is purely focussed on servers in a WORKGROUP, or as a stand alone.
    I CAN NOT tell you what you need to do to get it working in a domain.
    * You can run these commands straight from the console (Physically at the machine) or through RDP.
    * You will need to be logged on as an administrator.
    * Commands are listed in somewhat random order; I do however advise to follow the steps as listed.
    * Commands with ? in front of them are only ment to be helpfull for troubleshooting,
    * and to identify settings and changes made.
    * Commands and instructions with ! in front of them are mandatory.
    - server: means the server core or hyper-v server (non gui)
    - client: means the machine you want to use for remote administration.
    - Some commands are spread over 2 lines; be sure to copy the full syntax.
    > To enable the Hyper-V manager to connect to your server, you need to perform the following 2 actions: (Assuming you have already installed the feature)
    1:
    ! Client: Locate the C:\Windows\System32\Drivers\etc\hosts file.
    ! right-click --> properties --> security
    ! click --> edit --> add --> YOURUSERNAME or Administrator --> OK
    ! then select this new user, and tick the "modify"-box under the "allow"-section.
    ! apply the change, and close.
    ! doubleclick the file, and open with notepad
    ! add the ip-address and name of your server (no // or other crap needed)
    ! Save the file
    # I recommend putting a shortcut to this file on the desktop.
    # If you change the ip-address of your server (e.g. move the server from staging to a live environment)
    # you might forget to do so in the hosts file.
    # Hyper-V manager, MMC, RSAT, and Server-manager all rely on the hosts-file to resolve the name.
    # some of these might connect to their respective service on an i.p.-level, but some don't.
    # This is the main reason you need to modify this file.
    ! USE AN ELEVATED CMD/POWERSHELL PROMPT TO CONTINUE !
    # the next config needs to be done on windows 8.
    # It seems that it's already preconfigured under server 2012
    2:
    ! Client: dcomcnfg
    ! open component services --> computers
    ! right-click -> my computer -> properties
    ! select "COM SECURITY" tab
    ! under "ACCESS PERMISSIONS" select "edit limits"
    ! select "ANONYMOUS LOGON", and tick "remote access" under ALLOW
    # Without this adjustment, you can't connect to your Hyper-V server
    # with the Hyper-V manager if you're not in a domain.
    > And if you haven't done so already... make sure you have enabled remote management number 4 on the Hyper-V server console.
    > Next, is to get the MMC firewall snap-in working.
       The reason for this, is to have a GUI available to configure it.
       If you're happy without it, you may skip this and use a shell instead to do so.
    ? server: netsh advfirewall show currentprofile
    # shows the current profile (public/domain/private) and its settings
    # depending on your needs, you should set the right profile to fit your needs.
    # You can easily do this when the MMC snap-in is done. (after you've followed these steps)
    ! server: netsh advfirewall set currentprofile settings remotemanagement enable
    # enables remote management of the firewall on an application level 
    # (In other words: allows the firewall to be remotely managed)
    ! server: netsh advfirewall firewall set rule group="Windows Firewall Remote Management" new enable=yes
    # allows remote management of the firewall, through the required firewall ports with TCP protocol.
    # 4 rules will be updated to allow access: public & Domain, dynamic and endpoint-mapper.
    # You can disable/add/change the rule from the MMC snap-in after finishing this guide.
    # e.g. set the firewall through the MMC-GUI to only allow specific ip-addresses etc.
    ? server: netsh advfirewall firewall show rule all
    # Shows a list of available rules, and their current state.
    # when run from cmd, the list exceeds the maximum length for review.
    # (from cmd,type:) start powershell, and run the command from there.
    ! Client: cmdkey /add:YOURSERVERNAME /user:USERNAMEONTHESERVER /pass:THEPASSWORDOFTHATUSER
    # I recommend you to use a username with enough privileges for management
    # All capital letters need to be replaced with your input
    # CMD answers "credential added successfully" when you're done
    ! Client: locate MMC, and run it as an admin.
    # In windows 8/2012, go to search and type MMC. Right-click the icon, 
    # and choose run as admin on the bar below.
    ! Client: application MMC: select "file" --> Add/remove snap-in 
    ! --> (left pane) scroll down to "windows firewall" --> select and click "add"
    ! select "another computer"
    ! type the name of the server you want to manage (NO workgroup/ or //, just same name as you typed for cmdkey)
    * Part 2 is done.
    # Have a look by doubleclicking the firewall icon in the left pane.
    # It looks and works the same as the GUI version that you are familiar with.
    ! Next is the Server Manager.
    # Follow the steps listed to get your server listed and manageable in the server manager.
    ! Client: Open the created Firewall snap-in for your server.
    ! Find the 3 "Remote Event Log Management" entries in the list of INBOUND rules, and enable them.
    ! Open powershell --> in cmd windows, type: start powershell
    ! run the following line in powershell
    ! Client: in C:\Windows\system32> set-item WSMAN:\localhost\client\trustedhosts -value YOURSERVERNAME -concatenate
    # WinRM Security Configuration.
    # This command modifies the TrustedHosts list for the WinRM client. The computers in the TrustedHosts list might not be
    # authenticated. The client might send credential information to these computers. Are you sure that you want to modify
    # this list?
    # [Y] Yes  [N] No  [S] Suspend  [?] Help (default is "Y"): y
    # I recommend to choose yes; unless you like to pull some more hairs...
    ! server: winrm qc
    # WinRM service is already running on this machine.
    # WinRM is not set up to allow remote access to this machine for management.
    # The following changes must be made:
    # Configure LocalAccountTokenFilterPolicy to grant administrative rights remotely
    # to local users.
    # Make the changes? y / n
    !  select yes
    ! Client: open the server 2012 server manager
    ! click manage -> add server
    ! select the DNS tab, and type the name of your server
    Done.
    You can now manage your remote server through the familiar computer management GUI.
    ! Right-click your remote server, and select "Computer Management"
    A few side notes:
    ? The Performance tab seems to list the local machine's performance, in stead of the remote servers'
    ? If you want Windows server backup, you need to right-click the server in the server manager, and select "add roles and features.
    ? it will then become available under the "computer management" of the remote server.
    If you liked this guide you may thank my employer, Mr. Chris W.
    for giving me the time to work it all out.
    Cheers!

    As a little update to the post, I'd like to add that replication, clustering and migration will not work in workgroup environments. Unless someone can provide an additional guide for this, I'd recommend anyone to no even bother to try.
    To manage the standalone hyper-v server in a remote location over the internet, I would recommend the following:
    Install windows 8 pro (x86 uses less resources!) as a vm on the host, and assign 2 network connections to it.
    1 external (shared with host) (be sure you have a dedicated ip-address for it!)
    1 internal connection.
    What I did was this:
    As soon as you've installed the win8 guest, proceed with the guide as described.
    For the 1st step of the guide (hosts-file) use the ip-address you will later assign to the "internal" network switch of the host!
    In my example, I'm using 10.0.0.1 for the host, and 10.0.0.2 for the guest.
    To be clear: I first used the guide on a LAN-environment, and did all the steps from a "real" client to server on the LAN.
    Then, installed the win8 guest on the host using the "real" clients' hyper-v manager over the LAN.
    Next, assigned the 2 network connections to the VM, and configured them as follows:
    external - as you would to be able to make your guest reach the internet.
    internal - I used the following config:
    ip-address: 10.0.0.2
    subnet: 255.255.255.252
    gateway - blank
    dns - Blank
    Now, when you get to the console of the hyper-v server (host) or RDP to it, go to network settings.
    You'll see that the internal card has been added here as well.
    Configure it as follows:
    ip-address: static - 10.0.0.1
    subnet: 255.255.255.252
    gateway - blank
    dns - blank
    You should now be able to ping your guest (win8) on 10.0.0.2 if it's running.
    Don't forget to enable ping response (option 4 on the host) to test connectivity the other way around as well (guest to host)
    When you're done, you'll be able to RDP to the guest OS over the internet, and then connect to the host with server manager, hyper-v manager, and MMC.
    Don't forget to enable each module on the hosts' firewall to make the snap-ins work!
    Remote volume management requires your guest/client firewall INcoming ports to be enabled as well! not just the host.
    Either update the firewall rules from the MMC gui as described in the guide, or use the following commands on the
    hosts' powershell:
    Enable the firewall rules with the command Enable-NetFirewallRule -DisplayGroup "USE_THE_COMMANDS_BELOW" (include the " " in the command)
    Remote Service Management
    Remote Volume Management
    Remote Event Log Management
    Remote Scheduled Tasks Management
    Windows Firewall Remote Management
    Windows Remote Management
    You can get the list with Get-NetFirewallRule -DisplayName *management*
    You can get the list with Get-NetFirewallRule -DisplayName *remote*
    Commands provided with credits to F. verstegen
    Cheers,
    Michael.
    Sigh...

  • I downloaded the remote app, but whenever i go to type in the passcode on itunes nothing shows up so i can put it in. everytime i click devices it just goes to my ipod information and no 4 boxes like its supposed to. how do i get the 4 boxes to appear?

    help! i really want to use this app, but i don't know what to do

    Thank you for the reply.
    ctrl B makes the top bar (File. Edit. View. Controls. Store. Help.) appear and disappear.
    ctrl S makes a side bar appear on the left side of iTunes. It shows the library which has Music. Movies. TV Shows. Apps. Playlists. Ect.
    When I did the steps you suggested, my iPhone did not show up in that list.
    I checked my firewall settings again, and they seem to be okay. My firewall is the only thing that I am not 100% sure of. If I go to Control Pannel>System and Security>Windows Firewall>Allow an app through Windows Firewall. It shows that iTunes is allowed. I'm not sure if something else might need to be allowed as well though. I have a few Remote options that are not allowed such as, Remote Event Log Management, Remote Scheduled Tasks Management, Remote Shutdown, Remote Volume Management, and Routing and Remote Access. I'm not sure if any of these need to be allowed or not, or if they are even affiliated with iTunes.

  • How do I change the assigned site code on a REMOTE client via WMI (C#)?

    Hi
    I was wondering if it is possible to change the site code on a client remotely via WMI. I have found one or two links to this, eg
    http://msdn.microsoft.com/en-us/library/jj874135.aspx
    and
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/67b671bb-4819-4e7a-a4f6-6cb7ded17722/sccm-2007-change-assigned-site-code-on-clients?forum=configmgrgeneral
    However none of these will allow me to change it remotely directly from my machine. I have written a tool which fixes many issues but having difficulty with this one. In the past I have even resorted to copying a script remotely to an affected machine then
    setting a remote scheduled task which executes the script. This was effective but very dirty! I find it difficult to believe there is no way to do this directly but can't seem to find anything suggesting it is possible.
    Before anyone replies with a 'what are you trying to achieve...' type answer, I have a similar situation to that of the guy in the second link but I would like something more instant.
    Many thanks

    psexec or winrm will allow you to do this.
    Jason | http://blog.configmgrftw.com

  • Remote Access Disk Management

    I am wanting to be able to manage the new installation of windows 2012r2 core, which is a workgroup.
    I can see the event logs etc, but when I try device manager or disk manager I receive rpc error.
    What do I need to configure?

    I've posted this to a number of forums.  It has allowed me to manage almost everything remotely.  There are still some things with disk manager that don't work quite right, but they can be handled correctly from Server Manager instead of disk manager. 
    I run this on every server I build and I try to do almost all my management remotely.  Some things do require command line.  Microsoft has gotten a lot better over the years on the MMCs handling things remotely, but they are not 100% there.
    Oops, as I clicked submit, I saw the fact that your server is in a workgroup.  My script assumes domain.  But,
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/fe80f0aa-0697-4657-a1da-19d36b036698/guide-to-remote-manage-hyperv-servers-and-vms-in-workgroups-or-standalone?forum=winserverhyperv is another post talking about how another person accomplished
    in a workgroup.
    # Set-UcsHyperVRemoteMgmt.ps1
    # C A U T I O N: Ensure these settings conform to company security policy
    # This script works on a variety of settings that are easiest done from the
    # local machine to make it remotely manageable by a management workstation.
    # To find rule names
    # Get a list of possible groups
    # Get-NetFirewallRule | Select DisplayGroup -Unique | Sort DisplayGroup
    # To list the applicable rules that may be set.
    # Get-NetFirewallRule | Where { $_.DisplayGroup –Eq “Remote Volume Management”} | Format-Table Name
    # Ensure Server Manager remoting is enabled
    Configure-SMRemoting.exe -Enable
    # Set some firewall rules
    # Enable ping requests in and out
    Set-NetFirewallRule –Name “FPS-ICMP4-ERQ-In” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “FPS-ICMP6-ERQ-In” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “FPS-ICMP4-ERQ-Out” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “FPS-ICMP6-ERQ-Out” –Enabled True -Profile Any
    # Enable remote volume management - firewall rules need to be set on both
    # source and destination computers
    # ***NOTE*** Policy must also be set on system to "Allow remote access
    # to the Plug and Play interface"
    # This is done with gpedit.msc locally or gpedit for domain policy
    Set-NetFirewallRule –Name “RVM-VDS-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RVM-VDSLDR-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RVM-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable DCOM management requests in
    Try
    Set-NetFirewallRule –Name “ComPlusNetworkAccess-DCOM-In” –Enabled True -Profile Any
    Catch
    Write-Host "ComPlusNetworkAccess-DCOM-In not set; assuming core installation"
    # Enable remote service management
    Set-NetFirewallRule –Name “RemoteSvcAdmin-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name "RemoteSvcAdmin-NP-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteSvcAdmin-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable Remote Event Log Management
    Set-NetFirewallRule –Name "RemoteEventLogSvc-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteEventLogSvc-NP-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteEventLogSvc-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable Remote Scheduled Tasks Management
    Set-NetFirewallRule –Name “RemoteTask-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteTask-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable Windows Firewall Remote Management
    Set-NetFirewallRule –Name “RemoteFwAdmin-In-TCP” –Enabled True -Profile Any
    Set-NetFirewallRule –Name “RemoteFwAdmin-RPCSS-In-TCP” –Enabled True -Profile Any
    # Enable WMI management requests in
    Set-NetFirewallRule –Name “WMI-WINMGMT-In-TCP” –Enabled True -Profile Any
    # Enable Remote Shutdown
    Set-NetFirewallRule –Name “Wininit-Shutdown-In-Rule-TCP-RPC” –Enabled True -Profile Any
    # Enable Network Discovery on the Domain Network
    Set-NetFirewallRule –Name “NETDIS-FDPHOST-In-UDP” –Enabled True -Profile Domain
    Set-NetFirewallRule –Name “NETDIS-FDPHOST-Out-UDP” –Enabled True -Profile Domain
    # Set some services to automatically start and start them.
    Set-Service -Name PlugPlay -StartupType Automatic
    Start-Service PlugPlay
    Set-Service -Name RemoteRegistry -StartupType Automatic
    Start-Service RemoteRegistry
    Set-Service -Name vds -StartupType Automatic
    Start-Service vds
    # Enable Remote Desktop
    (Get-WmiObject Win32_TerminalServiceSetting -Namespace root\cimv2\TerminalServices).SetAllowTsConnections(1,1) | Out-Null
    (Get-WmiObject -Class "Win32_TSGeneralSetting" -Namespace root\cimv2\TerminalServices -Filter "TerminalName='RDP-tcp'").SetUserAuthenticationRequired(0) | Out-Null
    # Enable Remote Desktop rules for all profiles
    Set-NetfirewallRule -Name "RemoteDesktop-UserMode-In-TCP" -Enabled True -Profile Any
    Set-NetfirewallRule -Name "RemoteDesktop-UserMode-In-UDP" -Enabled True -Profile Any
    .:|:.:|:. tim

  • Know more detail about the Remote Support Platform for SAP Business One ?

    SAP Business One 9.1 is about to release this year and we can see in the feature enhancements that a significant update is planned in the Remote Support Platform for SAP Business One, more commonly known as RSP. Let’s have a quick look what update is planned for RSP in version 9.1:
    Enhancements planned in Remote Support Platform for SAP Business One 9.1
    RSP is planned to support both SAP Business One on Microsoft SQL Server as well as SAP Business One on HANA Database
    RSP Processes and Reports adapted to SAP HANA Database
    With this plan RSP will help in the areas of Download, Installation, Go-Live Check, Monitoring, Upgrade and Support for SAP Business One both   on SQL Server and HANA.
    But like me (non-SAP B1 Consultant) many of you have the question what is RSP and how it helps in support? Here I have tried to gather all information.
    What is Remote Support Platform for SAP Business One?
    The remote support platform for SAP Business One is designed to protect a SAP Business One installation by providing automated and remote support in a high-volume business.
    The platform monitors the entire SAP Business One environment. By significantly reducing the time between the appearance, identification, and resolution of issues, the remote support platform for SAP Business One minimizes the impact on customer databases and processes.
    Some Key Features of Remote Support Platform:
    Showing alerts to SAP B1 Admin about the events which require their attention, such as low disk space, database backups, etc.
    Incident Reports against the issues identified which require attention of SAP Support
    Company Database Backup and Restore options
    Regular fixes of Company Database inconsistencies
    Check, Download and Install regular updates in SAP Business One
    Upload Logs and required files to SAP Support or to Partner Support on regular basis
    Some details about RSP Backup Management
    Schedule daily, weekly, and monthly backups
    Perform differential and full database backups
    Back up transaction logs
    Back up files to shared folders on a network
    System Status Report through RSP
    From June 1st 2013, it will be mandatory to install, configure and upload the System Status Report (SSR) from Remote Support Platform (RSP) for SAP Business One in order to receive support for messages of a technical nature (upgrades, performance & crashes, etc).
    Database uploads only via RSP
    From June 1st 2013 SAP Business One Support will only accept database uploads to SAP via remote support platform for SAP Business One. In certain exceptional circumstances STFP may be used but this will constitute a minority of cases.
    Microsoft Windows PowerShell Scripting
    In the remote support platform studio, you can create tasks using Microsoft Windows PowerShell scripting. PowerShell enables you to perform remote administrative tasks on customers’ Microsoft Windows operating systems, by providing full access to Component Object Model (COM) and Windows Management Instrumentation (WMI).Some Network Prerequisite for RSP
    To achieve the internet connection test, you must allow port 80 for the RSP external communication
    Disabling antivirus firewall or add the RSP to the trusted zone of the antivirus
    Set the correct proxy
    Disabling Windows firewall in the TP_link Wireless Configuration Utility
    Want to now More about It Click Here :   Remote Support Platform for SAP Business One

    SAP Business One 9.1 is about to release this year and we can see in the feature enhancements that a significant update is planned in the Remote Support Platform for SAP Business One, more commonly known as RSP. Let’s have a quick look what update is planned for RSP in version 9.1:
    Enhancements planned in Remote Support Platform for SAP Business One 9.1
    RSP is planned to support both SAP Business One on Microsoft SQL Server as well as SAP Business One on HANA Database
    RSP Processes and Reports adapted to SAP HANA Database
    With this plan RSP will help in the areas of Download, Installation, Go-Live Check, Monitoring, Upgrade and Support for SAP Business One both   on SQL Server and HANA.
    But like me (non-SAP B1 Consultant) many of you have the question what is RSP and how it helps in support? Here I have tried to gather all information.
    What is Remote Support Platform for SAP Business One?
    The remote support platform for SAP Business One is designed to protect a SAP Business One installation by providing automated and remote support in a high-volume business.
    The platform monitors the entire SAP Business One environment. By significantly reducing the time between the appearance, identification, and resolution of issues, the remote support platform for SAP Business One minimizes the impact on customer databases and processes.
    Some Key Features of Remote Support Platform:
    Showing alerts to SAP B1 Admin about the events which require their attention, such as low disk space, database backups, etc.
    Incident Reports against the issues identified which require attention of SAP Support
    Company Database Backup and Restore options
    Regular fixes of Company Database inconsistencies
    Check, Download and Install regular updates in SAP Business One
    Upload Logs and required files to SAP Support or to Partner Support on regular basis
    Some details about RSP Backup Management
    Schedule daily, weekly, and monthly backups
    Perform differential and full database backups
    Back up transaction logs
    Back up files to shared folders on a network
    System Status Report through RSP
    From June 1st 2013, it will be mandatory to install, configure and upload the System Status Report (SSR) from Remote Support Platform (RSP) for SAP Business One in order to receive support for messages of a technical nature (upgrades, performance & crashes, etc).
    Database uploads only via RSP
    From June 1st 2013 SAP Business One Support will only accept database uploads to SAP via remote support platform for SAP Business One. In certain exceptional circumstances STFP may be used but this will constitute a minority of cases.
    Microsoft Windows PowerShell Scripting
    In the remote support platform studio, you can create tasks using Microsoft Windows PowerShell scripting. PowerShell enables you to perform remote administrative tasks on customers’ Microsoft Windows operating systems, by providing full access to Component Object Model (COM) and Windows Management Instrumentation (WMI).Some Network Prerequisite for RSP
    To achieve the internet connection test, you must allow port 80 for the RSP external communication
    Disabling antivirus firewall or add the RSP to the trusted zone of the antivirus
    Set the correct proxy
    Disabling Windows firewall in the TP_link Wireless Configuration Utility
    Want to now More about It Click Here :   Remote Support Platform for SAP Business One

  • How do I search threads within a specific support community, i.e.. Apple Remote Desktop?

    Very frustrated with new layout of discussion forums...
    How do I search key words within threads within a specific support community?
    For Example I want to search the phrase 'couldn't collect' within the Apple Remote Desktop community.

    Thanks for your response. I'm well aware of the global search field.
    My problem with that is if I search the term 'couldn't collect', (in reference to a very specific Error message generated while running a report via Apple Remote Desktop Task Server) I get a slew of useless hits that have either the words 'couldn't' and/or 'collect' or any variation of those words, such as 'collection'.
    I'm looking for responses that are very specific to Apple Remote Desktop only. I don't have hours to weed through thousands of responses that have no bearing to that at all.
    Searching within specific sub-communities was possible before this new layout. Whatever happened to the booelean searches and searching by phrases and the 'advanced' searches? Do they still exist?

  • SCCM 2012R2 with Intune - Remote Wipe iOS devices

    Hi,
    I have questions regarding Remote Wipe in SCCM 2012 R2 with Intune manage iOS-devices.
    How often do the iOS device "talk" to SCCM/Intune environment?
    Is that "value" possible to change? (client settings, Intune-admin console)
    I've published applications in SCCM and installed these via "Company Portal", but when I manage to run Remote Wipe it wont delete the data installed by SCCM/Intune? 
    Has anyone tested this functionality?
    Regards
    Daniel

    Microsoft has released and patch that effectively shortens the remote wipe task to seconds. I am currently testing in my environment. Please note you need to be running 2012 R2 CU3 for the update to be applicable
    http://windowsitpro.com/configuration-manager/new-configmgr-hotfix-adds-immediate-client-notifications-speeds-remote-wipe-se

Maybe you are looking for

  • Oracel Database 11g Release 2 Connection with  Forms Builder 10g

    I installed Oracle Database 11g at Microsoft window 32-bit , Now I want to connect it with my forms buider 10g developersuit. Please tell me ho do I connect it.

  • Stocks-error

    Hi While creating the stocks i am getting the following error"No stock posting possible for this material. Where should i check Thanks regards Hema

  • SAP Logs in NWA

    hi all, I am unable to view SAP logs in NWA logs and traces..It keeps on processing, but we can see logs once in a blue moon only. Since, NWA is main and powerful tool for J2ee engine troubleshooting, we need this be perfect so that we can make use t

  • IPad stopped changing orientation.  Audio/orientation switch is correct.  What did I change?

    I am learning to use my new iPad.  While checking it out, I must have done something to make it stop orienting between portrait and landscape.  I know I moved the switch in setup/general/audio but I moved it back.  When I move the actual switch on th

  • Capacity for attached documents

    Dear all, Users can attach documents in transaction FD33 (via Services for Object). Can you please let us know what is the maximum size of documents which can be attached? What is the time frame until documents can be reached (without archiving)? Tha