Detection method - file NOT exist?

I have a need to remove the Outlook feature from Office 2013 if it is present on certain machines. I create my MSP to remove Outlook and run msiexec /p removeoutlook.msp and it works great.
My problem is that the detection method for applications is the opposite of what I need. If the Outlook.exe file is NOT present, then it is installed.
I'm sure there must be a way to do this via the custom detection script but I am a scripting noob.

You can create a 'dummy' application "Outlook 2013", configure it as follows:
Leave install command blank
Configure uninstall command to use your detection method (outlook.exe exists)
Deploy the Uninstall to the collection where you want to remove the outlook
Or you could use simple package/program to just remove the outlook by running your uninstallation command. Or you could configure your Office 2013 with OCT (Office Customization Tool by running setup.exe /admin) to remove Outlook from your Office 2013 installation
for future deployments.

Similar Messages

  • Cannot optimize volume - Receive error "The specified extrinsic Method does not exist"

    When I try to optimize a volume on a server running Windows Server 2012 (R1). I receive the below error. This volume is an ISCSI target to our Compellent SAN. Other Servers don't have an issue with volumes created on the same SAN and I have already ran ChkDsk
    and it returned no errors. Oddly enough I can run a "Defrag T: /D" but a "Defrag T: /O" returns
    "Incorrect Function. (0x80070001)" (Incidentally an "Optimze-Volume T -Defrag" also works) 
    Any Ideas? I'm stumped!
    Command:
    Optimize-Volume -DriveLetter T -Verbose
    Error:
    VERBOSE: Invoking slab consolidation on iSCSI_SAN01_ExchLogFiles (T:)...
    VERBOSE: Slab Analysis:  100% complete.
    optimize-volume : The specified extrinsic Method does not exist.
    At line:1 char:1
    + optimize-volume -DriveLetter T -Verbose
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : MetadataError: (MSFT_Volume (Ob...2-a802-ba7e...):ROOT/Microsoft/...age/MSFT_Volume) [Optimize-Volume], CimException
        + FullyQualifiedErrorId : MI RESULT 17,Optimize-Volume

    I did stumble upon that article as well and working through it didn't help. This is an Exchange 2013 server but I wouldn't think that that would exclusively cause a problem like this (unless there is something under the hood that Exchange 2013 is secretly
    doing). The C drive is for the OS, the M drive is for the Exchange DB, and the
    T drive is for the Logs.  The C drive is "directly" connected and the M and T drives are on the same SAN (different LUNs) via iSCSI. This is running as a virtual guest on VMWare ESXi v5.5.  I have other servers setup the
    same way (not Exchange servers though) with drives on the iSCSI SAN and there are no issues when I run those Optimize-Volume commands. Here is some more output from the console:
    PS C:\Users\administrator> Optimize-Volume -DriveLetter T -Analyze -Verbose
    VERBOSE: Invoking slab consolidation on iSCSI_SAN01_ExchLogFiles (T:)...
    VERBOSE: Slab Analysis: 0% complete...
    Optimize-Volume : The specified extrinsic Method does not exist.
    At line:1 char:1
    + Optimize-Volume -DriveLetter T -Analyze -Verbose
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : MetadataError: (MSFT_Volume (Ob...2-a802-ba7e...):ROOT/Microsoft/...age/MSFT_Volume) [Optimize-Volume], CimException
    + FullyQualifiedErrorId : MI RESULT 17,Optimize-Volume
    PS C:\Users\administrator> Optimize-Volume -DriveLetter M -Analyze -Verbose
    VERBOSE: Invoking slab consolidation on iSCSI_SAN01_ExchMailStoreDB (M:)...
    VERBOSE: Slab Analysis: 0% complete...
    Optimize-Volume : The specified extrinsic Method does not exist.
    At line:1 char:1
    + Optimize-Volume -DriveLetter M -Analyze -Verbose
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : MetadataError: (MSFT_Volume (Ob...2-93f1-0050...):ROOT/Microsoft/...age/MSFT_Volume) [Optimize-Volume], CimException
    + FullyQualifiedErrorId : MI RESULT 17,Optimize-Volume
    PS C:\Users\administrator> Optimize-Volume -DriveLetter C -Analyze -Verbose
    VERBOSE: Invoking analysis on (C:)...
    VERBOSE: Analysis: 0% complete...
    VERBOSE: Analysis: 22% complete...
    # ... Repeated ...
    VERBOSE: Analysis: 94% complete...
    VERBOSE: Analysis: 99% complete...
    VERBOSE: Analysis: 100% complete...
    VERBOSE: Analysis: 100% complete.
    VERBOSE:
    Post Defragmentation Report:
    VERBOSE:
    Volume Information:
    VERBOSE: Volume size = 84.48 GB
    VERBOSE: Cluster size = 4 KB
    VERBOSE: Used space = 63.18 GB
    VERBOSE: Free space = 21.29 GB
    VERBOSE:
    Fragmentation:
    VERBOSE: Total fragmented space = 4%
    VERBOSE: Average fragments per file = 1.23
    VERBOSE: Movable files and folders = 153593
    VERBOSE: Unmovable files and folders = 6
    VERBOSE:
    Files:
    VERBOSE: Fragmented files = 2745
    VERBOSE: Total file fragments = 35394
    VERBOSE:
    Folders:
    VERBOSE: Total folders = 4819
    VERBOSE: Fragmented folders = 2
    VERBOSE: Total folder fragments = 2
    VERBOSE:
    Free space:
    VERBOSE: Free space count = 74005
    VERBOSE: Average free space size = 296.00 KB
    VERBOSE: Largest free space size = 409.42 MB
    VERBOSE:
    Master File Table (MFT):
    VERBOSE: MFT size = 308.00 MB
    VERBOSE: MFT record count = 315391
    VERBOSE: MFT usage = 100%
    VERBOSE: Total MFT fragments = 4
    VERBOSE: Note: File fragments larger than 64MB are not included in the fragmentation statistics.
    VERBOSE:
    You do not need to defragment this volume.

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • File not exist in application server

    Dear experts,
                        Can anybody told me that if file not exist into the application server then what will happen to open dataset statement?
    it will show error or what?
    regards,
    sameek.

    Dear Sameek,
    Please check in code if file is exist then proceed next statement otherwise should not proceed with next statement.
    Best Regards
    Arun Jaiswal

  • T-FV-1030 CIN File Not Exists in required Path.

    Dear Gurus,
                      When executing FVU 3.0 I am getting error as T-FV-1030 CIN File Not Exists in required Path. Please guide where I have missed something .

    Dear Gurus,
                      When executing FVU 3.0 I am getting error as T-FV-1030 CIN File Not Exists in required Path. Please guide where I have missed something .

  • How to create a new excel file using Excel Destination when Destination file not exists.

    how to create a new excel file using Excel Destination when Destination file not exists.

    Just need to set an expression for excel connectionstring and set delay validation to true and it will create it on the fly.
    The expression should return the full path with dynamic filename in each case.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • File exist/file not exist

    OK, i create a directory i have read/write permissions on the directory, but still even if the file exists its bringing back the result as if it doesnt i need help with this...
    set serveroutput on
    DECLARE
    fexists    BOOLEAN;
    flen  NUMBER;
    bsize NUMBER;
    BEGIN
    sys.utl_file.fgetattr('TMP_LOCATION', 'test.txt', fexists, flen, bsize);
      IF fexists THEN
        dbms_output.put_line('File Exists');
      ELSE
        dbms_output.put_line('File Does Not Exist');
      END IF;
      dbms_output.put_line('File Length: ' || TO_CHAR(flen));
      dbms_output.put_line('Block Size: ' || TO_CHAR(bsize));
    END fgetattr;
    File Does Not Existmy directory.. CREATE or replace DIRECTORY tmp_location AS 'Server-1\configsheets\completed\pdf approved'

    Good afternoon,
    If you are loooking at a mapped drive, you can only see it if you change how the Oracle services start. You need to have them start with a specific user ID rather than starting as system services. The problem is that the system services cannot see mapped drives.
    So, do this:
    <li>Create a user to be used by Oracle services. Make sure they have the correct rights (I gave mine Server ADMIN so as to have all the access I needed)
    <li>Log into the server and modify the services
    <li>Click the 'Log On' tab and enter the account and password you created for the Oracle Processes
    <li>Reboot the server, allowing the Oracle services to log in with this new ID.
    This should then fix your problem.
    Thanks,
    Don.
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone! :)

  • Method does not exist

    Hi gurus, I'm facing the follow issue:
    In some transactions as SNOTE or SPAU while I'm trying to implement a correction by selecting the menu option Goto > Determine Adjustment Mode > Specify Adjustment Modes and Delete Objects,  the transaction seems as if it going to works fine but after a while it stop and shows the message error
    Error in the ABAP Application Program                                                                               
    The current ABAP program "CL_CWB_OBJECT=================CP" had to be 
    terminated because it has                                            
    come across a statement that unfortunately cannot be executed.                                                                               
    The following syntax error occurred in program                        
    "CL_CWB_OBJECT_CPRO============CP " in include                       
    "CL_CWB_OBJECT_CPRO============CM003 " in                            
    line 22:                                                              
    "Method "ADJUST_XVERSIONABLE_OBJECT" does not exist. There is, however,
    " a method with the similar name "GET_XVERSIONABLE_OBJECT"."          
    The include has been created and last changed by:                     
    Created by: "SAP "                                                    
    Last changed by: "SAP "                                               
    Error in the ABAP Application Program                                                                               
    The current ABAP program "CL_CWB_OBJECT=================CP" had to be 
    terminated because it has                                            
    come across a statement that unfortunately cannot be executed.        
    I've been looking for some Help if possible.........thanks in advance
    Julian Fajardo

    Hi Orlando  -
    Sorry to bother, but did you ever get a resolution for this issue?  We are seeing the exact same problem.
    Thanks!
    Abby

  • Pay Method does not exist.

    Hi,
    I 'm trying to load bank details like Bank name, Account No and etc., through HR_PERSONAL_PAY_METHOD_API. Before that i loaded data thru Assignment
    API.
    But i'm getting error 'Pay method does not exits'
    Any one help this issue.
    Thanks in advance.
    DK

    Please provide us exact error, so that we can take a look into and provide you the solution.
    Below is sample api parameters we need to provide...
    hr_personal_pay_method_api.create_us_personal_pay_method
    (p_validate => false
    ,p_effective_date => effective_date
    ,p_assignment_id => assignment_id
    ,p_org_payment_method_id => 123
    ,p_account_type => acct_type
    ,p_account_name => 'XYZ'
    ,p_account_number => acct_num
    ,p_transit_code => routing_num
    ,p_bank_name => 'PQR'
    ,p_bank_branch => 'ABC'
    ,p_percentage => ln_percentage
    ,p_amount => ln_amount
    ,p_priority => priority
    ,p_personal_payment_method_id => l_personal_payment_method_id
    ,p_object_version_number => l_object_version_number
    ,p_external_account_id => l_external_account_id
    ,p_effective_start_date => l_effective_start_date
    ,p_effective_end_date => l_effective_end_date
    ,p_comment_id => l_comment_id
    Please take a look and try once again. Let us know exact error.

  • Redirect if file not exist

    Hi,
    Testing if a file exists is not working, what do i wrong ?
    I use URL redirect from graphical admin (or manually change obj.conf)
    Configurations > [configuration name] > Virtual Servers > [virtual server name responding to url redirect] > [Content handling] > URL Redirects > New
    - Condition : ! -f $path ( this should check if the file exist ?)
    - Target URL: /testsite/test.html ( if not redirect to /testsite/test.html )
    - URL Type: Fixed URL
    The <virtual>-obj.conf looks like this :
    <If !(-f$path)>
    NameTrans fn="redirect" url="/testsite/index.html"
    </If>
    ....

    For the one who are interested in the solution, I found the problem :
    if -f $path .... is never working, because the engine does not know where to find. You have to define the physical path
    Solution :
    define a "variable" : for example "finddir" who is pointing to (for example) : "/opt/oracle/webserver7/https-xxx/wep-app
    now you can use :
    if -f $finddir$path
    or without defining a variable :
    if -f "/opt/oracle/webserver7/https-xxx/wep-app$path"

  • Trigger alert for file not existing in sender FTP server

    Hi all,
    I have a scenario file to file.In the sender FTP server a file is placed every 3hours.If file is present it will work in the normal file to file procedure.But when no file exists it should trigger an alert.
    Scripts on FTP server is not accepted as a solution.
    Can anyone let me know how this requirement can be achieved.
    Points will be awarded generously.
    regards,
    padma

    Hi
    But when no file exists it should trigger an alert.
    EMAIL can be used : assign an EMAIL ID to the corresponding user in the transaction SU01 and then set up SCOT and you can send emails when the ALERT is triggered.
    Once you have configure Alerts, you will get the Alerts into ALERT INBOX in RWB of the user. To also get the email, the following needs to be done,
    1. In SU01 -- Assign the Email ID for the Recipient of the ALERT.
    2. In , RWB>ALERT INBOX> PERSONALIZATION--> Time Independent Delivery and Email are selected.
    3. Finally, SCOT needs to be set up to send Emails. Check this for the same. You can ask your BASIS team to do this step.
    http://help.sap.com/saphelp_nw04/helpdata/en/23/1edf098ea211d2b47300609419ed29/frameset.htm
    Also, In ALRTCATDEF, go to SETTINGS--> CONFIGURATION. By default, the option selected is INTERNAL PROCESSING. Select the option SMTP FORWARDING AS XML and give the email id. This will enable you to send an email alert whenever an error occurs in XI.
    Also, to test your Alerts, execute the report RSALERTTEST in SE38.
    Also go throuh the following links...
    The specified item was not found.
    The specified item was not found.
    http://help.sap.com/saphelp_nw04/helpdata/en/3f/81023cfa699508e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/80/942f3ffed33d67e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/2b/d925bf4b8a11d1894c0000e8323c4f/frameset.htm
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3
    Configuring scenario specific E-mail alerts in XI-CCMS: Part 3
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2
    Configuring scenario specific E-mail alerts in XI-CCMS: Part-2
    Configuring scenario specific E-mail alerts in XI-CCMS: Part u2013 1
    Configuring scenario specific E-mail alerts in XI-CCMS: Part  - 1
    Regard's
    Chetan Ahuja

  • Method Does Not Exist When It Does!

    PLEASE HELP
    Ages ago, i was going to do a sonic advance 3 applet to put on my website, but I gave up.
    Now, i have decieded to try again, and am currently not getting very far
    I call soundplayer.SetDir(getDocumentBase(),"audio/au"); and it compiles ok
    BUT
    when i use it in the webpage, the java console reports to me the following error :
    java.lang.NoSuchMethodError: SoundPlayer.SetDir(Ljava/net/URL;Ljava/lang/String;)V
         at EggmanHammer3_3.init(EggmanHammer3_3.java:12)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    SoundPlayer :
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.util.*;
    public class SoundPlayer extends Applet {
    String dir = "";
    URL docbase;
    AudioClip currentmain;
    boolean playing = false;
         class SoundPlayerTask extends TimerTask {
              AudioClip playfile = null;
              SoundPlayerTask(AudioClip main) {
                   playfile = main;
              public void run() {
                   playfile.loop();
    public void SetDir(java.net.URL thebasedir,java.lang.String newdir) {
    dir = newdir;
    public void Play(String sound,boolean useintro,int length) {
         if (!playing) {
              AudioClip intro = getAudioClip(GetURL(sound,0));
              AudioClip main = getAudioClip(GetURL(sound,1));
              if (useintro) {
                   Timer timer = new Timer();
                   TimerTask task = new SoundPlayerTask(main);
                   intro.play();
                   timer.schedule(task,length);
              else {
                   main.loop();
              currentmain = main;
              playing = true;
    public void Stop() {
    currentmain.stop();
    public void Play(String sound,boolean useintro) {
         Play(sound,useintro,0);
    public URL GetURL(String sound,int mode) {
         URL theurl = null;
         String attempturl = dir + "/" + sound + "/";
         if (mode == 0) {
        attempturl += "Intro.au";
         if (mode == 1) {
         attempturl += "Main.au";
              try {
                  theurl = new URL(docbase, attempturl);
              } catch (MalformedURLException e) {
                  theurl = null;
         return theurl;
    }

    Although having proggrammed in Java for almost 3/4 of a year. What do you mean by 'clear the cache'
    And what the heck does that have to do with spliting one file into two
    P:S : I Have New Code
    Eggman Hammer - Version 3.9 : import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.net.URL;
    import java.net.MalformedURLException;
    import java.util.*;
    public class EggmanHammer3_9 extends Applet implements ActionListener {
    // START SoundPlayer CLASS
         class SoundPlayerTask extends TimerTask {
              AudioClip playfile = null;
              SoundPlayerTask(AudioClip main) {
                   playfile = main;
              public void run() {
                   playfile.loop();
    class SoundPlayer3 {
    String dir = "";
    HashMap audioclips = new HashMap();
    HashMap audiocliplist = new HashMap();
    boolean playing = false;
    AudioClip currentmain = null;
    AudioClip currentintro = null;
    public void SetDir(String newdir) {
    dir = newdir;
    public void Load(String sound,boolean useintro,int length) {
         HashMap themap = new HashMap();
         if (useintro) {
         themap.put("useintro","T");
         else {
         themap.put("useintro","F");
         themap.put("length",String.valueOf(length));
         audiocliplist.put(sound,themap);
         HashMap theaudiomap = new HashMap();
         if (useintro) {
              AudioClip intro = getAudioClip(getDocumentBase(),dir+"/"+sound+"/"+"intro.au");
              theaudiomap.put("intro",intro);
         AudioClip main = getAudioClip(getDocumentBase(),dir+"/"+sound+"/"+"main.au");
         theaudiomap.put("main",main);
         audioclips.put(sound,theaudiomap);
    public void Load(String sound,boolean useintro) {
         Load(sound,useintro,0);
    public void Play(String sound) {
         if (!playing) {
         HashMap audiolist = (HashMap)audioclips.get(sound);
         HashMap datalist = (HashMap)audiocliplist.get(sound);
         currentmain = (AudioClip)audiolist.get("main");
              if (((String)datalist.get("useintro")).equals("T")) {
                   Timer timer = new Timer();
                   TimerTask task = new SoundPlayerTask(currentmain);
                   currentintro = (AudioClip)audiolist.get("intro");
                   currentintro.play();
                   String theslength = (String)datalist.get("length");
                   int thelength = Integer.parseInt(theslength);
                   timer.schedule(task,thelength);
              else {
                   currentmain.loop();
              playing = true;
    public void Stop() {
    currentmain.stop();
    playing = false;
    public URL GetURL(String sound,int mode) {
         URL theurl = null;
         String attempturl = dir + "/" + sound + "/";
         if (mode == 0) {
        attempturl += "Intro.au";
         if (mode == 1) {
         attempturl += "Main.au";
              try {
                  theurl = new URL(getDocumentBase(),attempturl);
              } catch (MalformedURLException e) {
                  theurl = null;
         return theurl;
    // END SoundPlayer CLASS
    SoundPlayer3 soundplayer;
    public void init() {
    soundplayer = new SoundPlayer3();
    soundplayer.SetDir("audio/au");
    soundplayer.Load("Boss",true,3448);
    soundplayer.Load("FastBoss",true,3109);
    soundplayer.Load("FinalBoss",false); // NO INTRO - DOES NOT PLAY
    soundplayer.Load("FastFinalBoss",true,5512);
    soundplayer.Play("Boss");
    Button it = new Button("Hit Eggman");
    add(it);
    it.addActionListener(this);
    public void stop() {
    soundplayer.Stop();
    public void actionPerformed(ActionEvent e) {
    String title = e.getActionCommand();
    if (title.equals("Hit Eggman")) {
    EggmanHit();
    int hits = 0;
    public void EggmanHit() {
    hits++;
    if (hits == 4) {
    soundplayer.Stop();
    soundplayer.Play("FastBoss");
    if (hits == 8) {
    soundplayer.Stop();
    }

  • Can let *.ini file not exist ?

    I have buit an EXE application, multiple, there are an *.ini file, as I deleted it, but it will be created new one automatically, though it is empty, can I let my EXE lonely ? I don't like that INI file, any setting can reach ?
    thanks in advance.

    I don't know, maybe some option in the ini file.
    Anyway, why do you want to get rid of this file? It will not harm your application.
    It can also be useful in some cases. For example, if you create in the ini file a section like this one:
    [name_of_your_exe_without_.exe]
    HideRootWindow=True
    you will get only one window in the task bar (under Windows).
    This double window hurted my esthetical feeling more than a useless file.
    Paolo
    Paolo
    LV 7.0, 7.1, 8.0.1, 2011

  • "Build.xml file not exist"

    Hey Guys,
    i am currently involving in a servelet project (RendreX). i want to install apachi ant as a prerequirement. i am using windows 2003 server. I already downloded latest ant version and apache tomcat4.0. Also i have set all the class path,ANT-HOME(C:\ANT) and other relevent paths. But when i run ant command in the command prompt(C:\ANT>ant)will generate error state that "build.xml" file can't be found. Have i done any wrong thing here? Can anybody give a way that i can easily install apache ant on winows.
    It would be greatly appriciated if u can send me some advice to over come this problem.
    Best Regards
    Mohan

    build.xml is the default build file assumed by ant. You have to provide a build file to control what you expect from ant to do.

  • Application Detection Method not being honored.

    We have a deployment of a patch for Lync 2010.  In the Detection Method we are using the path for communicator.exe and the version number.  We have a few systems testing Lync 2013.  The paths are completely different so we don't understand
    why these clients are getting prompted for installation of the update.
    The Detection Rule is a as follows:
    David Jenkins

    The path is there but no communicator.exe.  In 2013 it's part of MS Office so it's in the Office directories.
    I'd expect if communicator.exe doesn't exist in the directory it would mean the check fails and the patch would not advertise.
    I think you're getting tangled up with the logic at play here...
    If this detection rule is on your patch deployment, the logic is this:
    "if this path/file/version is not detected, then I must deploy this patch to this machine"
    So, on your machines that do have Lync2013, they will also *not* have the unpatched Lync2010 binary, therefore, it will attempt to deploy the patch.
    You could consider applying another detection rule (maybe *AND* Lync2013 is not present), or, flip your detection logic around, and instead, detect for the unpatched Lync2010 binary (i.e. if version is less than 4.0.7577.4409) ?
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

Maybe you are looking for

  • How to change gtk theme dialog box button appearance when using tab?

    Hi, I'm using candido as my gtk theme and have noticed that when a dialog box pops up (Yes / No), it is extremely difficult to tell which option is highlighted. How do I change this appearance? I searched through the gtkrc and even used gimp to manip

  • I've just installed iTunes 11, and now my playback shuts off on Apple TV. Suggestions to fix?

         I've just updated my iTunes to 11, and now my playback shuts off on Apple TV after a few songs. My Apple TV is up to date and everything worked just fine yesterday. I've restarted everything and think I've checked all settings that might affect

  • Balance sheet values to COPA/PCA

    Hello all We need to allocate and take few Balance Sheet account values as well to COPA OR PCA for finer reporting, any pointers on this shall be very helpful? Thanks Balla

  • Selecting Row in JTable

    Dear friends, When i select a whole row in JTable it gets selected but the background color of the row selected does not change. i.e. Its not highlighted as in MS-Excel. How can i overcome this problem? Kindly reply Thanks.

  • Hide navigation area from Shopping Cart window

    Hi All, We are facing a strange issue in Shopping Cart Page.. From the POWL screen when we are clicking on "Display" button it is opening  com.sap.pct.srm.core.iv_shopprof iview in a new window. But all the navigation are still showing in the page. W