Programmatically change the "Start Outlook in this folder" setting

Is there a way (registry setting, gpo, or vbscript) to set the first folder that Outlook displays when launched? We have a special folder created on all user mailboxes and would like Outlook to display that folder first whenever someone starts
the application. 

Hi,
We can consider these two methods:
1. Deploy an Outlook shortcut file with the following target and remove the default shortcut:
"C:\Program Files (x86)\Microsoft Office\Office14\OUTLOOK.EXE" Outlook:Drafts /recycle
The parameter Outlook:Drafts in the example specify the folder Drafts to start with Outlook. You can change it to your own.
2. We may tried the macro solution mentioned in the following thread:
http://social.msdn.microsoft.com/Forums/en-US/outlookdev/thread/f32643fd-18dc-4554-9e31-91a60889ddfb/
Best regards,
Rex Zhang
TechNet Community Support

Similar Messages

  • Programmat​ically change the modified date of a folder

    Is there a way to programmatically change the last modified date of a folder?  The OpenG file info VI doesn't seem to work for a folder.
    Jim
    LV 2013
    Solved!
    Go to Solution.

    Please don't take this as criticism.  Often users will post in multiple locations and get varying levels of help from each place they posted.  This makes for a fragmented discussion where one group of individuals aren't collaborating with a separate group of individuals who are working on the same problem.  Posting in both places is fine, but I think what helps is having a link from one post to the other, so that individuals in one group can see the discussion taking place in the other.  This helps avoiding suggesting the same solution twice, and help come up with solutions neither group has come up with yet.
    At first glance the two posts looked similar enough that I thought this would be the case where the two groups can at least see the discussion taking place elsewhere.  If the two posts aren't related at all then I apologize for providing the link between them.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Need a script to change the start time of meetings set by someone else...

    Hello,
    I have a series of events that someone else created and the start time is off by 1 hour in my timezone. Is there a script available to run and change these times or do I have to delete them and manually create them myself?

    What I ended up doing John is just simply deleting the original events from iCal then I went in to Outlook and manually changed the start/stop times of each event then went into the IMAP Calendar folder, clicked on that event and added it to my iCal. Thats sort of the process I use for getting my events to from Exchange to iCal anyway (can't wait for Snow Leopard) but that did the trick for me for these few items that were off. Fortunately I don't expect any changes from the author.
    Thanks for responding!
    JimN

  • Change the start time of track 1

    Hi, fairly new with waveburner but spent about 2 hours going through all the windows so i've got a good idea about the layout and where everything is.
    Goal - to remove the 4 second silence at the beginning of the cd. There is a 2 second pause, and 2 seconds before the audio kicks in.
    I recorded a dj mix and imported from logic into waveform. I made my track edits, titled all my tracks, added my efx and automation adjustments and just burned my master cd. After further review there is a 5 second delay before the first track.
    I zoom into the timeline and it appears the audio sample is located and starts at 4 seconds. There is by default a 2 second pause for the first track. I have tried to change the start time on track 1, move the entire sample, and create a new track on the 5 second marker and delete the first track but i can't move get the first track to start at the 4 second point.
    Here is a screenshot - http://kennygrant.ca/wp-content/uploads/2010/01/kenny-screenshot.gif
    totally frustrated as the file i bounced did not have a 4 seconds of silence, so i'm totally confused.

    What I ended up doing John is just simply deleting the original events from iCal then I went in to Outlook and manually changed the start/stop times of each event then went into the IMAP Calendar folder, clicked on that event and added it to my iCal. Thats sort of the process I use for getting my events to from Exchange to iCal anyway (can't wait for Snow Leopard) but that did the trick for me for these few items that were off. Fortunately I don't expect any changes from the author.
    Thanks for responding!
    JimN

  • How to programmatically change the cell color of an ADF table ?

    Hi all,
    I have an ADF table with some fields on it. Depending on the value of a field named, say, "F1", I would like to change its background color.
    So far I can change the field color with this EL expression inside the InlineStyle table column property:
    font-size:medium; background-color:#{viewScope.myBean.setColor};
    where setColor is a bean function, in where I access the field "F1" via binding, parse its value, and return the right value - so far, so good.
    The bad thing is, the InlineStyle affects that field in all the rows of the table, while I would like to change only the field in the rows, which have that specific value in it.
    So for example having the rows:
    F1
    abc#1 ----> currently selected row
    cde#2
    efg#3
    I want to change the background color to all the F1 fields which have a "1" after the '#' and let the other "F1" row cells background color stay unchanged.
    But as you can imagine, the InlineStyle affect the "F1" background color in all the rows (assuming that the first row of the table is selected).
    So the question: how to access a single cell of a row in an ADF table, and programmatically change its background color ?
    So far I can iterate through the ADF table with:
    BindingContext bindingctx = BindingContext.getCurrent();
    BindingContainer bindings = bindingctx.getCurrentBindingsEntry();
    DCBindingContainer bindingsImpl = (DCBindingContainer) bindings;
    DCIteratorBinding dciter = bindingsImpl.findIteratorBinding("aTableIterator");//access the iterator by its ID value in the PageDef file
    RowSetIterator rsi = dciter.getRowSetIterator();
    System.out.println("rsi getrowcount = " rsi.getRowCount());+
    Row row = null;
    +if (rsi.getRowCount() > 0) {+
    row = rsi.getCurrentRow();
    System.out.println("row attr = " Arrays.toString(row.getAttributeNames()));+
    System.out.println("class : " row.getAttribute("F1").getClass().toString());+
    +}+
    +while (rsi.hasNext()) {+
    row = rsi.next();
    System.out.println("row attr = " Arrays.toString(row.getAttributeNames()));+
    +}+
    Regards,
    Sergio.

    Hi,
    I mean a specific cell within a row.
    Here are two pictures that show an ADF table with two rows and some fields on it:
    https://skydrive.live.com/?cid=7D3084D8BF755808&id=7D3084D8BF755808!107&sc=documents#cid=7D3084D8BF755808&id=7D3084D8BF755808!107&sc=documents
    bild_A is what I have, bild_B is what I would like. Note that:
    in bild_A the first row contain a yellow background color for the field F4 and an orange background color for the field F5. This is correct, because F4 has an "1" at the end of its string value, and F5 has a "3" at the end. So far so good.
    But the second row (again, bild_A) has also the fields F4 with yellow background color, and the field F5 with orange background color, even if the value in both fields is 0.
    What is should be, is shown in bild_B.
    The problem is that the solution provided affects all the cells of the column, while I need to change the background color of a single cell, and leave the other unchanged (see bild_B).
    I hope that clarify a bit :)
    Sergio.

  • Can I Programmatically Change the Active Group on a Hypertrend in DSC?

    I would like to know how to programmatically change the active group of a hypertrend in Labview DSC.  I saw a link which said it can be done in Lookout.  But in the DSC module, the active group is read only.
    I know of a hard way to do it.  I could save the hypertrend settings as xmlSettings to a temporary file.  The active group is one of the settings.  I could then change the active group in this text file to point to the new group and then reload the settings.  But this is not a clean way of dong it.
    Anyone know if there is a easy way?
    Solved!
    Go to Solution.

    I found a way to do it but its not very clean.  I dont know why there is not a function to change the current group.
    Here is how I did it.

  • How do you change the start-up screen

    Hi, as my nick states, I'm new here. I'm new to Nokia too and I got an 2760 (I know not the latest model) as gift. Since the battery from my old phone is almost ruined, I'm using it. What baffles me - in the manual I can't find how to change the start-up screen (Nokia) or better, how to block it. This was possible with my old one, but with this one?
    To make matters even more complex - it used to be a T-Mobile model (I'm no T-Mobile subscriber) and the menu differs even from the (very short) manual...
    I'm lost - can anybody help?
    Thanks!!
    Solved!
    Go to Solution.

    this cant be disabled ,check out the web for latest user guide
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Org Management - How can I change the start date of all the org units

    How can I change the start date of all the org unit objects and its relationships at one shot ?  I have created some 100 Org units with the wrong start date. Please suggest.
    Thanks in advance..
    Cheers
    Vijay

    Hello Archana,
    Thanks a lot... This has solved my issue...
    Cheers
    Vijay

  • In Work flow Iam enable to change the start event which I gave .

    In Workflow Iam enable to change the start event .The message is 'not modifiable'.

    Hi,
    1. If you are in QA or PRD system or rather in test client of development system, you will not be able to chage the event linkage as for these systems, client status is maintained as non-modifiable.
    2. second reason may be you are trying to change the event linkage when you are in diaply mode of transaction rather than chage mode !
    Hope this helps.
    Regds,
    Akshay

  • How can I programmatically change the fill color Settings of the Cwslide ActiveX Controls

    In design mode (Visual Studio 6.0),I want to programmatically change the fill color in properties of  cwslide  ActiveX Controls.what's the command?
    Attachments:
    cwslide.JPG ‏11 KB

    First, if you want to start getting beyond the basics with DAQ, you are going to have to stop using the DAQ assistant and do it with lower level DAQmx VI's.  There are hundreds of examples in the example finder.  You can even right click on the DAQ assistant and select open front panel.  That will create a subVI that you can open and see what is going on behind the scenes.  Do it.  I think you'll find the DAQ task is being recreated on each (though I'm not 100% of how the settings are established or maintained in each section of that subVI).
    The second problem is you have a bit of a race condition on iteration 0.  Those two DAQ property nodes are running at the same time.  So when you read the AI.Max, it may be happening before or after the AI.Max is set in your case structure.
    Third, make sure you wire up your error wires.

  • Howe how do i change the name of my home folder?

    I was completing a form and i noticed that it was commenting in a name that i have never used on this computer. did a little digging and discovered that this name is the name of my "Home" folder. The name is my wife's late husband's name!!!! LoL I have absolutely no idea how that possibly could have become the name of my computer since I have never used that name!!!! Well for some reason I can find absolutely no way to change it. Geez folks, did I somehow stumble in the Microsoft world? I thought Macs were easy! LoL. The name of my computer is correct. Now how do I change the name of my "home" folder, whatever the f**** that is????
    Thanks!

    See OS X: How to change user account name or home directory name

  • How can I change the start day of the week for weekly view?

    How can I change the start day of the week for weekly view?
    <P>
    This function is configured in the code in file <loadpoint>/CalendarServer/cal/uicust/en/main.html:
    <P>
    i18n['def first day'] = '1';
    <P>
    Note: 0 is Sunday, 1 is Monday, etc.

    Click system perferences below ur screen then click language&text and you just select ur peference langauge

  • Why does my LG Cosmos 2 calendar change the start time to the same as the end time?

    This does not happen all the time but often enough to be a pain.  When I enter a new appointment in the calendar sometimes the phone changes the start time to what I entered as the end time.  I thought maybe it was me but it happened twice today and I watched carefully to make sure I was entering it correctly.  I was and it is the phone making the change.  How do I fix this?

    Hi AyaniB
    It's been doing it for some time. It seems to be random in occurrence. The day I made the post it happened three times. Since then I have been watching carefully and it does not seem to have happened again. Am I missing any phone updates or anything? How do I check that?
    Thanks for your help.
    Dave Zamzow

  • Change the starting timecode

    Hi,
    I don't understand why and when I need to change the starting timecode? what is the reason for this?
    can someone explain to me?
    thx

    Because some broadcasters may require additional information before program start such as color bars, a slate, a countdown or a certain amount of black. You'd set the timecode start earlier to account for these elements. That's why program start is 01:00:00;00 instead of 00:00:00;00. Broadcasters often have specifications dictating exactly what should be shown at certain timecodes before the program starts.
    Also, in Europe program start is often 10:00:00:00 so it allows you to change it to meet European broadcast specs.

  • Changing the Start Page after loggin in the application

    How can we change the start page once i log in to the oracle apex application.I took the following measures to change the page number
    The default source code for the login page 101 process is
    wwv_flow_custom_auth_std.login(
    P_UNAME =&gt; :P2_USERNAME,
    P_PASSWORD =&gt; :P2_PASSWORD,
    P_SESSION_ID =&gt; v('APP_SESSION'),
    P_FLOW_PAGE =&gt; :APP_ID||':1'
    I tried to change the P_FLOW_PAGE variable to page 15 as below
    P_FLOW_PAGE =&gt; :APP_ID||':15'
    but still no luck,still the login page is redirecting me to page 1 only instead of page 15.Can any of the experts here please help.
    Thanks

    Hello
    You need to go to
    Home>Application Builder>Application 127>Shared Components>Edit Security AttributesThen edit the Home Link item.
    For example, mine is set to
    f?p=&APP_ID.:35:&SESSION.The result is that my application goes to page 35 after login.
    Hope this helps.
    Simon.

Maybe you are looking for

  • HKONG: Material Transaction Interface 의 data를 처리 Process들에 대한 정의

    PURPOSE Material Transaction Interface 의 data를 처리 Process들에 대해 정의하고자 함. Explanation 관련된 정보는 다음과 같습니다. Material Transaction Interface 의 data를 처리하기 위해서는 다음의 2개의 Process가 수행됩니다. - INCTCM (Process transaction Interface) - INCTCW (Inventory transactions w

  • How to remove blank pages from report

    Hi All i have a condition where i have to display the record only when trxn lines are available for that record ,inside my for each group condition i put the if condition having a count variable so if count is not zero then only the record will be di

  • Mac Mini and WoW???

    Hi all, Will a Mac mini run World of Warcraft smoothly?

  • Ibook clamshell battery issue

    Here's my issue: I was given a blue clamshell ibook to "fix" for a friend of mine who wants to use it to only surf the internet. They couldn't get it to turn on, it gave them a weird message and come to find out they had had it for a year and hadn't

  • Security Reset info not working?

    Hey there. So I forgot the answers to my security questions, and I did the send the info to my email thing, and it didn't work. Is there anyway I can retrieve my info? I have cards credited, and really would hate to lose them. Any suggestions?