PowerShell Web Access - Prefill Computer Name?

One of the devs asked me if there was some way to prefill the computer name field for the PSWA site (since we use the localhost machine quite often).
Is there any way to do this?  He mentioned maybe query params?

If there is a query parameter or query string that can be added to the URL then I am not aware of it. Even so, it can be done.
You can modify the code in the logon.aspx file but it'll take some work. Start by stopping the website in IIS. Then locate the file at C:\Windows\Web\PowerShellWebAccess\wwwroot\en-US\logon.aspx. You need to add value="computername" to
the line <input id="targetNodeTextBox" name="computer-name" type="text" class="required" runat="server" clientidmode="Static" />. I added it after the word input and before id="targetNodeTextBox"...
The issue here is that you will have to take ownership of the file first, add modify and write permissions to a group (that you're in) or user (that's you) on the file, copy the file out of the directory, edit it as mentioned above, save it with a new name
and close the file, rename the file to logon.aspx, and then copy it back to the directory above. Painful (and
possibly a security risk?), but that's the only way in which I am aware.
Be sure to start the website in IIS before reloading your PSWA website.
Edit: Added a step to the instructions about adding permissions.

Similar Messages

  • Powershell Web Access - Authorization failure

    I've been beating my head against the wall on this one.
    Setup Powershell web Access by doing the following:
    1.   Install-WindowsFeature WindowsPowerShellWebAccess –IncludeManagementTools
    2.   Install-PswaWebApplication –UseTestCertificate
    3.   Add-PswaAuthroizationRule
    –UserName Domain\Username –ComputerName
    * –ConfigurationName MYCONFIG
    I'm a domain administrator and I ran these three cmdlets from an administrator powershell window.
    The PSWA window gives me this error:  
    If I run enter-pssession -computername COMPUTER 
    it works just fine, but not from pswa.  I don't know what is wrong here.  Nothing in the
    event logs either.
    This is from a Server 2012 machine to a Server 2012 machine.
    Anyone have any ideas?

    I did add a restrictive authorization rule.  Step 3 that i performed was to run:
    Add-PswaAuthroizationRule –UserName Domain\Username –ComputerName
    * –ConfigurationName MYCONFIG
    Did I miss something in this?

  • Powershell web access limited to PowerShell 1.0?

    Hello,
    I setup PowerShell Web Access and it seems to be limited to PowerShell 1.0. I deployed module designed for PowerShell 2.0 and I'm getting error below when trying to import it. Is it expected?
    Windows PowerShell
    Copyright (C) 2013 Microsoft Corporation. All rights reserved.
    PS C:\Users\g\Documents>
    Import-Module AAWebAdministration
    Import-Module : The current Windows PowerShell host is: 'ServerRemoteHost' (version 1.0.0.0). The module
    'C:\Windows\system32\WindowsPowerShell\v1.0\Modules\AAWebAdministration\AAWebAdministration.psd1' requires a
    minimum Windows PowerShell host version of '2.0' to run.
    + CategoryInfo : ResourceUnavailable: (C:\Windows\syst...nistration.psd1:String) [Import-Module], Invalid
    OperationException
    + FullyQualifiedErrorId : Modules_InsufficientPowerShellHostVersion,Microsoft.PowerShell.Commands.ImportModuleComm
    and
    PS C:\Users\g\Documents>

    That is just for the ServerRemoteHost version, which doesn't mean that the actual PowerShell version is 1.0. It sounds like the module metadata is incorrect and should be adjusted.
    You can go and edit the .psd1 file that is being referenced and set the powershellversion key to 2.0 and set the powershellhostversion to ''.
    This should clear up that issue.
    Boe Prox
    Blog |
    Twitter
    PoshWSUS |
    PoshPAIG | PoshChat |
    PoshEventUI
    PowerShell Deep Dives Book

  • PowerShell Web Access - Creating "Self-Serve" Behaviour

    Hi all,
    I am exploring PowerShell Web Access and I'm looking to set it up to offer self-serve capabilities to Dev/QA.  Basically I want to Dev/QA to only be able to execute scripts (no running cmdlets, etc) and only in particular directories.
    The goal of this is to allow Dev/QA to get access to the scripts I would normally run, but be able to run them when I'm away for whatever reason (while still keeping them out of the rest of the system).
    Can anyone point me in the right direction?
    Thanks.

    I think you can better create Restricted PowerShell EndPoints in PowerShell to allow only the Script to be run (not even core cmdlets)
    Have a look here:
    http://blogs.technet.com/b/heyscriptingguy/archive/2012/07/27/an-introduction-to-powershell-remoting-part-five-constrained-powershell-endpoints.aspx
    Hope this helps
    Knowledge is Power{Shell}.
    This was the ticket.  I set up a PSSessionConfiguration and hooked it up via Add-PswaAuthorizationRule.
    Thanks.

  • Web access how to stream to android and ipad`s

    Hello.
    At the moment I can log into my web access server from another pc and click on media files and be able to watch a film by streaming.
    I am unable to do this on my android or ipad is there a step by step guide on how to get this to work?
    I am new to owning a server 2012r2 so be gentle.
    Thank you.

    While PowerShell Web Access (PSWA) does require authorization rules to function, these rules do not specify what cmdlets can be used in a PSRemoting session. The PSWA authorization rules define what user, or group of users, can remotely connect to what computer,
    or group of computers, through the PSWA gateway (the PSWA server).
    What you need to research are session configurations and/or endpoints. These are separate from PSWA, but can be used in conjunction with PSWA (PSWA website > Optional connection settings > Configuration >
    NameOfConfiguration), just as they can in a standard console-based PSRemoting session (Enter-PSSession -ComputerName
    server01 -Configuration NameOfConfiguration -or- Invoke-Command -ComputerName
    server01 -Configuration NameOfConfiguration).
    Start your research with New-PSSessionConfigurationFile and then Register- and Unregister-PSSessionConfiguration. These have been great for our environment, allowing non-admin users access to run very specific cmdlets as an admin, without being an admin
    on the computer.

  • Power Shell Web Access - How to limit the cmdlets and give regular users, access to perform tasks

    It is possible to give to regular/standard users, powershell web access to give only, for example, "get-" cmdlets?
    The ideia is to provide help desk tech users, a minimum level of access on some servers, and it will be usefull to give then, basic and restrcted access to a few cmdlets, performe harmless activities and mybe some level of access, not alloweing to to using
    RDP, but PS, insted

    While PowerShell Web Access (PSWA) does require authorization rules to function, these rules do not specify what cmdlets can be used in a PSRemoting session. The PSWA authorization rules define what user, or group of users, can remotely connect to what computer,
    or group of computers, through the PSWA gateway (the PSWA server).
    What you need to research are session configurations and/or endpoints. These are separate from PSWA, but can be used in conjunction with PSWA (PSWA website > Optional connection settings > Configuration >
    NameOfConfiguration), just as they can in a standard console-based PSRemoting session (Enter-PSSession -ComputerName
    server01 -Configuration NameOfConfiguration -or- Invoke-Command -ComputerName
    server01 -Configuration NameOfConfiguration).
    Start your research with New-PSSessionConfigurationFile and then Register- and Unregister-PSSessionConfiguration. These have been great for our environment, allowing non-admin users access to run very specific cmdlets as an admin, without being an admin
    on the computer.

  • Can't connect to computer in remote web access

    I am running sbs 2011 essentials and have been able to remotely log in to the remote web access page.  Once I get there I can see all the shared folders on the server (and access them) and I can also see the computers available for access (my computer
    and the server).  I can access the server dashboard by logging in as the server administrator (by using domain\admin) and then in a second login as a user (domain\user "with administrative rights").  However, when I go to logon to the client
    computer, I receive the error "Remote Desktop cannot find the computer "client".  This might mean that client doesn't belong to the specified network.  Verify the computer name and network that you are trying to connect to."
    Do I have a DNS problem since I can connect to the SBS 2011 Essentials server?

    Hi,
    Are you facing issues with all the client machine connection? On the workstations make sure Remote Desktop feature is enabled
    Make sure windows firewall service is enabled and inbound rule for allow RDP is enabled.
    You can also refer to:
    https://support.microsoft.com/kb/2023103?wa=wsignin1.0
    Binu Kumar - MCP, MCITP, MCTS , MBA - IT , Director Aarbin Technology Pvt Ltd - Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Web Service Client using computer name instead of IP

    Hi,
    I've built a small EJB web service with a JAVA application deployed via JAVA Web Start for the client.
    I testing the application on our LAN and it worked perfectly on one machine. I tested it on another machine and I get an erro along the lines of:
    HTTP Transport Error java.net.UnknownHostException: Ian
    "ian" being the computer name of the server machine hosting the EJB we service. I presume the program worked on the first machine as it new which computer on the LAN was "ian", whereas the second machine didnt'.
    The applications were built in NetBeans and the only place i can see the "ian" address being used is in the client WSDL file:
      <service name="VOQAOnline">
        <port binding="tns:VOQAOnlineSEIBinding" name="VOQAOnlineSEIPort">
          <soap:address location="http://ian:8080/VOQAOnline-EJBModule/VOQAOnline"/>
        </port>
      </service>Netbeans seems determined to keep this address using the computer name, even if i delete the web service refernce add it again using the server ip address. I've also tried editing the WSDL file in the client JAR post compile, however the error still occurs, so maybe the problem is somewhere else?
    The App server I am using is JBoss 4.0.3. Maybe there is a configuration on the server i need to do?
    Eventually I plan to deploy the client app over the Internet, so using the computer name is clearly insufficient and it needs to use the IP. It's really annoying how it works on some machines on the network but not others. Any ideas on how to solve this?

    You can associate a Virtual Host to the loopback IP address 127.0.0.1 read about Virtual Hosts here: http://tomcat.apache.org/tomcat-6.0-doc/virtual-hosting-howto.html
    But with the above configuration alone you can access your app via http://somedomainname.com only on your local machine, no one else on the internet will see it.

  • Error. your computer must be running a supported version of Microsoft Visio and a browser that supports opening files directly from Visio Web Access.

    I have the following inside my SharePoint server 2013 :-
    EnterPrise Wiki site collection.
    i have both "Excel services Application "& "Visio Graphics Service" running correctly.
    The problem i am facing is as follow:-
    when a user click on an Excel sheet or Visio document , it will be shown inside the browser without any problem.
    but if the user click on "Open in Visio" OR "Open in Excel" links inside the browser, they will get the following errors:-
    Sorry, but to open this workbook, your computer must be running a supported version of Microsoft Excel and a browser that supports opening files directly from Office Web Apps.
    To open this document, your computer must be running a supported version of Microsoft Visio and a browser that supports opening files directly from Visio Web Access.
    I have the following settings inside my PC:-
    Office 2010 for Excel, word, power point,etc.
    Visio 2013.
    i have disabled SharePoint foundation support for office 2013
    Can anyone advice on this please?

    Hi,
    Please try to reset the Internet Explorer settings or open Internet Explorer in In-Private browsing and then check if this issue occurs.
    If the issue persists, please try to access SharePoint in another computer with Office 2013 and then check if this issue occurs. Or repair Office and restart your server.
    Here is a blog about the same issue for you to take a look at:
    http://sharepointexit.blogspot.com/2013/12/sorry-but-to-open-this-workbook.html
    Best Regards
    Dennis Guo
    TechNet Community Support

  • We have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc. from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when

    Hello All,
    we have created shared folder on multiple client machine in domain environment on different 2 OS like-XP,Vista, etc.
    from some day's When we facing problem when we are access from host name that shared folder is accessible but same time same computer when we are trying to access the share folder with IP it asking for credentials i have type again and again
    correct credential but unable to access that. If i re-share the folder then we are access it but when we are restarted the system then same problem is occurring.
    I have checked IP,DNS,Gateway and more each & everything is well.
    Pls suggest us.
    Pankaj Kumar

    Hi,
    According to your description, my understanding is that the same shared folder can be accessed by name, but can’t be accessed be IP address and asks for credentials.
    Please try to enable the option below on the device which has shared folder:
    Besides, check the Advanced Shring settings of shared folder and confrim that if there is any limitation settings.
    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]

  • Question about "Get Web Drawing URL and Page Name From" for Visio Web Access

    I am trying to get both the web drawing URL and the page name from a list through Share Point Designer 2013, but it doesn´t work.
    It looks fine when a do the web part connection wizard. I select from which columns to get the URL and the page name. But on the final web part page nothing happens. It just shows the URL that is selected in the Visio Web Access Web part. I had hoped that
    that value should be overrided by the SPD-settings.
    I have googled for hours..

    Hello,
    I have now saved the Visio-file in .vdw-format, but it says Visio 2010 Web Drawing (*.vdw). Is there a .vdw-format for 2013? Isn´t that the .vsdx-format?
    Still doesn´t work with the .vdw-format, but maybe I am doing something wrong.
    Any ideas?

  • Powershell dealing with a range of computer names.

    Hello all.  Abridged description, I'm a lab admin trying to re-write a VBS login script into Powershell.  I need to be able to run commands determined by computer name and number...for instance, I have complabA01 through complabA70.  01-25
    need to do an action and copy a shared file, 26-40 need a different action and the same shared file, and 41-70 get a different action still and said shared file.  I've got the base code laid out and functional to determine the computer name and specific
    lines based on that:
    $cn = $env:computername
    If($cn -like 'complabA*'){do stuff}
    If($cn -like 'complabB*'){do other stuff} so on. 
    Is there a way go a layer deeper on that and say "if your number 01-25 do this"?  The problem well may be that I'm coming at this with slightly deeper roots in VBS... so I may well be over/under thinking this.
    In case it'll help, in VBS we handle it by turning the numbers at the end of the name into a separate variable and using said secondary variable in a select case.
    Any thoughts on how that can be done in Powershell?

    You can do this using a regular expression match. For example:
    $computerName = "complabB04"
    $computerName | select-string '^complab([\D])([\d]+)' | foreach-object {
    $labCode = $_.Matches[0].Groups[1].Value
    $computerCode = $_.Matches[0].Groups[2].Value
    "Lab code: $labCode" # B
    "Computer code: $computerCode" # 04
    -- Bill Stewart [Bill_Stewart]

  • How to use display name item in excel web access in sharepoint 2010

    Hi All,
    i have a one excel sheet having 3 or 4 tabs.like sheet 1 or sheet2. and i have save this workbook as abc. and upload it on one document library and insert a excel web access web part on it. but in this page i want to show only sheet 2, so how can i do it
    with Named item. 
    can you please tell me the steps to show my sheet 2 in excel web access rater than showing whole workbook with all tabs.
    i have searched so many blogs but i have no idea how to do it. 
    please help..ASAP.
    Thanks
    Vivek singh Tomar

    Check if this helps
    The following illustration shows a sample EWA Web Part with a Full toolbar. This example shows the workbook in Worksheet view, and includes the
    Open menu, Data menu, and the Find
    button. If the worksheet is shown in Named Item view, a
    View also appears on the toolbar. 
    http://office.microsoft.com/en-in/sharepoint-server-help/excel-web-access-web-part-custom-properties-HA010377893.aspx

  • Excel Web Access(An error has occurred.Please contact your system administrator if this problem persists. )

    I'm using share point 2007 under windows server 2008 R2(one web server, another db server).When I publish a excel(*.xlsx) to report library or view it in web browser with the same error as bellows:
    Excel Web Access
    An error has occurred.
    Please contact your system administrator if this problem persists.
    Please kindly support to guide how to fix it with bellow information in details such as log.Many thanks!
    1. The 12/logs file is as bellows:
    10/10/2014 09:53:55.18  w3wp.exe (0x6528)                        0x5C08 Excel Services               
     Excel Calculation Services     2u7d Medium   ExcelServerSharedWebApplication.Local: An exception was thrown by configdb infrastructure: System.InvalidOperationException: ExcelServerSharedWebApplication.Local: Could
    not get ServerContext.Current, which indicates that either SharePoint or the SSP infrastructure isn't provisioned correctly or that we're running outside of a web context.     at Microsoft.Office.Excel.Server.ExcelServerSharedWebApplication.get_Local(). 
    10/10/2014 09:53:55.18  w3wp.exe (0x6528)                        0x5C08 Excel Services               
     Excel Services Administration  8tqh Critical Excel Services: Unexpected exception while trying to access Shared Services Database;. Error = ExcelServerSharedWebApplication.Local: Could not get ServerContext.Current, which indicates that
    either SharePoint or the SSP infrastructure isn't provisioned correctly or that we're running outside of a web context.. 
    10/10/2014 09:53:55.18  w3wp.exe (0x6528)                        0x5C08 Excel Services               
     Excel Web Access               6nfi Unexpected InternalEwr.OpenWorkbook - An unexpected exception in the ECS Proxy occurred. Message: Microsoft.Office.Excel.Server.ExcelServerSettingException:
    An error has occurred. ---> System.InvalidOperationException: ExcelServerSharedWebApplication.Local: Could not get ServerContext.Current, which indicates that either SharePoint or the SSP infrastructure isn't provisioned correctly or that we're running
    outside of a web context.     at Microsoft.Office.Excel.Server.ExcelServerSharedWebApplication.get_Local()     --- End of inner exception stack trace ---     at Microsoft.Office.Excel.Server.ExcelServerSharedWebApplication.get_Local()    
    at Microsoft.Office.Excel.Server.ExcelServerSettings.get_Settings()     at Microsoft.Office.Excel.Server.ExcelServerSettings.get_EcsList()     at Microsoft.Office... 
    2.the event in event viewer is:
    Log Name:      Security
    Source:        Microsoft-Windows-Security-Auditing
    Date:          2014/10/10 9:49:43
    Event ID:      4625
    Task Category: Logon
    Level:         Information
    Keywords:      Audit Failure
    User:          N/A
    Computer:      ***.net
    Description:
    An account failed to log on.
    Subject:
     Security ID:  NULL SID
     Account Name:  -
     Account Domain:  -
     Logon ID:  0x0
    Logon Type:   3
    Account For Which Logon Failed:
     Security ID:  NULL SID
     Account Name:  ***
     Account Domain:  ***
    Failure Information:
     Failure Reason:  An Error occured during Logon.
     Status:   0xc000006d
     Sub Status:  0x0
    Process Information:
     Caller Process ID: 0x0
     Caller Process Name: -
    Network Information:
     Workstation Name: ***
     Source Network Address: ***
     Source Port:  63664
    Detailed Authentication Information:
     Logon Process:  
     Authentication Package: NTLM
     Transited Services: -
     Package Name (NTLM only): -
     Key Length:  0
    This event is generated when a logon request fails. It is generated on the computer where access was attempted.
    The Subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.
    The Logon Type field indicates the kind of logon that was requested. The most common types are 2 (interactive) and 3 (network).
    The Process Information fields indicate which account and process on the system requested the logon.
    The Network Information fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.
    The authentication information fields provide detailed information about this specific logon request.
     - Transited services indicate which intermediate services have participated in this logon request.
     - Package name indicates which sub-protocol was used among the NTLM protocols.
     - Key length indicates the length of the generated session key. This will be 0 if no session key was requested.
    Event Xml:
    <Event xmlns="">
      <System>
        <Provider Name="Microsoft-Windows-Security-Auditing" Guid="{54849625-5478-4994-A5BA-3E3B0328C30D}" />
        <EventID>4625</EventID>
        <Version>0</Version>
        <Level>0</Level>
        <Task>12544</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8010000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-10T01:49:43.563436300Z" />
        <EventRecordID>37602685</EventRecordID>
        <Correlation />
        <Execution ProcessID="532" ThreadID="26096" />
        <Channel>Security</Channel>
        <Computer>***.net</Computer>
        <Security />
      </System>
      <EventData>
        <Data Name="SubjectUserSid">S-1-0-0</Data>
        <Data Name="SubjectUserName">-</Data>
        <Data Name="SubjectDomainName">-</Data>
        <Data Name="SubjectLogonId">0x0</Data>
        <Data Name="TargetUserSid">S-1-0-0</Data>
        <Data Name="TargetUserName">***</Data>
        <Data Name="TargetDomainName">***</Data>
        <Data Name="Status">0xc000006d</Data>
        <Data Name="FailureReason">%%2304</Data>
        <Data Name="SubStatus">0x0</Data>
        <Data Name="LogonType">3</Data>
        <Data Name="LogonProcessName">
        </Data>
        <Data Name="AuthenticationPackageName">NTLM</Data>
        <Data Name="WorkstationName">***</Data>
        <Data Name="TransmittedServices">-</Data>
        <Data Name="LmPackageName">-</Data>
        <Data Name="KeyLength">0</Data>
        <Data Name="ProcessId">0x0</Data>
        <Data Name="ProcessName">-</Data>
        <Data Name="IpAddress">***</Data>
        <Data Name="IpPort">63664</Data>
      </EventData>
    </Event>

    Hi Tracy,
    Have you changed something on your SharePoint 2007 environment recently before this issue occurred?
    This issue may be related to Alternate Access Mappings settings like the following similar post, if you have configured AAM, you can check if this issue happened to some URLs, if it's the case, please add the problematic URLs as a Publish URLs for the default
    zone for your web application, and also add these URLs as trusted locations, then check results again.
    If above doesn't work, please enable ULS log on verbose level to get more useful log errors which time are corresponding to the errors occur. 
    https://social.technet.microsoft.com/Forums/en-US/c9ab4818-65c9-444d-be50-1bfed1f1509b/excel-web-access-web-part-works-on-intranet-but-not-internet?forum=sharepointgenerallegacy
    http://blog.bugrapostaci.com/2011/09/08/how-to-enable-verbose-log-mode-on-moss-2007/
    Thanks
    Daniel Yang
    TechNet Community Support

  • BlackBerry Internet Service with Microsoft Outlook Web Access account

    I need to switch my 8820 to a new work account.  They use Outlook Exchange 2003, but do not support BES.  I have access via both regular desktop Outlook and also Outlook Web Access (from a different server).   I read the procedure to use BIS in KnowledgeBase KB03133.  After entering my email address and password, I get a message that it was successfully set up.  But, I get no e-mail messages delivered.  When I check  the settings, it looks like it is not using the correct server for Web Access.  However, I can find no way to manually enter it - I don't get the error message described in Step 5 where I can pick "I will provide the settings."  I try to set up via computer but I get a message that my BIS cannot be accessed via HTML and need to set up on my BB.
    Any suggestions?  Would it work with a newer phone running a newer OS?  Do I need to check with AT&T if it supports Outlook Web Access?  Thanks in advance.

    Hi and Welcome to the Forums!
    Lot's of possible variables...here a several other KBs to try:
    KB03133How to integrate a Microsoft Outlook Web Access email address with a BlackBerry Internet Service account
    KB18567BlackBerry Internet Service cannot connect to a Microsoft Outlook Web Access account using Microsoft Exchange 2007 or Microsoft Exchange 2010
    KB15173Locate the mailbox name for a Microsoft Outlook Web Access 2007 email account
    KB04804Error message appears when attempting to integrate a Microsoft Outlook Web Access 2010 account
    KB02858Unable to integrate a Microsoft Outlook Web Access email address with a BlackBerry Internet Service account
    The trick to getting to the manual settings screen is to provide your valid email address, but an incorrect password...then, it will allow you to manually enter the settings.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • How can I delete messages from the local Sent folder without deleting from the remote server?

    I am running out of disk space on my local machine. Analysing this, I can see that a large amount of space is being taken up by local storage of Sent emails from my IMAP synchronised account. I do not see how I can delete the local copies from my PC

  • Mail subject header

    Hi Guys, Status change of a service message will trigger a mail notification, and the mail received is with subject "Reminder mail". Want to check with you guys on how to change the subject to a customize subject? For eg: Status->In Process : Ticket

  • Problem in fetching the latest updated record.

    Hello , I have  a program in which i am creating a BDC session and submit the same in program rsbdcsub, now the problem is that i need to capture the Field Qstate from the table APQI, its not updated instantaneously, so i am not able to get the lates

  • Load balancing across remote systems

    Hi everyone, When a request is routed to a remote machine (assuming that the service is not available on the local machine) load balancing is based on the load factors (plus NETLOAD, if set) of requests previously sent to the remote systems from the

  • EIGRP Routing across MPLS Cloud

    I appologize if this has been covered but I dont see any exact hits... We are working with our Service Provider to implement MPLS between our remote sites and main campus. We are currently using PtoP T1 in a hub and spoke model. We are running EIGRP