TCP Window Scaling supported on 3750G and 2960G switches?

We have the 3750G with the IOS version 12.2(35)SE5. Does this IOS version and switch support the TCP Window Scaling detailed in this doc?  The doc says Release 12.2(8)T.  And I don't see the 3750G or the 2960G platforms listed in the doc. I'm guessing they're not but rather than guess, I thought I'd ask.  Thanks
http://www.cisco.com/en/US/docs/ios/12_2t/12_2t8/feature/guide/tcpwslfn.pdf

Disclaimer
The  Author of this posting offers the information contained within this  posting without consideration and with the reader's understanding that  there's no implied or expressed suitability or fitness for any purpose.  Information provided is for informational purposes only and should not  be construed as rendering professional advice of any kind. Usage of this  posting's information is solely at reader's own risk.
Liability Disclaimer
In  no event shall Author be liable for any damages whatsoever (including,  without limitation, damages for loss of use, data or profit) arising out  of the use or inability to use the posting's information even if Author  has been advised of the possibility of such damage.
Posting
The doc says you may see better performance.
Indeed you may, but the doc also notes "Do not use this command unless you clearly understand why you want to change the default value.".
The two common situations where there's possible benefit to increasing the device's TCP receive window are:  to allow faster FTP/RCP downloads to the device or to support quicker BGP bulk transfers.  The former is limited by write speed to flash and the latter might be unusual to need > 64 KB for BDP.
Also, BTW, if you do find a need to work with scaled TCP receive windows on a Cisco device, you probably also should enable (optional) SACK.

