Configuration in App.config for MS Excel 2002

I want to read data from MS Excel 2002 into my List<t>
I want to connect MS Excel using App.config.
Assuming file name is "MyExcelFile.xls" and DataTableName is "Sheet1$", how could I make configuration string?

Try below steps,
In app.config file add below section
<connectionStrings>
    <add
name="MyConnectionString"
connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data
Source='C:\Temp\MyExcelFile.xls';Extended Properties='Excel 8.0;HDR=NO';"
providerName="System.Data.OleDb"
/>
  </connectionStrings>
Add “appSettings” section for Sheet Name Configuration,
<appSettings>
    <add
key="DataTableName"
value="Sheet1$"
/>
</appSettings>
In code you could do something like this,
 string connection_string = System.Configuration.ConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString;
string selectSQLCommand =
string.Format("Select * from [{0}]",
System.Configuration.ConfigurationManager.AppSettings["DataTableName"]);
DataTable excelSheetData =
new
DataTable();
using (OleDbConnection
oledbConnection = new
OleDbConnection(connection_string))
using (OleDbDataAdapter
oleDbDataAdapter = new
OleDbDataAdapter(selectSQLCommand, oledbConnection))
                    oleDbDataAdapter.Fill(excelSheetData);
List<DataRow>
excelRows = excelSheetData.Rows.Cast<DataRow>().ToList();
NOTE: you need to add “System.Configuration” assembly reference in your project. Change ‘HDR’ as per your requirement.
If the above solution meet your requirement then you could actually make it more generic by passing dynamic excel file name in your connection string.
Hope that helps.

