Cannot view thumbnails by using the detailed view

I'm unable to view thumbnails in windows Explorer while I'm using detailed view.  I can't see them when they are Extra Large.  I don't see their small, not in the list, not in an environment... just to Extra Large.  I hate them Extra Large.  I want to display in the detail view.

That's what I've done so far:

Under Folder Options / I "Unchecked" view on the "always show icons never thumbnails".  It does not work.

I go through TONS of problems with thumbnails in the forums, but couldn't find a solution to my problem.

I use Windows 7 Professional 64 bit.  I never had a problem with thumbnails under Windows XP.  Now I'm fighting and I want to show my nail of the thumb again.

I don't know what I can do.  I must be missing something in the settings; But what?

Can anyone help?

Hi sunrize1230,
 
 
Have you changed the settings of the Visual effect as well?

First of all I suggest you open the Visual effects settings.

This is how you do it:
 
1, click Start
 
2. open the control panel (all items vew) and click the tools and Information on performance.
 
(A) click the link advanced tools in the blue left pane.
(B) click on adjust them the appearance and performance of Windows liaison, then close this window later.
 
4. you will then see the Visual effects settings to select.
 
5. check 'Show thumbnails instead of icons'
 
6. click on apply and then ok

If this does not work, create a new user account and check.
Reference:
 
 
If it works fine in the new user account, set the damaged user account.
 
Reference:
 

Aziz Nadeem - Microsoft Support

