Configuring HP Stream Tablets for increased gaming performance

A lot of Windows games (most in fact) can be downloaded and installed with their installers from their respective websites or Steam, etc.  Other games can be obtained in the Windows Store (green and white icon that looks like a shopping bag). Many Windows Phone apps/games have Windows availability also, and visa versa, nowadays.
In a lot of games you may have to lower the graphics options to make the game run faster and perform better - but that doesn't mean they won't still be fun to play. It really just depends on the game and how good you can make it look without sacrificing performance. You can test settings and then adjust as needed to get the ideal configuration for each game on your tablet. Some games may not run at all if the RAM (memory) requirements aren't met, as 1 GB is pretty low anymore.
That being true, many games will run pretty well with only 1 GB RAM. Be sure to close all other background programs you can to free up CPU/memory and disk I/O performance. You can also open Task Manager (shortcut is ALT CTRL DELETE) or right click on the taskbar to access it - and go into the Details tab and right click on the running game or application you want, and choose "Set Priority" and set it to "Above Normal" this will devote more CPU cycles/resources to that game or app, thus making it perform better and run a little faster. This isn't going to fix all performance issues but it may help a little bit.
Another thing to increase performance is close anything you don't need from the taskbar tray (by default in the lower right corner of the screen). If it is possible for you to run a Steam game with Steam closed (by going to C:\Program Files\Steam\SteamApps\Common\game name\ )  and clicking the game's .EXE file directly to run it without the Steam app running - it will further save CPU and memory and provide faster performance in the game.
It may help to update your graphics driver. The tablet uses an Intel graphics core. You can obtain the latest driver here or here. (Be patient because it might seem to freeze for a few seconds, give it a minute or so and it should progress forward and continue).
You can also disable unneeded things from running on login/startup to further increase performance. This is done via Task Manager on the Startup tab. Just right-click on the various items you want to disable from loading on startup and choose "disable" and they won't open on startup anymore. I already explained how to access Task Manager above.
Advanced Users Only: If you want to tune your system even more, you can run services.msc (or navigate to Control Panel\System and Security\Administrative Tools\Services) and set certain things to manual or disabled (since those you actually need these can vary widely do not adjust these unless you know what you are doing or look up what each service does or what requires it to be running). For a good guide, check out Black Viper's guide for Windows 8.1 here and for Windows 10 here. Again, please be careful and only adjust these if you understand what you're doing.
I hope these tips help! They should aide you in getting the maximum performance in games on your tablet. Good luck!

I would recommend you to go for 2 WGA600N one for each...