Similar Messages

  • oracle.dataaccess.client not recognized in app.config for edmMapping

    Hi,
    I installed ODTwithODAC112030 EF provider release version.
    So I want to use custom EDM Mapping for boolean or something else.
    But Entity Data Model can't recognize
    <oracle.dataaccess.client>
    <settings>
    section in appConfig file.
    I'm using Win 7 x64 , VS 2010 and x86 odac components.
    How can i resolve this problem.
    Thank you..

    Would you please do a simple test like follows?
    1. create test table
    create table test_table (c1 number(4) primary key not null, c2 number(1, 0), c3 number(2), c4 number(5, 0), c5 number(10, 0), c6 number(19, 0));
    2. create a C# Console application and create a data model from test_table.
    Because there is no custom type mapping specified in app.config, default mapping is used in the model.
    Your CSDL section in Model1.edmx should show:
    <EntityType Name="TEST_TABLE">
    <Key>
    <PropertyRef Name="C1" />
    </Key>
    <Property Name="C1" Type="Int16" Nullable="false" />
    <Property Name="C2" Type="Int16" />
    <Property Name="C3" Type="Int16" />
    <Property Name="C4" Type="Int16" />
    <Property Name="C5" Type="Int32" />
    <Property Name="C6" Type="Int64" />
    </EntityType>
    3. Delete Model1.edmx.
    4. Open app.config and add the following below </connectionStrings> and above </configuration>. Save changes.
    <oracle.dataaccess.client>
    <settings>
    <add name="bool" value="edmmapping number(1, 0)" />
    <add name="byte" value="edmmapping number(3, 0)" />
    <add name="int16" value="edmmapping number(4, 0)" />
    <add name="int32" value="edmmapping number(9, 0)" />
    <add name="int64" value="edmmapping number(18, 0)" />
    </settings>
    </oracle.dataaccess.client>
    5. Create a data model from test_table again.
    The new model should be using your custom type mapping.
    Your CSDL section in Model1.edmx should show:
    <EntityType Name="TEST_TABLE">
    <Key>
    <PropertyRef Name="C1" />
    </Key>
    <Property Name="C1" Type="Int16" Nullable="false" />
    <Property Name="C2" Type="Boolean" />
    <Property Name="C3" Type="Byte" />
    <Property Name="C4" Type="Int32" />
    <Property Name="C5" Type="Int64" />
    <Property Name="C6" Type="Decimal" Precision="19" Scale="0" />
    </EntityType>
    If it does not work for you, you may want to check the version of your Oracle.DataAccess.dll in the GAC.
    gacutil /l Oracle.DataAccess
    Or change the timestamp of app.config.
    touch.exe app.config

  • Pcre-config for libpcre not found.

    hi
    When i am configuring apache to set reverse proxy.. i found the below error
    configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
    when i check with pcretest it is showing me PCRE version 6.6 is available. but when configuring it is not connecting to this pcre. I am accessing a remote desktop.
    thanks

    hi
    When i am configuring apache to set reverse proxy.. i found the below error
    configure: error: pcre-config for libpcre not found. PCRE is required and available from http://pcre.org/
    when i check with pcretest it is showing me PCRE version 6.6 is available. but when configuring it is not connecting to this pcre. I am accessing a remote desktop.
    thanks

  • Require a single App Pool for multiple websites in Azure Cloud Sevices

    Hi All,
    I am deploying multiple (very small) websites under one web role.  The code set is identical but configured/DB per tenant.  I am just getting this ready for production and have a huge road block where it is running out of memory. I have troubleshooted
    this and its because it is allocating each website to its own app pool.  It therefore has circa 500mb of ram allocated to each app pool after the app started.  My websites don't require this segregation and as I wish to publish 50+ tiny websites
    on one webrole, you can see my issue.  50*500mb.  I have manually gone into the instance/IIS and moved the websites to one app role and it now works how I wish.  The memory was released and even with every site under load, the increase in memory
    is well within parameters.  Can I please have some help in how I configure one app pool for all websites specified in the service definition please?  Don't mind startup tasks as I already have those but not sure how it would know what the app pool
    was called given its a GUID.
    Thanks,
    Steve.

    Hi,
      >> Don't mind startup tasks as I already have those but not sure how it would know what the app pool was called given its a GUID.
    From my experience, you can write some code in the web role's OnStart method to alter application pool. You can refer to
    http://blog.elastacloud.com/2011/01/26/windows-azure-apppool-settings-programmatic-modification/ for a sample.
    However, you can also consider other approaches which may be better options. For instance, use a virtual machine which allows you to use UI to configure everything. Or use several WAWS Websites (free/shared) and host each small site as a single Website.
    Those tires of Website does not offer all capability of web role, but if you just want to host a bunch of small sites which are rarely hit, they may save you the cost.
    Best Regards,
    Ming Xu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Warning Messages - Could not find schema information for the element applicationSettings - App.Config of a console app

    This is my app.config file
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
        <configSections>
            <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
                <section name="IntelBrandFX.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
            </sectionGroup>
        </configSections>
      <appSettings>
        <add key="connStr" value="Data Source=tmvnasql1.tmvn.com;Initial Catalog=brandplan;Integrated Security=True"/>
      </appSettings>
      <applicationSettings>
        <IntelBrandFX.Properties.Settings>
          <setting name="IntelBrandFX_rollupViewerService_extract" serializeAs="String">
            <value>https://viewer.rollup.com/omdsp2008/extract.asmx</value>
          </setting>
        </IntelBrandFX.Properties.Settings>
      </applicationSettings>
    </configuration>
    And the Warning messages  are
    Message 1 Could not find schema information for the element 'applicationSettings'.
    Message 2 Could not find schema information for the element 'IntelBrandFX.Properties.Settings'.
    Message 3 Could not find schema information for the element 'setting'.
    Message 4 Could not find schema information for the attribute 'name'.
    Message 5 Could not find schema information for the attribute 'serializeAs'.
    Message 6 Could not find schema information for the element 'value'.
    Althought they do no hinder me from successfully running the project. these messages are annoying. I have seen many articles on the web but could nowhere find the exact schemas for that the above elements that I could add to the  DotNetConfig.xsd file.
    Could somebody give me an idea how to create xsds for the elements above and include in the dotnetConfig.xsd.
    I understand what needs to be done but not sure of the exact way to do it.
    Thanks,

    You don't need to modify the dotnetconfig.xsd.  All you need to do is generate an XSD for your section and let VS know where it is at.
    1) Create your XSD using any of the various tools available or by hand.
    2) Copy your XSD into the <VSDir>\Xml\Schemas directory.
    3) Create a catalog file for your schema.
    4) Restart VS and it'll load the XSD and give you Intellisense.
    Here's the MSDN documentation for it: http://msdn.microsoft.com/en-us/library/ms255821.aspx
    Michael Taylor - 8/18/09
    http://p3net.mvps.org

  • Using Project Settings creates an app.config and dozens of errors about "Could not find schema information for the element...

    I am trying to work with Application settings.  I would just like to put together a very simple example of using these, but I can't get the most basic example to work.  Virtually every tag regarding the new Settings produces an Error "Could not find the schema information for the element "applicationSettings". or the element "Settings" etc. etc.  I am not using IIS, this is not a Web Project, and I am not working with User Settings.  Just simple read-only Application Settings.  I've read every MSDN page regarding this subject, I don't see that I am missing a reference - HELP !!!
    REPRODUCING THE PROBLEM:
    Step 1. Create a new C# solution and Windows Forms project. 
    Step 2. Add a reference to System.configuration
    Step 3. Right click the project, choose Properties, then Settings.
    Step 4. Using the Settings Designer, create ONE setting called "MySetting" as a String with the value "MyValue".
    RESULT: Observe the Errors like these, complaining about all of the Settings tags and elements.
    Message 1 Could not find schema information for the element 'applicationSettings'. 
    Message 2 Could not find schema information for the element 'LoadOriginalLists.Properties.Settings'. 
    Message 3 Could not find schema information for the element 'setting'. 
     HERE IS MY APP.CONFIG, AS GENERATED BY THE SETTING DESIGNER TOOL:
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <configSections>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
    <section name="LoadOriginalLists.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
    </configSections>
    <applicationSettings>
    <LoadOriginalLists.Properties.Settings>
    <setting name="MySetting" serializeAs="String">
    <value>MyValue</value>
    </setting>
    </LoadOriginalLists.Properties.Settings>
    </applicationSettings>
    </configuration>

    Ummmm... okay so these are Messages that are in the Error List.  Whether or not they are actually Errors is debatable.  They are in the Error List, so they are errors. 
    The application runs, so my question is slightly changed to the following.
    I would like to use Application Settings.  However, having settings in my app.config pollutes my Error List with a bunch of meaningless messages like "Could not find the schema information for...".  These messages then hide real errors. 
    Am I missing some setting or is there something I can do to make Visual Studio not show me these messages? 

  • Ldap auth for db app working, same config for websheet not working

    Hi forum-
    I'm running the following:
    Apex version 4.2.1
    Listener version 2.0.1
    RDBMS version 11.2.0.3
    RHEL Linux version 2.6.18-238.5.1.el5
    We've been using apex for quite a while (version 3.something) and have been successfully authenticating application logins w/ our corporate LDAP service. I've recently installed the latest version of apex and have been exploring the websheet application (very cool). Using parameters similar to our 3.0 installation, I was able to create a test database application and was able to successfully authenticate w/ our ldap service. Using the same settings (listed below) I'm NOT able to successfully authenticate a websheet login. Here are the (sanitized) settings for the database application:
    host: ldap.company.com
    port: 389
    use ssl: no sll
    distinguished name string: CN=%LDAP_USER%,OU=All Users,DC=ad,DC=company,DC=com
    use exact distinguished name: yes
    ldap username edit function: return ldap_validate (p_username => :USERNAME);
    username escaping: standard
    and the settings for the websheet application:
    logout url: ws?p=102:home (default)
    ldap host: ldap.company.com
    ldap port: 389
    use ssl: no sll
    use exact distinguished name: yes
    ldap string: CN=%LDAP_USER%,OU=All Users,DC=ad,DC=company,DC=com
    ldap username edit function: return ldap_validate (p_username => :USERNAME);
    ldap username escaping: standard
    cookie name:
    cookie path:
    cookie domain:
    secure: no
    Additional info
    - the ldap username edit function (ldap_validate) take a login ID and returns the ldap-friendly version via an ldap search
    Questions:
    1) is there any additional configuration that is necessary for a websheet to use ldap authentication (acls, for example)?
    2) is there any useful logging where i determine why the login is failing?
    3) has anyone gotten this working and can share their config with me?
    Many thanks-
    -josh

    Any thoughts?

  • Is there any free app available for iPad 2 so can do the work in MSWord, Excel, PowerPoint.

    Is there any free app available for iPad 2 so can do the work in MSWord, Excel, PowerPoint.

    I'm not aware of free apps that will let you work with Word, Excel, etc.  There are however, paid apps, such as Pages and Numbers you can buy that will work for you.

  • HT1386 trying to sync itunes to iphone. added app iconnect, but keep getting "your apple id isnt enabled for itunes connect (2002) (2002). How do I fix?

    Tryin to sync from itunes to iphone. added iconnect app, but recieve "your apple id isnt enabled for itunes connect (2002) (2002)" . How do i fix?

    You have to enroll in the ios developer program. https//developer.apple.com. once your enrolled you should be cool to connect.

  • What is the best app to buy for word, excel, and PowerPoint, for my ipad2?

    Hello, I have an ipad2, and was recently told it can do everything a laptop can, so with that said, I need a great app for word, excel, PowerPoint, adobe and electric on signing , please help.

    As with beauty, best is in the eye of the beholder or user.
    FaceBook has an app for iOS devices, but FaceBook has chosen not to provide an iPad optimized version for their app - not yet anyway. As with most other iPhone/iPod Touch compatible apps, FaceBook's app will work on the iPad but it isn't optimized for the iPad's larger screen. There are at least two 3rd party FaceBook apps that are optimized for the iPad.

  • How to use the same services-config for the local and remote servers.

    My flex project works fine using the below but when I upload my flash file to the server I doesn't work, all the relative paths and files are the same execpt the remote one is a linux server.
    <?xml version="1.0" encoding="UTF-8"?>
    <services-config>
        <services>
            <service id="amfphp-flashremoting-service"
                class="flex.messaging.services.RemotingService"
                messageTypes="flex.messaging.messages.RemotingMessage">
                <destination id="amfphp">
                    <channels>
                        <channel ref="my-amfphp"/>
                    </channels>
                    <properties>
                        <source>*</source>
                    </properties>
                </destination>
            </service>
        </services>
        <channels>
        <channel-definition id="my-amfphp" class="mx.messaging.channels.AMFChannel">
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
        </channel-definition>
        </channels>
    </services-config>
    I think the problem  is the line
            <endpoint uri="http://localhost/domainn.org/amfphp/gateway.php" class="flex.messaging.endpoints.AMFEndpoint"/>
    but I'm not sure how to use the same services-config for the local and remote servers.

    paul.williams wrote:
    You are confusing "served from a web-server" with "compiled on a web-server". Served from a web-server means you are downloading a file from the web-server, it does not necessarily mean that the files has been generated / compiled on the server.
    The server.name and server.port tokens are replaced at runtime (ie. on the client when the swf has been downloaded and is running) not compile time (ie. while mxmlc / ant / wet-tier compiler is running). You do not need to compile on the server to take advantage of this.
    Hi Paul,
    In Flex, there is feature that lets developer to put all service-config.xml file configuration information into swf file. with
    -services=path/to/services-config.xml
    IF
    services-config.xml
    have tokens in it and user have not specified additional
    -context-root
    and this swf file is not served from web-app-server (like tomcat for example) than it will not work,
    Flash player have no possible way to replace token values of service-config.xml file durring runtime if that service-config.xml file have been baked into swf file during compilation,
    for example during development you can launch your swf file from your browser with file// protocol and still be able to access blazeDS services if
    -services=path/to/services-config.xml
    have been specified durring compilation.
    I dont know any better way to exmplain this, but in summary there is two places that you can tell swf  about service confogiration,
    1) pass -services=path/to/services-config.xml  parameter to compiler this way you tell swf file up front about all that good stuff,
    or 2) you put that file on the webserver( in this case, yes you should have replacement tokens in that file) and they will be repaced at runtime .

  • Getting a "An error occurred while saving values to the app.config file." message

    The content of the title is just part of the message I get. The second line of the message is: "The file might be corrupted or contain invalid XML."
    I work with a lot of usercontrol libraries, and each one has 1 or 2 connection strings setup, and nothing else. I have no trouble in the code itself using the settings. Nor do I have trouble during runtime with them. But I do have the problem with every single library I work on.
    The problem occurs when I make a change to the settings in the VS IDE (2005), which I do whenever I need to the connection string to point to my test SQL server, or need to set it back to the production SQL server. The connection strings were setup in the Settings tab of the Property page for the application.
    I get the error message whenever I select the settings tab and again when I go to save it. I once tried deleting the app.config file, and recreating the settings, and the message went away until I checked it in. No one else has the problem when they get the files, but when I get then, I get the error message.
    Any ideas what may be causing this. My boss thouight it might be an addon from CodeSMART, but I uninstalled it to see if the errors would go away and it didn't.
    Thanks.
    MarshallMarshall Youngblood

    Marshall,
    I am not sure if it helps in your case, but I have the similar problem. Add foloowing lines in your app.config file  in configSections  tag.
    <
    configSections>
    <
    sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
    <
    section name="ApLibrary.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </
    sectionGroup>
    </
    configSections>
    let me know if that helps.
    Purvi Patel

  • Configuring OBI Apps 7.9.6.3 When Using Universal Adapter Exclusively

    Hello experts,
    I have been working for a few days in trying to configure a fiscal calendar with universal adapter flat files as the only data source because Great Plains is the data source and since Oracle does not support it, we use universal adapters. We have had limited success with this but in configuring OBI Apps 7.9.6.3 and doing normal configuration things such as configuring fiscal calendars and mapping GL accounts to group accounts using the Universal Adapter in DAC, there is virtually no documentation. In fact, when I Googled the universal adapter version of the group account codes file, there were 0 Google entries for it.
    I am sending this new thread in the hope that someone out there has successfully configured OBI apps 7.9.6.3 using the Universal Adapter and can point me to documentation of any sort other than the normal Oracle OBI Apps Config Doc which only briefly mentions it and then takes file examples that are OOTB and unconfigured in any way.
    Specifically, I need assistance in getting fiscal calendars working with the Universal Adapter. I have W_MCAL_DAY_D populated and all of the Gregorian calendar tables. However, the remaining W_MCAL* tables only have one row in each of them. I have an SR open about it but no success resolving it yet. While doing the configuration work, we tried to map GL accounts to group accounts but there is no account range in the Universal Adapter source file unlike the Oracle EBS version so I am unsure on how to configure group accounts. Oracle documentation only refers to Oracle EBS, PeopleSoft, and JDEdwards. I am unable to find anything regarding the Universal Adapter.
    If anyone has done this sort of OBI apps configuration before, please respond or send me URLs for related documentation. I am completely stuck and SRs are not yet helping so I thought I would try this.
    Thanks experts and looking forward to hearing from you.

    Hi Krish,
    You will have to create 20 Application Roles matching the Responsibility Names.
    Use one of the following methods to set up application roles:
    Create application roles in the policy store with the same names as existing responsibilities or groups in the source applications. Then, add the new application roles as members of Oracle BI-specific application roles groups, and the users will inherit this membership based on their own responsibilities or roles in the OLTP application.
    Add new Oracle BI-specific responsibilities (Oracle EBS and Siebel CRM Applications) or roles (PeopleSoft Enterprise applications) in the source applications, making sure their names match the object security application roles in Oracle BI Applications, and assign OLTP users to these new groups. The users will then inherit the application role membership in the same way as described in the preceding method.
    Application Roles in 11g are the Groups of 10g (http://blogs.oracle.com/robreynolds/entry/security_in_obiee_11g_part_2)
    Cheers,
    Daan Bakboord
    http://obibb.wordpress.com

  • Dynamic setting of App.config

    I have App.config in my project.
    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
    <connectionStrings>
    <add name="OSConnection"
    providerName="System.Data.SqlClient"
    connectionString="data source=My-PC\SQLTEST;initial catalog=productorder;User ID=sa;Password=1327221;integrated security=True;"/>
    </connectionStrings>
    </configuration>
    I hard coded in the App.config but I want to set some parameters dynamically by reading some external file.
    For example, I want to read "sa" and "1327221" from the external file and pass to User ID and Password of this App.config.
    How do I implement that?

    For the specific case where the DB file is in the same directory as your app then you probably don't need to specify the path, just the filename.  However if that doesn't work then there is 1 substitution string that was added for ASP.NET called DataDirectory. 
    However to use that outside ASP.NET you need to set it using the code provided
    here.
    For more elaborate changes to a connection string you are better off loading the base string at runtime and then using a connection string builder to adjust the settings.  For example if your app normally uses Win auth but you need to be able to switch
    to SQL auth dynamically at runtime then that would be a case where the base connstring comes from the config but a builder will allow you to adjust it before actually passing it onto the connection object.
    Michael Taylor
    http://blogs.msmvps.com/p3net

  • EMET group policy preference "application configuration" vs "default protection for popular software"

    Hello,
    Trying to implement EMET 4.1 update 1 in a VDI environment using group policy. When all default protections are enabled (IE, recommended and popular) EMET is blocking the startup of windows media player within citrix session as caller
    mitigation. At this time I wanted to use the GPO "Application Configuration" to specify an exception as "wmplayer.exe -Caller". Even tried "*\Windows Media Player\wmplayer.exe -Caller" but startup would still get blocked. When
    using emet_conf --list I would see three entries for wmplayer and the only way to remove Caller is to disable policy "default protection for popular software". Shouldn't settings in Application Configuration take priority as being the exception to
    the rule? Alternative is to turn off the "default protection for popular software and list all of them one by one (or use XML file)
    here is part of the output of emet_conf --list
    all policies:
    wmplayer.exe           *\Windows Media Player       DEP SEHOP NullPage HeapSpray
     EAF MandatoryASLR BottomUpASLR LoadLib MemProt SimExecFlow StackPivot
    wmplayer.exe                                        DEP SEHOP
    NullPage HeapSpray
     EAF MandatoryASLR BottomUpASLR LoadLib MemProt SimExecFlow StackPivot
    wmplayer.exe           *\Windows Media Player       DEP NullPage HeapSpray Botto
    mUpASLR LoadLib MemProt Caller SimExecFlow StackPivot
    without "default protection for popular software" (much less applications listed)
    wmplayer.exe                           DEP SEHOP NullPage HeapSpray EAF Mandator
    yASLR BottomUpASLR LoadLib MemProt SimExecFlow StackPivot
    wmplayer.exe  *\Windows Media Player   DEP SEHOP NullPage HeapSpray EAF Mandator
    yASLR BottomUpASLR LoadLib MemProt SimExecFlow StackPivot
    Thank you

    if I understood correctly from talking to EMET feedback team last time, they said  App Config settings don't actually override any the default app or popular or IE protection profiles. (it really seems like App config settings override the other profiles
    from the manual, hey? I thought so as well) 
    Sooo, it sounded like we'd need to extract the recommended or popular app list, convert it to the path + mitigation not included format for the app config GPO and then just use app config to manage it. 
    Needless to say it sounded surprising and laborious and not management by exception at all. 
    Rinse repeat for new versions of emet and XML policy files . 
    p.s what would be really helpful in the admin guide is some real world examples of contoso.local where they apply the recommended apps + a few exceptions for all + custom exceptions for a separate class of  machines or groups of users. hmeh.