Similar Messages

  • Any GPUs for Windows that support both CUDA and Open CL?

    Hi everyone,
    I was looking at this list:  http://www.adobe.com/products/premiere/tech-specs.html
    while trying to decide which graphics card to buy to take advantage of Mercury playback.  I couldn't help but notice that there is not a single card listed that is compatible for both CUDA and Open CL in windows.  Do I really have to pick one or the other?  In that case, which would be more beneficial to a Premiere Pro workflow that utilizes a lot of dynamic links to After Effects?  As a side note, I use Photoshop a ton, and would love to keep my GPU acceleration in that arena as well.
    Thanks!
    -Charlie

    I believe they write OpenCL separately.  They're two different APIs.
    They are not that different, while 'porting' doesn't imply completely automatic process. Rewriting existing libraries from one language to another is something almost any developer is familiar with.
    I'm not sure I understand the point you're trying to make here.  Right now, you cannot use OpenCL processing with an nVidia card on Windows.
    The point is simple: both CUDA and OpenCL are supported by NVIDIA cards. The fact that Adobe engineers haven't ported libraries for GPU acceleration in MPE on Windows from CUDA to OpenCL so far doesn't mean they never will. Hence the statement that a user-side choice between AMD and NVIDIA equals to choice between OpenCL and CUDA is incorrect.

  • Windows 10 Supported Models list and what to do if you're model isn't listed.

    We've seen a number of topics and questions from users whose Acer model is not listed in the Windows 10 update support list, which I'll link below.
    The list that Acer provided is for products that we are committed to helping support running the Windows 10 operating system. Microsoft has also stated that they have worked very hard to make sure that the upgrade for Windows 7 and Windows 8.1 to Windows 10 is available for as many users as possible and that the Windows 10 operating system will work with as many different hardware components as possible.
    If your unit is not on this list, you're still eligible for Microsoft's upgrade to Windows 10; however, Acer cannot guarantee full compatibility with all aspects of the PC. Again, Acer is not preventing users from taking advantage of the upgrade offer with Windows 10; however, if your unit is not listed, it's possible that you may run into trouble with specific components of your PC not working well, or at all, with Windows 10. The Acer Community is a great place for users in the second scenario to be able to work together to find sufficient drivers or applications that will support their needs.
    http://us.acer.com/ac/en/US/content/windows10-eligible-models

    Yep, printers are always an issue. Over the years I'd guess that half my new printers have been bought after learning the manufacturer wasn't going to release an updated driver for the new OS - be it Mac or Windows.

  • Bass note in Score window has stem facing upward, and cannot switch downard.

    In the Logic Score window, I created a quarter F2 bass note, but the stem is facing upward and I cannot seem to force it to point downward.
    I double clicked the note and tried to change its direction, but it did not change. I also chose to move the stem downward from the same Attributes menu, but it just made the stem shorter. I can hide the stem, but that’s about it.
    Is this a known bug? Is there an update on the way?

    Do all of the F2 notes have their stem upwards, or is it just that one?
    You can change the stems in the staff style window (in the score editor).
    Nobody knows if there's an update on the way...

  • ACE default handling of the TCP Window Scale option

    Can someone tell me a reasonable explanation why the default action of the ACE is to clear the window-scale option in SYN-segments? We were long baffled why some customers (specifically the ones with larger latencies) were suffering from poor TCP transfer speeds and resets. Packet captures confirmed the fact that the ACE was clearing window-scale options, causing the advertised receive windows to be remarkably small as the scaling factors were removed.
    Isn't intermediate tampering with the window-scale option a widely known source for TCP performance problems? Window scaling is after all a widely used TCP extension. That's why I'm curious to know why such default behaviour from the ACE.
    Our problem was of course finally resolved by explicitly allowing the window-scale option using a parameter map.

    HI Timo,
    As you know if you allows the ACE to use a window scale factor that essentially increases the size of the TCP send and receive buffers. The sender specifies a window scale factor in a SYN segment that determines the send and receive window size for the duration of the connection.
    You have defined tcp-options scale allow in the parameter map but have not specified to which scale factor this should scale to.
    The TCP window scaling feature adds support for the Window Scaling option in RFC 1323. It is recommend that increasing the window size to improve TCP performance in network paths with large bandwidth, long-delay characteristics. This type of network is called a long fat network (LFN).
    But you have not configure a TCP window-scale factor which is essential for network paths with high-bandwidth, long-delay characteristics, using the "set tcp window-scale " command.
    The window scaling extension expands the definition of the TCP window to 32 bits and then uses a scale factor to carry this 32-bit value in the 16-bit window field of the TCP header.
    You can increase the window size to a maximum scale factor of 14.
    Typical applications use a scale factor of 3 when deployed in LFNs but in you case if this is a LFN you are using default which is 0.
    So here in your case you can select how much scale factor is needed to be defined from the range 0-14 , otherwise even if you have defined in the tcp-options windlow-scale allow, but as you have not define to what factor it should scale to , so it will always use the default scale factor which is 0, means no scaling at all.
    To set the TCP window-scale factor to 3, add the second command as well in your parameter map:
    host1/Admin(config-parammap-conn)# tcp-options window-scale allow        ---> Defined already
    host1/Admin(config-parammap-conn)# set tcp window-scale 3                      ----> Needed to be added else "default scale factor 0" will be taken
    You can check in the following URL at cisco docs wiki for how ACE handles Connection at Layer 4 (L4) and Layer 7 (L7):
    http://docwiki.cisco.com/wiki/Cisco_Application_Control_Engine_(ACE)_Module_Troubleshooting_Guide,_Release_A2(x)_--_Troubleshooting_Connectivity
    Here are the details of how a tcp-options scale windows works:
    The window scale extension expands the definition of the TCP
    window to 32 bits and then uses a scale factor to carry this 32- bit
    value in the 16-bit Window field of the TCP header (SEG.WND in RFC-793).
    The scale factor is carried in a new TCP option, Window Scale.
    This option is sent only in a SYN segment (a segment with the SYN bit on),
    hence the window scale is fixed in each direction when a connection is opened.
    (Another design choice would be to specify the window scale in every TCP segment.
    It would be incorrect to send a window scale option only when the scale factor changed,
    since a TCP option in an acknowledgement segment will not be delivered reliably
    (unless the ACK happens to be piggy-backed on data in the other direction).
    Fixing the scale when the connection is opened has the advantage of lower
    overhead but the disadvantage that the scale factor cannot be changed
    during the connection.) The maximum receive window, and therefore the
    scale factor, is determined by the maximum receive buffer space.
    In a typical modern implementation, this maximum buffer space is set
    by default but can be overridden by a user program before a
    TCP connection is opened. This determines the scale factor,
    and therefore no new user interface is needed for window scaling.
    Window Scale Option The three-byte Window Scale option
    may be sent in a SYN segment by a TCP.
    It has two purposes:
    (1) indicate that the TCP is prepared to do both send and receive window scaling, and
    (2) communicate a scale factor to be applied to its receive window.
    Thus, a TCP that is prepared to scale windows should send the option,
    even if its own scale factor is 1. The scale factor is limited to
    a power of two and encoded logarithmically,
    so it may be implemented by binary shift operations.
    TCP Window Scale Option (WSopt):
    Kind: 3 Length: 3 bytes
    +---------+---------+---------+
    | Kind=3 |Length=3 |shift.cnt|
    +---------+---------+---------+
    This option is an offer, not a promise; both sides must send
    Window Scale options in their SYN segments to enable window
    scaling in either direction. If window scaling is enabled,
    then the TCP that sent this option will right-shift its true
    receive-window values by 'shift.cnt' bits for transmission in
    SEG.WND. The value 'shift.cnt' may be zero (offering to scale,
    while applying a scale factor of 1 to the receive window).
    This option may be sent in an initial segment (i.e., a
    segment with the SYN bit on and the ACK bit off).
    It may also be sent in a segment, but only if a Window
    Scale op- tion was received in the initial segment.
    A Window Scale option in a segment without a SYN bit should be ignored.
    The Window field in a SYN (i.e., a or ) segment itself is never scaled.
    Using the Window Scale Option
    A model implementation of window scaling is as follows
    All windows are treated as 32-bit quantities for storage in
    the connection control block and for local calculations.
    This includes the send-window (SND.WND) and the receive- window
    (RCV.WND) values, as well as the congestion window.
    * The connection state is augmented by two window shift counts,
    Snd.Wind.Scale and Rcv.Wind.Scale, to be applied to the
    incoming and outgoing window fields, respectively.
    * If a TCP receives a segment containing a Window Scale
    option, it sends its own Window Scale option in the segment.
    * The Window Scale option is sent with shift.cnt = R, where R
    is the value that the TCP would like to use for its receive window.
    * Upon receiving a SYN segment with a Window Scale option containing
    shift.cnt = S, a TCP sets Snd.Wind.Scale to S and sets Rcv.Wind.Scale
    to R; otherwise, it sets both Snd.Wind.Scale and Rcv.Wind.Scale to zero.
    * The window field (SEG.WND) in the header of every incoming segment,
    with the exception of SYN segments, is left-shifted by Snd.Wind.Scale
    bits before updating SND.WND: SND.WND = SEG.WND << Snd.Wind.Scale
    (assuming the other conditions of RFC793 are met,
    and using the "C" notation "<<" for left-shift).
    * The window field (SEG.WND) of every outgoing segment, with the
    exception of SYN segments, is right-shifted by
    Rcv.Wind.Scale bits: SEG.WND = RCV.WND >> Rcv.Wind.Scale.
    TCP determines if a data segment is "old" or "new" by testing
    whether its sequence number is within 2**31 bytes of the left
    edge of the window, and if it is not, discarding the data as "old".
    To insure that new data is never mistakenly considered old and vice- versa,
    the left edge of the sender's window has to be at most 2**31 away
    from the right edge of the receiver's window. Similarly with the
    sender's right edge and receiver's left edge. Since the right and
    left edges of either the sender's or receiver's window differ by
    the window size, and since the sender and receiver windows can be
    out of phase by at most the window size, the above constraints imply
    that
    2 * the max window size must be less than 2**31,
    or max window < 2**30 Since the max window is 2**S
    (where S is the scaling shift count) times at most 2**16 - 1
    (the maximum unscaled window),
    the maximum window is guaranteed to be < 2*30 if S <= 14.
    Thus, the shift count must be limited to 14 (which allows windows of 2**30 = 1 Gbyte).
    If a Window Scale option is received with a shift.cnt value exceeding 14,
    the TCP should log the error but use 14 instead of the specified value.
    The scale factor applies only to the Window field as transmitted
    in the TCP header; each TCP using extended windows will maintain
    the window values locally as 32-bit numbers. For example,
    the "congestion window" computed by Slow Start and Congestion Avoidance
    is not affected by the scale factor, so window scaling will not introduce
    quantization into the congestion window.
    Hope it will resolve your issue, else get back to us for further discussion.
    Best regards,
    Sachin Garg
    Message was edited by: sachinga.hcl

  • Maximum Nodes supported for NLB and Cluster in Windows Server 2008 Standard Edition ?

    Hi.
    I am looking for information How many nodes supported for NLB and Cluster in Windows Server 2008 Standard Edition ?
    If you can provide for all the versions that would be great.
    -Thanks
    - Ajay Chanana

    Hi,
    You can configure a Windows server 2008 NLB cluster with up to 32 nodes. However,
    scaling beyond 8 nodes will cause a slight performance hit because the network traffic is broadcasted to every node and only one NLB node accepts the connection.
    For more detailed information, please refer to the link below:
    FAQ Week for NLB: Tuesday
    Best regards,
    Susie

  • I am trying to resize disk space on parallels 6 for windows XP under configure Hardrive and I get the error resizing failed unable to resize last volume the file system of this volume might be damaged or not supported?  I am on a Mac using Parallels 6

    I have been trying to increase my disk space for windows xp on my Imac and I am running parallels 6.  before opening windows I go into configure in parallels and open the hard drive and try to move the allotted disk space from 32 gig to 64 or any other increased gig and then apply and I get the error message: resizing failed unable to resize last volume.  The file system of this volume might be damaged or not supported.  How do I increase the size??  I just also did a disk repair utility with Apple on the Apple side of my IMAC.  Please Help!!   I had uninstalled SQL server on the windows side and needed to uncompress files to install this and then I ran short on disk space.

    This sounds to me that your Parallels XP file system is corrupted and not the OSX file system.
    Have you checked the XP file system while running the Parallels XP yet ?
    However, it would be better to ask such question in the Parallels Forum http://forum.parallels.com/
    Stefan

  • TS3716 I have an iPod nano (3rd generation). I've recently dowloaded iCloud. So now when I open iTunes the window is entirely different. And I don't have the previous menu options. I have downloaded audiobooks for years. Is it not supported by iOS5?

    I have an iPod nano (3rd generation). I've recently dowloaded iCloud. So now when I open iTunes the window is entirely different. And I don't have the previous menu options. I have downloaded audiobooks for years. Is it not supported by iOS5?
    Can I revert back to a previous version? Or must I upgrade to a newer device? Thank you for you expertise!!

    I have an iPod nano (3rd generation). I've recently dowloaded iCloud. So now when I open iTunes the window is entirely different. And I don't have the previous menu options. I have downloaded audiobooks for years. Is it not supported by iOS5?
    Can I revert back to a previous version? Or must I upgrade to a newer device? Thank you for you expertise!!

  • HP LaserJet and Color LaserJet - Windows 7 support

    To help customers successfully use their products with Windows 7, HP has identified recommended drivers per product. Please visit the following support documents for more information:
    HP LaserJet and Color LaserJet - Windows 7 support
    Deskjet, Officejet, or Photosmart
    If you are having an issue with a windows 7 software install or driver, please start a new thread for greater visability.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

    Not to be confused with the title of this thread, because this tool will not work with installing most LaserJets, but try the HP Printer Install Wizard and let me know any error messages you get.  
    I will need to know quite a bit of information before I can be of much assistance, otherwise:
    1.  What error messages are you getting (ex. fatal error 1603)?
    2.  How are you trying to connect the printer (USB, wireless, etc)?
    3. What happened when you used the HP Print and Scan Dr?
    Lastly, If you do not answer these questions and others I know I will have, then I wish you the best of luck with your printer installation. Do not be mislead, just because I do not work for HP doesn't mean I'm not an expert.
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • Yoga S1 Windows 8.1 Activation Disabled and poor (or no support from Lenovo at all).

    Dear Lenovo Friends,
    I've purchased Thinkpad Yoga S1 with Windows 8.1 onboard.
    I've had an OS problem that leaded me to order Recovery DVDs via Lenovo Thinkpad Support in Poland (thanks, got disc set in 7 days).
    After reinstallation the WIndows 8.1 OS keeps saying my licence code embedded into BIOS is invalid and I can no longer activate the system. See the event log for sample try and fail on activation my system, please.
    Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    - <System>
      <Provider Name="Microsoft-Windows-Security-SPP" Guid="{E23B33B0-C8C9-472C-A5F9-F2BDFEA0F156}" EventSourceName="Software Protection Platform Service" />
      <EventID Qualifiers="32768">1017</EventID>
      <Version>0</Version>
      <Level>2</Level>
      <Task>0</Task>
      <Opcode>0</Opcode>
      <Keywords>0x80000000000000</Keywords>
      <TimeCreated SystemTime="2015-01-09T20:02:04.000000000Z" />
      <EventRecordID>1866</EventRecordID>
      <Correlation />
      <Execution ProcessID="0" ThreadID="0" />
      <Channel>Application</Channel>
      <Computer>n316-pc04</Computer>
      <Security />
      </System>
    - <EventData>
      <Data>0xC004F069</Data>
      <Data>9D6TC</Data>
      <Data>?</Data>
      <Data>?</Data>
      </EventData>
      </Event>
    I've contacted the Lenovo Support in Poland and they tend to tell that this is because Microsoft has invalidated my codes for unknown reason. Contacting Microsoft they told me that it its vendor's (Lenovo) problem and they are not responsible - shall I obtain new licence key from Lenovo. The Polish Thinkpad support is working on the problem since January the 9th, with no success.
    The Windows grace period is already over and I cannot use my ultrabook now without activating the licence.
    Is this the famous Thinkpad support quality? I already own 4 Thinkpads and sorry gyus but I'm considering swithing to some other vendor.
    When I called them, the solution provided by the Thinkpad support was... "would you please reainstall the OS once more to get another grace period?" I was thinking it was a kind of joke, but it wasn't... Asking for the responsibility of the Lenovo for the Windows OS they provided I was told that Lenovo is not responsible and I was given the advice to buy the hardware with no OS next time, have box licence from Microsoft separatelly.
    I'm really disappointed. This is my last Thinkpad I believe. It seems even having the warranty it is not enoug to get support from Lenovo - I'm on my own...
    Regards,
    P.
    Solved!
    Go to Solution.

    Solved!
    Finally I've got another DVD recovery set from Lenovo. Now it works. Seems that the first DVD set was invalid .
    Regards,
    P.

  • TCP Timeouts in Native Windows 7 64-bit (wired and wireless)

    I am having some major headaches with this new laptop in regards to network stability.  I have a W510 4318CTO with the Ultimate-N 6300 AGN adapter.  Here is what I'm seeing:
    Prior to installing Virtual PC/XP Mode, whenever I am browsing the web or accessing samba shares, I occasionally get spurts of timeouts.  Sometimes the timeouts are inescapable, but oddly enough the issue surfaces less after a hibernation than after a reboot or shutdown/start.  Google Docs is one thing that is especially unstable.  Either the icons don't load or the style sheet doesn't load or I can't click on anything or I can't save a document or open a document.  This happens across all browsers when run in regular old Windows 7.  I tried adjusting affinity and resetting tcp and reinstalling the network drivers and scanning for malware and yada yada yada.
    I have made queries on Microsoft Connect and TechSupportForum and nothing I've tried is helping.  This problem doesn't happen on my XP desktop at all, and very strangely, this doesn't happen in XP Mode on the same laptop at the same time as the issue surfaces in native win7.  If I ping the gateway, I get timeouts at the same time as the issue manifests and I get longer response times when making network requests.  I have been hammering this issue for the entire month and can't get past it.  I've tried uninstalling Lenovo's Access Connection tool and that didn't help either.   I tried this over the 82577LM gigabit wired adapter as well and have the same issues but they occur less than in wireless mode (which I would expect).
    I am quite an expert on Windows, but this issue has brought me to my wits end.  I am an inch away from blowing the preinstall away and starting from scratch, but I just don't want to invest so much time in reinstalling everything.  I've had enough trouble with working around power management issues on this new laptop and I just want this fixed.
    If you can solve this, I would be forever grateful.  I feel like I'm in the empty hell of a network admin's nightmare.
    - Steve

    Hello,
    If go into the Device Manager (filename: DEVMGMT.MSC), select View→Show Hidden Devices and examine the Non-Plug and Play Drivers tree, are there any old device drivers left over from previously installed security or connectivity software?  If so, perhaps one of those is the culprit and disabling or uninstalling it will solve the problem.
    Another possibility is that the automatic network tuning enhancements (a feature first introduced in Windows Vista) in Windows 7's network stack are changing the TCP window size until it reaches a value which is incompatible with your router.  That is fairly simple to test, though:  Open an elevated Command Prompt (filename: CMD.EXE) and issue a "netsh int tcp set global autotuninglevel=disabled" command and see if that makes any difference.  If that makes no difference, repeat the Netsh command with "autotuning=enabled" to restore the previous values and we can continue troubleshooting.
    Regards,
    Aryeh Goretsky
    I am a volunteer and neither a Lenovo nor a Microsoft employee. • Dexter is a good dog • Dexter je dobrý pes
    S230u (3347-4HU) • X220 (4286-CTO) • W510 (4318-CTO) • W530 (2441-4R3) • X100e (3508-CTO) • X120e (0596-CTO) • T61p (6459-CTO) • T43p (2678-H7U) • T42 (2378-R4U) • T23 (2648-LU7)
      Deutsche Community   Comunidad en Español Русскоязычное Сообщество

  • Keep getting error message saying ipod detected but could not be identified properly - I have tried all the steps on the support page twice and it still will not work!  I am running windows 8 (which it has worked with ok before) - struggling :(

    keep getting error message saying ipod detected but could not be identified properly - I have tried all the steps on the support page twice and it still will not work!  I am running windows 8 (which it has worked with ok before) - struggling
    I recently bought some new albums and can't play them on my ipod

    I just encountered the same problem on my 2 month old MBPro.  I found a work around by changing USB ports.  As for the actual cause or the reason why that worked, I dont know.  The USB port I was using works fine with my phone or other USB devices.

  • Will Windows 7 support the Oracle 10G client and database

    Hi experts,
    I try to find oracle 10g client/database in 32 bit window 7.
    I got message that the system does not support oracle 10gR2.
    Any suggestion?
    Thanks
    Jim

    Thanks for your information.
    I got below information as
    ====
    Checking operating system requirements ...
    Expected result: One of 5.0,5.1,5.2,6.0
    Actual Result: 6.1
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Oracle Database 10g is not certified on the current operating system.
    Recommendation: Make sure you are installing the software on the correct platform.
    =======================================================================
    Checking service pack requirements ...
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-18001: The operating system 'Windows Vista Version 6.1' is not supported.
    Recommendation: Install the recommended Service Pack.
    =======================================================================
    Checking physical memory requirements ...
    Expected result: 256MB
    Actual Result: 2047MB
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The install has detected that the primary IP address of the system is DHCP-assigned.
    Recommendation: Oracle supports installations on systems with DHCP-assigned IP addresses; However, before you can do this, you must configure the Microsoft LoopBack Adapter to be the primary network adapter on the system. See the Installation Guide for more details on installing the software on systems configured with DHCP.
    =======================================================================
    Checking the length of PATH environment variable...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Validating ORACLE_BASE location (if set) ...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking Oracle Home path for spaces...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking Oracle Home path for location ...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking for proper system clean-up....
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking for Oracle Home incompatibilities ....
    Actual Result: NEW_HOME
    Check complete. The overall result of this check is: Passed
    =======================================================================
    However, I could not find any 11.2 version is for window 7. ONLY vistal and 2008 in ONT.
    Where can we find oracle version for window 7?
    Thanks
    Jim

  • Flash Player technology that supports Adobe Reader and Acrobat (Windows 7 Pro)

    Is there any software that I can install that will support Adobe Reader and Acrobat for Windows 7 Pro, My new PC has Adobe Reader XI installed.

    Hi Maxim ,
    You could please refer the following link to download flash player on your system .Though this link is for Adobe Acrobat and Reader DC .Please have a look and try installing the same .
    https://helpx.adobe.com/acrobat/using/flash-player-needed-acrobat-reader.html
    Flash Player is required to view flash content in PDF' ,PDF' portfolio .
    Please try the same and let us know if you face any challenges .
    Regards
    Sukrit Dhingra

  • W530 and future Windows 10 support

    Hello everyone!
    I have a question about support of W530 in Windows 10. 
    Lenovo is planning to support this model and release drivers for the W530?

    Hello.
    I should definitely think they'll get full support, as long as the parts makers such as Intel - nVidia etc. release drivers for them. I'm running my W520 on Win10 now, build 9926, and everything works perfectly on Win8/8.1 drivers already.
    ThinkPad W540 (20BG) - i7-4800MQ/24GB // ThinkPad T440s (20AQ) - i7-4600U/12GB
    ThinkPad T440p (20AW) - i7-4800MQ/16GB // ThinkPad Helix (3698-6EU) - i5-3337U/4GB
    ThinkPad W520 (4282-W4Q) - i7-2720QM/32GB // ThinkPad T400 (2767-W1C) - P9500/8GB
    ThinkPad T61 (7665-CTO) - T7700/4GB // ThinkPad T60p (8741-C2G) - T7400/4GB

Maybe you are looking for