Similar Messages

  • Best Tablet for Mobile Gaming Questions (?)

    Guys, right now, what's the best tablet out there for mobile gaming?  The best tablet/phone optimized for mobile gaming as well? (like Modern Combat 4, etc.) What's the tablet that has the best GPU? (I know Tegra 4 is around the corner but I only want to know what's out now) What are synthetic benchmarks? What's the opposite of synthetic benchmarks? Are these synthetic benchmarks? 
    GFXBench 2.7 T-Rex HD C24Z16 - Offscreen (1080p):
    GFXBench 2.7 T-Rex HD C24Z16 - Onscreen:
    GFXBench 2.7 T-Rex HD Fixed Timestep - Onscreen: 
    Is gfxbench.com pretty reliable? Thanks in adv! 

    I purchased the 9.8 x 6.9 inch tablet. I use the touch function for browsing
    the web and most of the time for general work instead of the mouse. I use
    the pen when working with Lightroom or Photoshop Elements  and plugins such
    as Photomatix or Perfect Layers; any time when requiring delicate input.
    www.tonybarranco.com

  • Upgrading for better gaming performance.

    Hey everyone,
         I recently received this latop for Christmas. I really enjoy all around gaming from PC to Console. The problem that I am having is mostly on WoW. I ran the system via systemrequirementslab.com (the can you run this section) and it told me that I had the minimum requirements capable of running. For a few days it worked phenomenally but most recently the game slows to a crawl to the point that it takes 15+ minutes before I get two minutes of movement. Is there anything I can do to upgrade my laptop and run videogames better?
    This question was solved.
    View Solution.

    Hi,
    Not much you can do in terms of price/performance with the following specs:
       http://h10025.www1.hp.com/ewfrf/wc/document?docname=c04430193&cc=ca&dlc=en&lc=es
    HP has re-entered the gaming field with a new series of laptops called Omen. If you are a gamer, you may want to sell this machine and put more money to buy an Omen:
       http://store.hp.com/webapp/wcs/stores/servlet/us/en/mdp/Laptops/omen-15
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Tips for increasing fetching performance?

    Hello,
    I'm doing some select queries from odp.net against my oracle database.
    first i do maybe: select id, ... from table1 where id in some_collection.
    then I might do select id, ... from table2 where id in some_collection and id2 in some_other_collection etc.
    Let's say I do 3-5 calls from odp.net with a few collections to retrieve a set of results from different tables. So my in-parameter are collections. Some of these collections are used in several of my calls.
    Now I do the calls with SqlCommand.CommandTYpe = CommandType.Text;
    Is there any difference between a text query and one to a pl/sql stored procedure? I thought that maybe it would be good to remove any context switches between the sql and pl/sql engine.
    Also, if using a stored procedure I guess I'd have to use a REF CURSOR to retrieve the data. What are the advantages and disadvantages to this compared to a regular text sql statement?
    If I'm using a ref cursor in a stored procedure I could also retrieve all calls directly via multiple ref cursors, reducing the amount of calls and re-using the in parameter collections that are used by several queries. Just would like some feedback on which approach to take.

    Hello,
    I have done no performance testing between raw SQL and the PL/SQL to SQL via a context switch -- but look at this link:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:60122715103602
    "But don't be afraid at all to invoke SQL from PLSQL - that is what PLSQL does best."
    I believe the main time you will experience context switching problem is when you are calling a function in a SQL statement (eg SELECT d.ColA, SomeFunctionHere(d.ColB) from etc d )
    or when you have a loop in a PL/SQL that is doing 1000s of inserts or updates instead of handling it in one call.
    (going back to asktom: http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:47458244605081 --> his mantra is repeated often in these forums )
    Now about packages, I am a big fan of packages (so much so I tend to actively try not put raw SQL (parameterized or not) in my code). This is a personal preference thing, but I have found that the packages allow me to reduce my calls, have easier ability to maintain my SQL and data logic all in nice self contained units, and the more I have used PL/SQL the more I enjoy using it (even in SQL Server I tend to store proc everything!).
    REF Cursor: http://www.oracle.com/technology/pub/articles/mastering_dotnet_oracle/williams_refcursors.html
    Once again I have not done any performance testing between REF Cursors and running the SQL in code (as I mentioned I am biased towards utilizing PL/SQL, whenever I can call a package/procedure and return 2-5 ref cursors in one call, then I am happy).
    Now you can return your result sets with UDTs; they are a bit more complex to work with and require:
    1) a user defined type in Oracle
    2) a package to fill that and ship it out
    3) relying on Oracle on the .Net code side (they can autogenerate your classes but you can still modify the classes if need be)
    when you install ODP if you look into your ORAHOME\product\11.1.0\client_1\odp.net\samples\2.x\UDT you will see some working examples of this.
    and a nice walk through via oracle: http://www.oracle.com/technology/obe/hol08/dotnet/udt/udt_otn.htm
    Now I have done performance testing with UDTs vs. REF Cursors, and as the result sets get larger the UDT becomes more effective for inserting collections as opposed to looping through to insert rows (this is of course excluding bulk inserts and such).
    I would say that your test case looks like a simple one to try out packages with. I would recommend trying to create one call to return all of your datasets. Just remember to create your package like your .net code, keep the procedures/functions small so you can maintain them in the future!
    "How will a package help me?" You are correct, it is just a class in Oracle that allows you to expose methods to be used. These methods can be private or public, have full access to Oracle's functionality for handling data, etc. I find it helps me maintain my database component of the application and occassionally do bug fixes really nicely without the overhead of a MSI roll (our setup has db changes a bit easier to perform than .net server changes)
    I would recommend trying to reduce your query count as much as possible (exploring the joins) and try to have it done with one command and returning the data as quickly and easily as possible. The UDT may be a fun thing to play around with, but I would seriously look at it and make sure that it fits in with your department developement guidelines and you think it will be maintainable. We are slowly putting our toes into the waters of UDTs and are primarily utilizing ref cursors returned from packages.

  • Better gaming performance upgrading from 2gig to 4gig?

    Hi all,
    Just wondering what you think about upgrading from 2gig to 4gig to increase gaming performance? I've a MBP 2.2ghz 128mb VRAM with 2gig of RAM and thinking about upgrading to 4gig. Will I see a decent increase in frame rates for games from my current system? Or is the 128mb VRAM going to be the only factor?
    Cheers:)

    I dont think it would hurt. Nothing but good things could come from having more memory. 4gb is a bit overkill though for most programs and games available at the moment.
    I do think that your videocard would bottleneck any potential gains you would see from more memory. But I think the extra memory can help alittle... not really that much better, but alittle better.

  • How to increase the performance in server 2008 R2 for RDP users

    Hi,
    My application take to much time to load. If anyone double click on mail client the exe file will appear in task manager but it will open after 5 mins. how to increase the performance.
    My sever configuration is as below,
    SC2600 Intel  motherboard with total 24 core processors and 32 GB RAM and 8 TB Hard Disk. RAID 5 is configured which has two lungs one is 167 GB for C drive and other is 4.5 TB for D drive.
    There are 28 Thin-clients connected to server through L300 N computing Thin-clients.
    Thin-clients connect to V-space server installed in server for RDP users to get connected.
    we have installed around 20 applications including printer and scanner driver. And apps are has below,
    Firefox browser, windows mail, Adobe acrobat XI, canon printer and scanner drivers, Epson printer and scanner driver, E scan anti-virus, office 2007, v space, power ISO, win-rar,Tally and e token drivers and some backup software's.
    Below  are the services and features enabled,
    AD, File services, RDP, web server, Hyper-v, .net frame work.
    Is there a way to increase the performance .
    Very slow performance.

    Hi,
    what would you suggest on  hardware configuration must be for  above mentioned applications and services with those many users.
    how many cores and ram size is required.

  • Windows 10 fresh installation on the HP Stream tablet

    I performed a fresh installation of Windows 10 on my Stream 7 tablet and it worked well. I posted the procedures I used below in case it may be able to help someone. One warning is that you have to first upgrade the original Windows 8.1 with Bing installation in-place letting Windows 10 activate before wiping the disk clean and installing Windows 10 fresh. If you do not do this, Windows 10 will not activate when it is installed fresh. If Windows 10 tells you that you do not have enough room to upgrade, you may have to restore the tablet back to the factory configuration using the recovery media. Other reports indicate you can also complete the upgrade by pointing to an external drive. If you recover, you will not need to apply any Windows 8.1 updates after the recovery, you can update to Windows 10 directly from the USB immediately after the tablet is restored to the factory configuration. First make a recovery USB of your existing Windows 8.1 with Bing installation. Download the Windows 10 32-bit ISO file and burn it to a USB drive. Updating Windows 8.1 to Windows 10 on the HP Stream Tablet
    - With Windows 8.1 running, start the setup program from the Windows 10 USB drive.
    - When it prompts "Get Important Updates?" select "Not Right Now".
    - Accept the license agreement
    - When it prompted me to "Change What To Keep" I selected "Nothing".
    - Click the Install button, the upgrade took 30 minutes on my Stream 7.
    - When the upgrade finishes, add a WiFi connection and go to the Start button => System and make sure it says "Windows is Activated". You can stop here if you have enough disk space and do not want to do the fresh install. The 5.2 GB Recovery partition from Windows 8.1 can also be deleted now since Windows 10 creates its own 450 MB recovery partition for WIMBoot. Unfortunately it seems the C: drive cannot be extended to include the 5.2 GB of space so an additional drive letter (such as "D:") will need to be created to utilize it. Deleting the 5.2 GB Windows 8.1 recovery partition (only do this if have upgraded to Windows 10)
    - Attach a OTG adapter, powered USB hub, USB drive containing the 32-bit Windows 10 ISO, mouse and keyboard.
    - Press F9 on the keyboard as the tablet powers up to enter the boot menu.
    - Select the USB drive to boot from.
    - Select "Install Now"
    - Select "skip product key"
    - Accept the license terms
    - Select: "Custom: Install Windows only (advanced)"
    - Delete the Drive 0 Partition 5: IMAGES 5.2 GB Recovery partition.
    - Do not delete the Drive 0 Partition 4 450 MB Recovery partition, Windows 10 created this for WIMBoot and it will not boot without it. If you want to do a fresh Windows 10 install, you can also wipe the drive completely clean at this point. This will provide the greatest amount of available disk space for the C: drive (21.1 GB free of 28.5 GB following the fresh install). Fresh installation of Windows 10 on the HP Stream tablet
    - Make sure Windows 10 has already been upgraded from Windows 8.1 and is activated.
    - Attach a OTG adapter, powered USB hub, USB drive containing the 32-bit Windows 10 ISO, mouse and keyboard.
    - Press F9 on the keyboard as the tablet powers up to enter the boot menu.
    - Select the USB drive to boot from.
    - Select "Install Now"
    - Select "skip product key"
    - Accept the license terms
    - Select: "Custom: Install Windows only (advanced)"
    - Delete all partitions
    - Click the Next button, the install will take around 30 minutes.
    - When prompted for a product key, select "do this later".
    - Add a WiFi connection.
    - Answer the prompts about sending data to Microsoft, I answered no to all of these.
    - For some unknown reason, I was prompted to repeat the above two or three steps again here.
    - When Windows boots for the first time, right click the Start Button => System and check that it says "Windows is Activated". The RTL8723BS WiFi driver is already installed after a fresh installation but the other five drivers needed for the Stream 7, (Driver Pack, Bluetooth, Realtek audio, Goodix touchscreen and Kionix motion sensor) have to be installed from the Windows 8.1 drivers available from hp.com. The Stream 8 may have additional drivers needed.  The drivers site on hp.com for the Stream tablet has been going up and down periodically since the tablet was introduced so you might want to download the dirvers first and copy them to the Windows 10 USB before attempting the installation.

    Hve you had any problems with the side swipe gestures to open app switcher and action center after installing the Goodix drivers?After upgrading to Windows 10, everything worked great, but after a system reset, I have not been able to get the side swipe gestures and the start button to work at the same time.After the reset is finnished and before installing any HP drivers, side swipe gestures works without problems, but the start button is disabled. Then I installed all Windows 10 drivers from HP.com, except the Googix-driver. Nothing changes.After I install the goodix driver, the start button is working, but side swipe gestures no loger works.I have tried to reset the device several times, with the same result each time.

  • HT1515 I'm getting poor performance from my apple TV, will plugging in my airport express via ethernet to apple tv increase its performance (poor wi-fi signal)

    I'm getting poor performance from my apple TV, will plugging in my airport express via ethernet to apple tv increase its performance (poor wi-fi signal)

    Yes, though it is less ideal than what I suggested earlier. You would need to place your AirPort Express in a location approximately midway between your AirPort Extreme Base Station and the TV. Then, using AirPort Utility, configure it to "extend a wireless network".
    It may help. Bear in mind the signal thus "extended" by the Express can only be as good as the signal it can receive from the Extreme. That is the reason for selecting its appoximate midway location.
    Read about it here: http://support.apple.com/kb/HT4145
    Scroll down to "Wirelessly Extended Network (802.11n)" for a picture.
    This solution requires an all-Apple wireless network. No third party stuff.
    You mentioned using Ethernet. That would be a better idea. Scroll down to "Roaming Network (Ethernet-connected Wi-Fi base stations)" for a picture. In your case, the longer the Ethernet cable - hence the closer you can move the Express to the TV - the better

  • Urgent: regarding the increasing the performance of report

    Hi,
    I had a report which is displaying the correct data but i execute on PRD Server,it gets Request Time Out.So i want to increase the performance of it.Plzz help me out in doing this.
    REPORT  ZWIP_STOCK NO STANDARD PAGE HEADING LINE-SIZE 150.
    TABLES: AFPO, AFRU, MARA, MAKT.
    DATA: BEGIN OF ITAB OCCURS 0,
          AUFNR LIKE AFPO-AUFNR,
          MATNR LIKE AFPO-MATNR,
          LGORT LIKE AFPO-LGORT,
          MEINS LIKE MARA-MEINS,
          NTGEW LIKE MARA-NTGEW,
          MTART LIKE MARA-MTART,
          STOCK TYPE P LENGTH 10 DECIMALS 3,
          END OF ITAB.
    DATA : ITAB2 LIKE ITAB OCCURS 0 WITH HEADER LINE.
    DATA : DESC LIKE MAKT-MAKTX.
    SELECT-OPTIONS : MAT_TYPE FOR MARA-MTART.
    SELECT-OPTIONS : P_MATNR FOR AFPO-MATNR.
    DATA : V_MINOPR LIKE AFRU-VORNR,
           V_MAXOPR LIKE AFRU-VORNR,
           V_QTYMIN LIKE AFRU-GMNGA,
           V_QTYMAX LIKE AFRU-GMNGA,
           V_QTY TYPE P LENGTH 10 DECIMALS 3.
            SELECT AAUFNR AMATNR ALGORT BMEINS BNTGEW BMTART FROM AFPO AS A
              INNER JOIN MARA AS B ON AMATNR = BMATNR
                INTO TABLE ITAB WHERE ELIKZ <> 'X' AND MTART IN MAT_TYPE AND A~MATNR IN P_MATNR.
        ITAB2[] = ITAB[].
        SORT ITAB2 BY MATNR MEINS MTART NTGEW.
        DELETE ADJACENT DUPLICATES FROM ITAB2 COMPARING MATNR MEINS MTART NTGEW.
       LOOP AT ITAB2.
        V_QTY = 0.
          LOOP AT ITAB WHERE MATNR = ITAB2-MATNR.
            SELECT MIN( VORNR ) INTO V_MINOPR FROM AFRU WHERE AUFNR = ITAB-AUFNR.
            SELECT MAX( VORNR ) INTO V_MAXOPR FROM AFRU WHERE AUFNR = ITAB-AUFNR.
            SELECT SUM( GMNGA ) INTO V_QTYMIN FROM AFRU WHERE AUFNR = ITAB-AUFNR AND VORNR =  V_MINOPR.
            SELECT SUM( GMNGA ) INTO V_QTYMAX FROM AFRU WHERE AUFNR = ITAB-AUFNR AND VORNR =  V_MAXOPR.
            V_QTY = V_QTY + V_QTYMIN - V_QTYMAX.
          ENDLOOP.
          ITAB2-STOCK = V_QTY.
          MODIFY ITAB2.
        ENDLOOP.
        LOOP AT ITAB2.
              WRITE:/ ITAB2-MATNR,ITAB2-STOCK.
        ENDLOOP.

    Instead of code from
    itab2[] = itab[] till last endloop try code given below
    data : begin of minopr occurs 0,
           aufnr type afru-aurnr,
           vornr type afru-vornr,
           end of minopr.
    data : begin of maxopr occurs 0,
           aufnr type afru-aurnr,
           vornr type afru-vornr,
           end of maxopr.
    data : begin of qtymin occurs 0,
           aufnr type afru-aurnr,
           vornr type afru-vornr,
           end of qtymin.
    data : begin of qtymax occurs 0,
           aufnr type afru-aurnr,
           vornr type afru-vornr,
           end of qtymax.
    select aurnr vornr into table minopr from afru for all entries in itab where aurnr = itab-aufnr
    maxopr[] = minopr[].
    sort minopr by aufnr vornr ascending.
    sort maxopr by aufnr vornr descending.
    delete adjacent duplicates from minopr comparing aufnr.
    delete adjacent duplicates from maxopr comparing aufnr.
    SELECT aufnr vornr GMNGA INTO TABLE QTYMIN FROM AFRU for all entries in minopr WHERE AUFNR = minopr-AUFNR AND VORNR = MINOPR-vornr.
    SELECT aufnr vornr GMNGA INTO TABLE QTYMAX FROM AFRU for all entries in maxopr WHERE AUFNR = maxopr-AUFNR AND VORNR = maxopr-vornr.
    sort qtymin by aufnr.
    sort qtymax by aufnr
    sort itab by matnr MEINS MTART NTGEW.
    LOOP AT ITAB.
    v_minopr = 0.
    v_maxopr = 0.
    read table qtymin with key aufnr = itab-aufnr binary search.
    if sy-subrc = 0.
    loop at qtymin from sy-tabix.
    if qtymin-aufnr = itab-aufnr.
    V_MINOPR = V_MINOPR + itab-gmnga.
    else.
    exit.
    endif.
    endloop.
    endif.
    read table qtymax with key aufnr = itab-aufnr binary search.
    if sy-subrc = 0.
    loop at qtymax from sy-tabix.
    if qtymax-aufnr = itab-aufnr.
    V_MaxOPR = V_MaxOPR + itab-gmnga.
    else.
    exit.
    endif.
    endloop.
    endif.
    V_QTY = V_QTY + V_QTYMIN - V_QTYMAX.
    At new itab-matnr.
    if sy-tabix = 1.
    continue.
    endif.
    itab2 = itab.
    itab2-stock = v_qty.
    append itab2.
    V_QTY = 0.
    endat.
    ENDLOOP.
    itab2 = itab.
    itab2-stock = v_qty.
    append itab2.
    LOOP AT ITAB2.
    WRITE:/ ITAB2-MATNR,ITAB2-STOCK.
    ENDLOOP.

  • Report burst:To increase query performance in xcelsius

    Is there anyway to increase query performance in xcelsius by using report bursting

    Fremlin,
    Report bursting is only for distributing your reports to your end users.
    You can improve performance only by following the [Best practices|https://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/a084a11c-6564-2b10-79ac-cc1eb3f017ac] in xcelsius.
    -Anil

  • Am getting this message when i try to play music " unable to configure network stream"

    am getting this message when i try to play music " unable to configure network stream"

    Hold on... advice to someone downloading from 1337x !!!
    Until I saw your comment and googled the term, I had no idea that this was a "downloaded" file. I assumed the "1337x" reference was to dimensions/resolution and Noir referred to genre. (I.e., I use similar notations the differentiate files compressed for TV playback comparisons.) In any case, the advice is the same irrespective of the source.
    er, isn't it illegal to download movies ?
    Not necessarily. Thousands of movies are probably downloaded daily as legal purchases from such vendors as iTunes. Thousands more are available for free in the public domain, open source/community videos listings, and under Creative Commons Licensing. In short, there are many legal sources of downloadable content and you should not automatically jump to the conclusion that everyone is a crook.

  • Using Exchange Web Service (EWS) Streaming Notifications for a shared mailbox in Exchange Server, works or not?

    Hi,
    I am planning to develop an application to use EWS managed API streaming notification for listening the new email event of a shared mailbox. Will it will work or not? I knew it works for a personal mailbox, where the authentication of EWS can be performed
    with the associated Active directory account. For the shared mailbox in Exchange Server, is there such an Active Directory account associated?
    Thanks,
    Richard

    >> Are you saying that if an Active Directory account has the access to a shared mailbox, and then this account can be used for creating the Streaming subscription for that mailbox
    Yes that's correct (try it yourself with the EWSEditor)
    >> In other words, the way how Exchange Server works is that the new messages like new emails are automatically sending to all of the AD accounts which have the access to a mailbox.
    Not sure what you mean by this ? A Shared a Mailbox is just like any other Exchange Mailbox if you have rights to the Folder then you can create a subscription against it. There is no automation involved.
    Cheers
    Glen

  • How to increase the performance of  Weblogic server 7.0?

    How to increase the performance of Weblogic server 7.0 ?
    also, how do i avoid typing the server login and password evertime I start the
    webserver?

    How to increase the performance of Weblogic server 7.0 ?It depends on what is not running fast enough for you.
    also, how do i avoid typing the server login and password evertime I
    start the webserver?In the startWebLogic shell script (.cmd or .sh) add:
    set WLS_USER=weblogic
    set WLS_PW=password
    (Replace "password" with whatever your password is.)
    Peace,
    Cameron Purdy
    Tangosol, Inc.
    http://www.tangosol.com/coherence.jsp
    Tangosol Coherence: Clustered Replicated Cache for Weblogic
    "winston" <[email protected]> wrote in message
    news:3fe42d33$[email protected]..
    >

  • Streaming Notifications for a shared mailbox in Exchange Server, works or not?

    Hi,
    I am planning to develop an application to use EWS managed API streaming notification for listening the new emails of a shared mailbox. Could you please tell it will works or not? I knew it works for a personal mailbox, where the authentication of EWS can
    be performed with the associated Active directory account. For the shared mailbox in Exchange Server, how it works?
    Thanks,
    Richard

    If you are using EWS to access a mailbox other than the one connected to a specific account, you will want to check out EWS impersonation.  I've found it to be more reliable than any other method for accessing a second mailbox.

  • Digitizer tablet for Whiteboarding in Adobe Connect

    Hello,
    We have a number of users at my company who are interested in a stylus/tablet for use with the whiteboard features in connect, apparently they have tried the bamboo on their own and they were less than thrilled with the performance.
    Was wondering if there were any other suggestions out there that people have direct experience with and are known to work?
    Thanks

    I have a Bamboo MTE-450 and it works good...
    In fact, Flash Player sees it just like an ordinary HID (so, like a trackpad or a mouse).
    Which are the the performance issues you experience?

Maybe you are looking for

  • How do I add an account to my already set up iPad?

    I already set up my new iPad Mini without using an account. Then, I found my account but I don't kow how to put it in the iPad. Please help!

  • My playlist is not listed for device synch

    I have a playlist on the left side of my iTunes schreen wil several audio items in it. However, when I click on my iPhone Sync Music section, the playlist is not listed. My other playlists are there. Any ideas why it is missing, and will not sycn wit

  • Oracle-Multilingual Support

    Hi , I was wondering if it is possible to have a oracle database that stores data in different languages. I have gone through few blogs which says Oracle supports Unicode characters & UTF8 supports all languages including multi-byte. I would like to

  • ITunes starts automatically when turning my computer on

    ITunes on OS X 10.10 automatically starts when I turn my computer on. My iPhone is not connected. I tried going through System preferences > User & Groups >Login items but ITunes is not on the list of applications that I want to open automatically. C

  • Use more than one apple I'd?

    If I have more than one apple I'd can I use them in home sharing at the same time