Maybe you are looking for

  • Transfer Data to TDMS Cluster (TDMS4HCM)

    Hello experts, could anyone please let me know how I can transfer the data to the tdms cluster. I have completet follwoing steps. -> Prepare Data Transfer (Status: Execution successfully completed) -> Data Transfer (Status: Execution successfully com

  • Organize view in library- pics too small!!

    Hi, Im looking at my library- and for some reason now all of my photos are seen extremely small when using the organize view. Pressing "1" or "2" will zoom in, but before today i had a view that showed bigger thumbnails, and i dont know how to get it

  • No signal after clearing CMOS

    Hey, I was having problems and so chose to clear the cmos (using the jumper). Now there is no signal on monitor! Just to make sure that it was cuz of clearing cmos, I had another computer with the problem so I did it to that one too lol. And that one

  • Dynamic Navigation link dyntotab_10fromMainWindow  not defined

    Hi, I am trying to logon to a business role and i get a message to define the navigation link dyntotab_10fromMainWindow . While debugging, i found out that the link is generted at runtime. Please help me how to define a target for the link. PFB the t

  • The screen where you type in a code to log onto Yahoo games no longer displays fully, so I can't see all of the characters.

    Before you can play Yahoo games, you must type in a 4 letter/number code. Suddenly (a few days ago) only about 1/3 of the right-hand side of the screen, where the code appears, is visible and I can't enlarge the screen to see it. So I'm unable to log