[If this post was helpful, please click the button "Vote as helpful" (green triangle). If it can help solve your problem, click on the button 'Propose as answer' or 'mark as answer '. [By proposing / marking a post as answer or useful you help others find the answer more quickly.]

Tags: Windows

Similar Questions

  • SDO_NN cannot be assessed without using the index when put inside subquery

    Hi all

    I met a problem when you use the function sdo_nn to find the nearest neighbor. Here is my scenario:

    _ I have 2 customer and store tables.

    Customer table _ a client_ID and a 2D sdo_geom point

    _ Store table has store_ID and a 2D polygon sdo_geom.

    In the beginning, I have this query to find the nearest store to each customer as below:

    Select s.STORE_ID, c.CLIENT_ID

    store customer, s c

    where sdo_nn (s.MYPOLYGON, c.MYPOINT, 'sdo_num_res = 1', 1) = "TRUE";

    _It works as expected when it returns a table showing the nearest store each customer.

    _Now I want to count the number of customers who have the same nearest store:

    Select / * + INDEX (store store_spatial_idx, client_spatial_idx client) * / count (nearest_store. CLIENT_ID)
    from (select s.STORE_ID, c.CLIENT_ID
    store customer, s c
    where sdo_nn (s.MYPOLYGON, c.MYPOINT, 'sdo_num_res = 1', 1) = "TRUE") nearest_store
    Group of nearest_store. STORE_ID;

    This query generates the following error:

    Error report-
    SQL error: ORA-13249: SDO_NN cannot be assessed without using the index
    ORA-06512: at the 'MDSYS. MD", line 1723
    ORA-06512: at the 'MDSYS. MDERR", line 17
    ORA-06512: at the 'MDSYS. PRVT_IDX', line 9
    13249 00000 - '%s '.

    I'm pretty new to spatial databases and hope get help to go further. Thank you in advance!

    Hello Pinball,

    Oracle space tends to be a quite complex with many variables and moving parts.  We chatted about the group to a sort of FAQ or guidelines to help people like you submit questions that actually answers.  First of all, you really have to tell us the version of Oracle you are using.  Particularly the problems involving the optimizer, version down to the exact defined patch number is a good idea.  Secondly, you took the time to submit the question so I guess you want a response.  If you really want to see the answer and then providing an example is one of the most important things that you can do.  I'm going to do here for you, but in general people on this forum come and go and are often pushed into lurkitude, so if you want the coax to provide you with an example of work is the key.

    DROP TABLE store1 PURGE;
    CREATE TABLE store1(
        store_id INTEGER NOT NULL
       ,shape    MDSYS.SDO_GEOMETRY
       ,PRIMARY KEY(store_id)
    );
    
    DROP TABLE client2 PURGE;
    CREATE TABLE client2(
        client_id INTEGER NOT NULL
       ,shape    MDSYS.SDO_GEOMETRY
       ,PRIMARY KEY(client_id)
    );
    
    CREATE OR REPLACE PROCEDURE seeder(
        p_client_count IN NUMBER
       ,p_store_count IN NUMBER
    )
    AS
      sdo_foo MDSYS.SDO_GEOMETRY;
      int_counter NUMBER;
      FUNCTION random_point
      RETURN MDSYS.SDO_GEOMETRY
      AS
          num_x1 NUMBER;
          num_y1 NUMBER;
    
      BEGIN
          num_x1 := dbms_random.value(-179,179);
          num_y1 := dbms_random.value(-89,89);
    
          RETURN MDSYS.SDO_GEOMETRY(
              2001
             ,8265
             ,MDSYS.SDO_POINT_TYPE(
                  num_x1
                 ,num_y1
                 ,NULL
              )
             ,NULL
             ,NULL
          );
    
      END random_point;
    
    BEGIN
      int_counter := 1;
      FOR i IN 1 .. p_client_count
      LOOP
          -- Create a client point
          sdo_foo := random_point();
          INSERT INTO client2
          VALUES (
              int_counter
             ,sdo_foo
          );
          int_counter := int_counter + 1;
    
      END LOOP;
    
      int_counter := 1;
      FOR i IN 1 .. p_store_count
      LOOP
          -- Create a store polygon of some kind
          sdo_foo := MDSYS.SDO_GEOM.SDO_ARC_DENSIFY(
              MDSYS.SDO_GEOM.SDO_BUFFER(
                  random_point()
                 ,5000
                 ,0.05
              )
             ,0.05
             ,'arc_tolerance=0.05'
          );
          INSERT INTO store1
          VALUES (
              int_counter
             ,sdo_foo
          );
          int_counter := int_counter + 1;
    
      END LOOP;
    
      COMMIT;
    
    END seeder;
    /
    
    BEGIN
      seeder(10000,200);
    END;
    /
    
    BEGIN
      INSERT INTO user_sdo_geom_metadata(
          table_name
         ,column_name
         ,diminfo
         ,srid
      ) VALUES (
          'STORE1'
         ,'SHAPE'
         ,MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X',-180,180,.05),MDSYS.SDO_DIM_ELEMENT('Y',-90,90,.05))
         ,8265
      );
    
      COMMIT;
    
    EXCEPTION
      WHEN OTHERS
      THEN
          NULL;
    
    END;
    /
    
    BEGIN
      INSERT INTO user_sdo_geom_metadata(
          table_name
         ,column_name
         ,diminfo
         ,srid
      ) VALUES (
          'CLIENT2'
         ,'SHAPE'
         ,MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X',-180,180,.05),MDSYS.SDO_DIM_ELEMENT('Y',-90,90,.05))
         ,8265
      );
    
      COMMIT;
    
    EXCEPTION
      WHEN OTHERS
      THEN
         NULL;
    
    END;
    /
    
    CREATE INDEX store1_spx ON store1
    (shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    NOPARALLEL;
    
    CREATE INDEX client2_spx ON client2
    (shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    NOPARALLEL;
    
    /* Works as expected */
    SELECT
    s.store_id
    ,c.client_id
    ,MDSYS.SDO_NN_DISTANCE(1)
    FROM
    store1 s
    ,client2 c
    WHERE
    MDSYS.SDO_NN(
        s.shape
       ,c.shape
       ,'sdo_num_res=1'
       ,1
    ) = 'TRUE';
    
    /* No worky? Works for me */
    SELECT
    ns.store_id
    ,COUNT(ns.client_id)
    FROM (
       SELECT
        s.store_id
       ,c.client_id
       FROM
        store1 s
       ,client2 c
       WHERE
       MDSYS.SDO_NN(
           s.shape
          ,c.shape
          ,'sdo_num_res=1'
          ,1
       ) = 'TRUE'
    ) ns
    GROUP BY
    ns.store_id
    ORDER BY
    ns.store_id;
    

    So I wrote this about 12 c (12.1.0.2.0) and everything works fine for me.  Then I moved back from 11 GR 2 (11.2.0.4.0) and of course, there are questions.  So I guess that you don't use flavor of 11g.  So at this point we can look at the docs and see for 11g, have you often need to specify which table is the head and that is the one that has the spatial index to use.
    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e11830/sdo_operat.htm#SPATL1032

    Its rather interesting that the optimizer of 12 c knows what you want, when I had to squint myself at your request and to play a little with the refining.  Note that SDO_NN is sensitive, because the geometry of the main table should come second in the operator.  I did not know that on the top of my head.

    
    SELECT
    /*+ LEADING(c) INDEX(s store1_spx)  */
     s.store_id
    ,c.client_id
    ,MDSYS.SDO_NN_DISTANCE(1)
    FROM
     store1 s
    ,client2 c
    WHERE
    MDSYS.SDO_NN(
        s.shape
       ,c.shape
       ,'sdo_num_res=1'
       ,1
    ) = 'TRUE';
    
    SELECT
     ns.store_id
    ,COUNT(ns.client_id)
    FROM (
       SELECT
       /*+ LEADING(c) INDEX(s store1_spx)  */
        s.store_id
       ,c.client_id
       ,MDSYS.SDO_NN_DISTANCE(1)
       FROM
        store1 s
       ,client2 c
       WHERE
       MDSYS.SDO_NN(
           s.shape
          ,c.shape
          ,'sdo_num_res=1'
          ,1
       ) = 'TRUE'
    ) ns
    GROUP BY
    ns.store_id
    ORDER BY
    ns.store_id;
    

    So I think that is your answer.  Give it a shot and see if this fits the Bill.  Of course, moving to 12 c would be useful for such things.  It would be interesting to collect more examples of this kind of space thing where 12 c is the answer. Also, would be nice if we could mark somehow this discussion as applying only to 11g and earlier versions.

    See you soon,.

    Paul

  • SDO_NN giving ORA-13249: SDO_NN cannot be assessed without using the index

    Hi people,

    I do not understand why the SDO_NN gives ORA-13249 in circumstances.

    SQL > SELECT SlavaTest WHERE SDO_NN s s.title (s.geometry, SDO_GEOMETRY (2001, 4326, SDO_POINT (14.0, 49.0, NULL), null, null)) = 'TRUE' and title like '%' and rownum < 10;

    TITLE
    --------------------------------------------------------------------------------
    MultiPoint_305199
    LineString_691779
    MultiPolygon_180478
    MultiPolygon_358113
    MultiPolygon_53008
    MultiPolygon_249905
    MultiPolygon_204076
    MultiPolygon_636994
    MultiPoint_464514

    9 selected lines.

    SQL > SELECT SlavaTest WHERE SDO_NN s s.title (s.geometry, SDO_GEOMETRY (2001, 4326, SDO_POINT (14.0, 49.0, NULL), null, null)) = 'TRUE' and timestamp > = to_timestamp (January 6, 2011 ', ' dd/mm/yyyy') and rownum < 10;
    SELECT SlavaTest WHERE SDO_NN s s.title (s.geometry, SDO_GEOMETRY (2001, 4326, SDO_POINT (14.0, 49.0, NULL), null, null)) = 'TRUE' and timestamp > = to_timestamp (January 6, 2011 ', ' dd/mm/yyyy') and rownum < 10
    *
    ERROR on line 1:
    ORA-13249: SDO_NN cannot be assessed without using the index
    ORA-06512: at the 'MDSYS. MD", line 1723
    ORA-06512: at the 'MDSYS. MDERR", line 17
    ORA-06512: at the 'MDSYS. PRVT_IDX', line 49

    The spatial index is created with:
    CREATE the INDEX SlavaTest_geometry_idx_spatial ON SlavaTest (geometry) INDEXTYPE IS mdsys.spatial_index;

    'Title' and 'timestamp' columns have an index.

    Note the query comes from Hibernate and I can't change it's arbitrary.

    Slava2 wrote:
    What this means - there is a bug in Oracle?

    Well, it could probably be considered a, but [url http://docs.oracle.com/cd/E11882_01/appdev.112/e11830/sdo_operat.htm#i78067] documentation on SDO_NN warns you:

    Documentation says:
    However, if the column in the WHERE clause predicate specifies a non-space column in the table for geometry1 with an associated index, make sure that this index is not used by specifying the NO_INDEX indicator for this index.

    See you soon,.
    Stefan

  • SDO_NN cannot be assessed without using the index

    Hello
    I'll try to find more close neighbours of a point using two tables (grafo_ped_links & haltestellen) and I fail miserably quiet.

    Select h.desc_i, grafo_ped_links h.numpal g, haltestellen h where (g.geometry, h.geometry) sdo_nn = 'true' and g.start_node_id = 355 and rownum < = 5
    *
    ERROR on line 1:
    ORA-13249: SDO_NN cannot be assessed without using the index
    ORA-06512: at the 'MDSYS. MD", line 1723
    ORA-06512: at the 'MDSYS. MDERR", line 17
    ORA-06512: at the 'MDSYS. PRVT_IDX', line 49

    But I am able to find the nearest neighbor on individual tables (singularly) without any problem. I'm even able to find a WITHIN_DISTANCE using two tables (below the sql statement).

    Select h.numpal from grafo_ped_links g, haltestellen h where SDO_WITHIN_DISTANCE (h.geometry, g.geometry, 'DISTANCE = 0.5 UNIT = KM') = 'TRUE' and g.start_node_id = 355;

    NUMPAL
    ----------
    5122
    5103
    5102
    5120
    5100
    5301
    5302
    5303

    I even dropped the indexes of the two tables and recreated them again. I read somewhere that the problem could be due to a lack of advice, so I tried the following and I still get the same error.


    Select / * + LEADING (g) INDEX (h haltestellen_ridx) * / h.desc_i, h.numpal
    of grafo_ped_links g, h haltestellen
    where (g.geometry, h.geometry) sdo_nn = 'true' and g.start_node_id = 355 and rownum < = 5

    Select / * + INDEX (h haltestellen_ridx) NO_INDEX (g grafo_ped_links_ridx) * / h.desc_i, h.numpal
    of grafo_ped_links g, h haltestellen
    where (g.geometry, h.geometry) sdo_nn = 'true' and g.start_node_id = 355 and rownum < = 5

    Select / * + USE_NL (h, g) VALUE * / h.desc_i, h.numpal
    of grafo_ped_links g, h haltestellen
    where sdo_nn (g.geometry, h.geometry, 'sdo_num_res = 5', 1) = 'true' and g.start_node_id = 355 and rownum < = 5


    Anyone can please, show me the way, or give a hint. I use oracle spatial 11g.

    Thank you!
    Cook

    Published by: user611283 on December 30, 2009 06:11

    It should be 'TRUE '.

    Select h.desc_i, grafo_ped_links h.numpal g, haltestellen h where (h.geometry, g.geometry) sdo_nn = 'TRUE' and g.start_node_id = 355 and rownum<=>

  • Cannot add new device using the USB port

    Cannot add new device through usb ports, the cable is peripheral poering, not listed is not in the menu

    Thread merged:

    try to use the scanner to photo but can not add new device via USB, cable powers the device, but the device not listed is not in the menu

    Hello

    1. do you get an error message when you add a new device?

    2. What do you mean by "the cable is peripheral poering"?

    3 are. what menu you referring?

    4. is it the problem persists with a particular device?

    5. were there any changes (hardware or software) to the computer before the show?

    Reply with answers to help you in a better way.

    Click on the below mentioned link to get an idea on how to ask for suggestions in this forum.

    Suggestions for a question on the help forums

  • Internet Explorer cannot be opened by using the built-in Administrator account. Sign in with a different account

    Fixed HP laptop bios update has disabled the option to open all the apps. Simple BUT frustrating built-in Administrator fascist authoritarian East

    Hi Dean,

    Built-in Administrator account does not have a split token and metro apps may not work under full administrator token. So metro apps cannot be turned on with the built-in Administrator account.

    I recommend you create a new user account to access the User Interface modern apps.

    Check out the following link to create a normal administrator user account.
    Which user account is right for me?
    http://Windows.Microsoft.com/en-us/Windows-8/which-user-account-for-me

    Create a user account:
    http://Windows.Microsoft.com/en-us/Windows-8/create-user-account

    Hope the information is useful. If you have any other questions, answer here and we will be happy to help you.

  • Cannot run business ruleset using the Launcher command line for the calculation Manager

    Hello

    I use the Hyperion 11.1.2.2 planning version. I am trying to execute a business rule defined via the calc Manager command line utility. Please see the order form below,

    D:\Oracle\Middleware\user_projects\epmsystem1\Planning\planning1 > CalcMgrCmdLineLauncher.cmd /U:HBRadmin D:Capex /A:CORP S:Capex_Nightly

    At the launch of the above command, the utility starts and ends without triggering the rule in the database. See log info below,

    Local planning: en_US

    using java.library.path: D:\Oracle\Middleware\EPMSystem11R1/products/Planning/lib64

    EPM_ORACLE_HOME (D:\Oracle\Middleware\EPMSystem11R1) has the value of the property 'EPM_ORACLE_HOME' of the JVM.

    using the property of Java for Hyperion home D:\Oracle\Middleware\EPMSystem11R1

    For the non - RFP app, ask size is not necessary

    EPM_ORACLE_INSTANCE (D:\oracle\Middleware\user_projects\epmsystem1) has the value of the [EPM_ORACLE_INSTANCE] property of the JVM.

    Support RTC Essbase Version: 0xb1221

    null

    But if I try to execute a business rule with the calc Manager command-line utility, it works well. It is only rules base which poses problem. Please note that this set of rules is to have business rules that belong to a database that is Capex.

    Any help on this request would be much appreciated. Please notify.

    Thank you

    AP

    Please ignore this request,

    I found the KB article below

    Hyperion Planning Rulesets cannot be launched using the CalcMgrCmdLineLauncher planning (Doc ID 1453630.1)

    Thank you

    Arun

  • Cannot run CS6 after using the CC (CC subscription has expired)

    I let my subscription CC expire (while my company treats a new license) and to do in the meantime to CS6. However, I cannot go beyond the message 'Renew your membership' and can't seem to save my copy of CS6 (it will not be displayed as a registered product and I can not add). I tried to use the CleanerTool Adobe CC (as recommended here), removed all Adobe products and reinstalled CS6 (and rebooted), but still can't make it work. Any help would be greatly appreciated!

    Hi Andre, try the steps mentioned in the link below.

    Waiting for your response.

    Atul_Saini

  • Cannot launch ManagedServer by using the Console

    Hello

    I created an Admin Server (prot is 7001) and 1 managed server (name: MS1, port is 7003) and I try to run the managed server, it works fine once I removed all the domain and created the field, also created 1 Admin Server and 1 (MS1, 7003) server managed with the same server name and port numbers, then I try to start the server managed using the console using startManagedServer.cmd MS1 t3: / /. 127.0.0.1:7001 but I got error like # < 1294642894256 > < BEA-002606 > < cannot create a server socket to listen on the channel "Default". The 0.0.27.92 address may be incorrect, or another process is using port 7003: exception java.net.BindException: cannot assign requested address: JVM_Bind. >

    Note: Even I created the Manager server MS1 with another port number(ex: 7009) and also I got the same error

    Pls help any body about this?

    Hello

    Do not remove the domain without stopping the servers running in this area.
    Try to kill the instance that is already running on port 7003.

    As you said even on 7009, you are facing the same problem, try to modify the config.xml file and the address of the listening on 127.0.0.1.
    Make sure you take a backup of the config.xml file before editing it.

    Thank you
    Amandine
    http://middlewareforum.com

  • Cannot connect Web site using the browser of Toshiba 32RL958

    Maybe this should not be «so smart TV...» »

    Trying to connect to any site that requires that a password fails. I know that I do not use the wrong password, but according to the website I am returned to the login screen or stay on as "guest".

    Any ideas please. I'm starting to get rather cut with what does not intelligent overall.

    Not clear why this is happening but maybe the browser can't save the cookie that is often necessary to connect to a Web site.
    Check in the settings, if something like this can change, but as much as I know the Internet browser via television does not provide the same options and performance as a common browser like internet explorer, chrome or firefox.
    You wait too long in most cases that you can use it only for common navigation and reading. For more activities smart tv, you need to use the apps.

  • Satellite U400 - cannot bluetooth speaker pair using the Toshiba BT stack

    Dear all,

    I would be very happy to help / advice you can offer the following.

    I have a U400 I got about 10 months ago.
    The built-in laptop bluetooth that I keep all the drivers up to date via the toshiba tempro tool.
    Last night, I got a bluetooth (Gear4 blackbox) speaker that I thought would be easy to pair it with bluetooth. This speaker uses the A2DP.

    -The wizzard "Add new connection" found the speakers but could not perform a pairing no matter how many times I tried.
    This could be due to my existing drivers are not currently supporting A2DP? I'm already using a bluetooth mouse without any problems

    -Try to solve this problem, I downloaded the latest Toshiba Bluetooth Stack (Version 6.40.02) and I tried to install. I have not tried unistalling anything until this... I just run the installation. This has got to a point and got stuck trying to install the bluetooth file transfer. I had to cancel and then use system restore to get back to where I started. Should I unistall existing bluetooth before installing the battery Bluetooth Toshiba? What should I do?

    -Toshiba laptop computers come with Toshiba Bluetooth Stack already installed?

    I am really grateful for any help and advice

    Thank you very much

    John

    Hello
    > Toshiba computers laptops come with Toshiba Bluetooth Stack already installed?
    Of course!
    All laptops that are equipped with internal BT module have a preinstalled BT stack!

    But to be able to use Bluetooth, enable it first using the FN + F8 key combination

    This key combination allows the Wlan and BT, so be sure you have chosen the BT and not Wlan ;)

  • Cannot deploy when you use the FPGA configuration file

    Hi all

    I'm new to NI Veristand. We use a controller NIPXI 8108 with a map of FPGA OR 7841R. Is the used chassis OR PXI 1042 q. VeriStand does not deploy, when we try to add the target FPGA. For adding, we used the default for NOR 7841R provided with veristand FPGA configuration file. The error is attached! Without adding the FPGA target, we are able to deploy.

    We programmed with LabVIEW FPGA card and it works.

    Please help us!

    Thank you

    SID

    Hi Sid

    This is because the FPGA card is not connected through the chassis

    Right click on the (unidentified) PXI system and identify as PXI 1042 q.

    Right-click on the PXI-1042 q system and identify the PXI-8108 controller.

    Then it will automatically fill the devices under the controller

    Now try to deploy again. It will work

    -SID

  • cannot unset'read only "using the Properties window

    After a blip in the update, I have a lot of files in a folder that I am unable to fix it, because they are 'read only' and will not change using the unset opyion in "Properties".

    Here's what to do.

    FIRST: you sing in your Windows as an administrator. Windows 7 and Vista disable by default. In the menu START > Accessories, right-click on command prompt and click Run as administrator. In the command line type

    NET user administrator / Active: Yes

    (be sure to use the space before the slash). You should receive confirmation of success.

    Then go to the folder in question Properties dialog box and on the tab security add user everyone and give him full privileges.

    You should be able to access the folder as desired.

    Good luck!

  • Cannot connect to PayPal using the overdraft facility

    Whenever I try to pay for something (online shopping) by using the PayPal cheque made on another Web site, it will not open a session. I enter my email address and password and just get an error message saying wrong password or e-mail address, even though I know that both are correct. I can connect to PayPal using the facility successfully using Internet Explorer without any problem. I can also connect to PayPal successfully if I go on its website (www.paypal.com.au) in Firefox.

    I tried to clear the cache and cookies associated with Pay Pal, but that did not help at all.

    This problem occurred for months and is quite frustrating.

    I'm using Firefox 48.0.2 (current version). All my extensions and plug-ins are up-to-date. Using Windows 7.

    Update: the problem is probably caused by an extension/add on. I don't know which yet. I can only test it when I buy something, where the reason why it takes me a while to understand.

    Next time I buy something online, I'll test on all extensions / add ons until I find the one who is the cause of the problem. Once I figure out I'll post an answer here.

    Thanks for your help :)

  • Cannot run Windows Explorer using the interactive services detection

    Hello

    I have the tool using the interactive services detection to display applications. I have to refrain from using the Terminal Server services for the moment and the DSI is the only option I have. Now the problem is, this tool must run Windows explore periodically as well as other applications Viz Notepad, wordpad. It shows notepad and wordpad but always fails to open windows Explorer. Any ideas on that?
    PS: everything what I described above works great with the Terminal Services
    Thank you
    Madhu

    Hi Madhu,

    The question you posted would be better suited for COMPUTING public Pro on TechNet. I would recommend posting your query in the TechNet Forums to get help:

    Windows 7 security TechNet Forums

    Let us know if you need help with Windows related issues. We will be happy to help you.

Maybe you are looking for