Pages

Search

Microsoft Word - Is there a way to change the folder to which templates and the custom dictionary get saved?

Microsoft Word - Is there a way to change the folder to which templates and the custom dictionary get saved?


Is there a way to change the folder to which templates and the custom dictionary get saved?

Posted: 29 Mar 2014 02:50 PM PDT

Right now it is C:\Users\username\AppData\Roaming\Microsoft\Templates and C:\Users\username\AppData\Roaming\Microsoft\UProof.  Is there a way to change the setting for this?

style separator stops heading 1 numbering

Posted: 29 Mar 2014 02:12 PM PDT

Hello,

I am another student who needs to figure out the heading and TOC issues.

My school is asking me to include the following headings for level 1:

CHAPTER 1

INTRODUCTION

But the TOC needs to only list:

CHAPTER

1. INTRODUCTION..............................xyz

2. CHAPTERTITLE 2.............................abc

Therefore I have tried to make a separate style for the word "CHAPTER" and then combine "1 INTRODUCTION" via a style separator.

At the point where I try to combine the 2 lines the numbering in the heading disappears. The TOC however still shows it. Also the sub-chapters are still numbered correctly. So it seems to count as a new ain chapter number, it just isn't displayed.

Any thoughts?

Any better suggestions on this topic?

Thanks,

Markus

Annoyed

Posted: 29 Mar 2014 01:16 PM PDT

ALLSOULS NOVENA

The Prayer for the Holy Souls

O God, the creator and redeemer of all the

faithful, grant to the souls of thy servants

and handmaids departed, the remission of

all their sins; that through pious supplica-

tions they may obtain the pardon they have

always desired.  Who livest and reignest

with God the Father in the unity of the

Holy Ghost, God, world without end.  Amen.

Copyright 1947 Daniel A. Lord, S.J.

This the problem my computer my program word all of a sudden started placing lines all over my document so I need to know how to delete them.

I would so appreciate your time! thx

Office on Demand Not working

Posted: 29 Mar 2014 12:36 PM PDT

Does any one know when Office on demand will be working again for Office 365 Home Premium users.

M/S Works Issue

Posted: 29 Mar 2014 09:22 AM PDT

When creating a document, I move to next line in document, it goes to a capital letter. How do I stop this?

convert works 2001 documents to word 2014

Posted: 29 Mar 2014 09:13 AM PDT

I have been using works word processing to create documents on a personal template.  the software is either works 2001 or the works suite that came installed on my xp operating system computer that i purchased in 2004.  technologically under skilled and heavily right brained, i need help in learning about the transfer of files.  is it possible, how do i do it if it is....and lastly, is there a works available that is compatible with windows 8.1 and office 2014?  thanks in advance.

Page Layout tab

Posted: 29 Mar 2014 08:31 AM PDT

The Page layout tab is missing from my Word 2013. How do I get it back on ribbon.  Have tried to customize the ribbon and where the page layout tab should be it is blank.

A style I've created is not showing up on the style pane

Posted: 29 Mar 2014 08:15 AM PDT


I've typed something, selected it, clicked on New Style button, (found on the styles pane (Ctrl+Alt+Shift+S)), selected the List format, baptized it "Titulo I", customized the style, and gave OK.


This newly created style applied itself alright to my selection, shows up in the Apply Styles... listing (Ctrl+Shift+S), but does not appear on the Style pane.


Why ?



In manage Styles:

  • All are permitted on the Restrict tab
  • All are shown on the Recommend tab
  • The newly created style Does show up in Edit tab


Once again, microsoft: Why !?



And by the way,

Why I cannot delete the Heading 1 and 2 from the style pane, when there is only In use style marked. This style is definitely NOT in use.


Disappearing PlaceholderText in Word Content Controls and how to fix them

Posted: 29 Mar 2014 08:05 AM PDT

Hi,
I have recently started using ContentControls in Word 2013.  They are pretty useful and the following pages have been a great help:
http://gregmaxey.mvps.org/word_tip_pages/content_controls.html
http://gregmaxey.mvps.org/word_tip_pages/modify_cc_placeholder_text.html

But Content Controls are prone to a few nasty bugs, see http://shaunakelly.com/word/word-development/placeholders-in-word-content-controls-for-developers.html

The main one I've found is that the Content Control's PlaceholderText object can sometimes disappear.  In the real world, this means that if you clear any entered text from a Content Control, it will display five spaces instead of the placeholder text you original entered at design time.  I've found this bug to be particularly prevalent when Content Controls are placed in Headers or Footers.

To fix this issue I would like to propose the following solution:

Const bIncludeSquareBrackets As Boolean = True


Sub RepairContentControlPlaceHolderText()
' This procedure checks for missing PlaceholderText objects within each ContentControl.
' If a missing PHT object is detected, a temp Content Control is added to the start of
' the document and a copy of its PHT object is made which is then applied to any CCs
' with missing PHT objects.  Then the PHT.Text is set to be the same as the CC's Title.
'
    Dim cc As ContentControl, ccTemp As ContentControl
    Dim phtNew As BuildingBlock
    Dim sec As Section
    Dim ftr As HeaderFooter, hdr As HeaderFooter
    Dim rng As Range
    Dim lnRepCount As Long
   
    On Error GoTo ExitPoint
   
    Debug.Print vbCr & "Starting repair of Content Control Placeholder Text"
   
     'Insert a temp CC and copy its PHT object:
    Set rng = ActiveDocument.Range(Start:=0, End:=0)
    Set ccTemp = rng.ContentControls.Add(wdContentControlText)
    If Not ccTemp.PlaceholderText Is Nothing Then
        Set phtNew = ccTemp.PlaceholderText
    Else
        Exit Sub
    End If
    ccTemp.Delete
   
     'Find any CCs with broken PHT objects and add in the phtNew object,
     'then reset the pth.Value to the correct string:
    For Each sec In ActiveDocument.Sections
         'FOOTER:
        For Each ftr In sec.Footers
            If ftr.Exists Then
                For Each cc In ftr.Range.ContentControls
                    If cc.PlaceholderText Is Nothing Then
                        If AddPhtToCc(cc, phtNew) Then lnRepCount = lnRepCount + 1
                    End If
                Next cc
            End If
        Next ftr
       
         'HEADER:
        For Each hdr In sec.Headers
            If hdr.Exists Then
                For Each cc In hdr.Range.ContentControls
                    If cc.PlaceholderText Is Nothing Then
                        If AddPhtToCc(cc, phtNew) Then lnRepCount = lnRepCount + 1
                    End If
                Next cc
            End If
        Next hdr
    Next sec
   
     'DOCUMENT BODY:
    For Each cc In ActiveDocument.ContentControls
        If cc.PlaceholderText Is Nothing Then
            If AddPhtToCc(cc, phtNew) Then lnRepCount = lnRepCount + 1
        End If
    Next cc
   
ExitPoint:
    Debug.Print vbCr & lnRepCount & " Content Controls were repaired."
    If Err.Number <> 0 Then Debug.Print "Exited due to error: " & Err.Description
End Sub

Function AddPhtToCc(cc As ContentControl, phtNew As BuildingBlock) As Boolean
' Function to insert the parsed PlaceholderText object into the parsed
' ContentControl object.  The PHT.Value is then set to the same as the
' ContentControl's Title.  If the constant bIncludeSquareBrackets has
' been set to True, the placeholder text is enclosed in square brackets.
'
' Function returns True if the PHT object was successfully replaced.
'
    Dim strA As String, strB As String
   
    If bIncludeSquareBrackets Then
        strA = "["
        strB = "]"
    End If
   
    Debug.Print vbCr & vbTab & "'" & cc.Title & "' is missing a PlaceholderText object!"
    cc.SetPlaceholderText BuildingBlock:=phtNew
    If Not cc.PlaceholderText Is Nothing Then
        cc.SetPlaceholderText Text:=strA & cc.Title & strB
        Debug.Print vbTab & "PHT.Value updated to: '" & cc.PlaceholderText.Value & "'"
        AddPhtToCc = True
    Else
        Debug.Print vbTab & "Could not fix PlaceholderText object in " & cc.Title
    End If
End Function

Cheers
Rich

PS. I also recommend the add-in from http://gregmaxey.mvps.org/word_tip_pages/cc_var_bm_doc_prop_tools_addin.html.  Thank you Greg and Graham!

Character spacing / line density in DOC saved as DOCX changes slightly

Posted: 29 Mar 2014 06:04 AM PDT

Hi,

I opened my Resume which a consulting company formatted for me as DOC.  I am using Word 2013.  The first thing I did was save the DOC as DOCX, and was prompted some minor formatting changes may occur.

The change I noticed is DOCX tends to fit a few more words per line than DOC did.  The paragraphs are fully justified in both versions, but the word spacing is "tighter" in the DOCX version.  So the DOCX fits a few more words per line and a few more lines per page.

The result is the page looks a little "denser" than before.  Since it's my resume, I'm not sure if prospective employers will like the "denser" look or not :-)

Is there a way in DOCX to control the word/ line density so it behaves more like the same file that was saved as DOC?

Thanks.

Office Word Program

Posted: 29 Mar 2014 05:09 AM PDT

How I can to restart Word Document Program in my PC?

OneDrive nested folders problem on Office for iPad

Posted: 29 Mar 2014 12:02 AM PDT

For some reason I can't explain, all three iPad Office apps show the contents of my "School" folder on OneDrive in the same folder that the "School" folder itself is stored in. For example, the "School" folder is stored in the "Documents" folder and "Document X" is stored in the "School" folder. When I open the "Documents" folder in my iPad Office apps, "Document X" appears right next to the "School" folder, not in it. I have tried signing out and in, deleting Word and reinstalling it. The only solution, oddly enough, was to rename my "School" folder to anything else. Suddenly everything looked fine. Once I switched it back, it was screwed up again. I suppose the problem is fixed, but I would really like to be able to name the folder my school files are stored in "School". I can't imagine what is causing this. I have had problems with deeply nested files on OneDrive before, but I have more deeply nested folders than those in my "School" folder that work just fine. Does anyone have any ideas?

Word for iPad won't activate

Posted: 28 Mar 2014 08:20 PM PDT

I downloaded Word, Powerpoint and Excel for iPad yesterday and purchased a 365 Home Certificate. I tried to activate Word and am always given the message "Cannot Activate. This account doesn't have a paid Office 365 subscription." Then I tried activating Powerpoint and Excel -- knowing if you activate one, they're all activated -- and those won't activate either.

I have the receipt and Order ID from Apple and their phone support has been great, including today, Saturday. But ultimately, they can't help, because it's up to the developer (Microsoft). Everything is fine on the Apple side.

I have done everything possible, from rebooting, to reinstalling, to resetting my network connections, without success. So I tried to call Microsoft Support (through a link Apple kindly supplied) only to find they don't work on weekends.

I've searched the internet for solutions, but the program is so new that I appear to be the only one so far with a problem -- or maybe no one's buying a 365 Home subscription for the first time.

Any thoughts that don't include all the things I've already done would be appreciated.

Thank you,

Don

Windows 8.1 and Office 2013

Posted: 28 Mar 2014 07:46 PM PDT

My Windows 8 computer updated to 8.1, but now I can't open any of my Microsoft Office 2013 components.  When I click open the circles and then does nothing.  When I try troubleshooting it says that WinWord is not compatible.  Does that even make sense?  And how do I get into Word.  I'm taking online classes and I need to get into my files as well as do other writing for class.  Any help?

How to make new entry to dictionary autocorrect all same in document?

Posted: 28 Mar 2014 07:34 PM PDT

A new word is added to dictionary.

Can Word automatically correct all same?

Say i type "gov." and Word doesn't like it.

I add "gov." to dictionary but there are 50 more "gov." in the same document.

Can Word auto-correct them?

deleted office 2013 by mistake

Posted: 28 Mar 2014 06:10 PM PDT

I accidentally deleted office 2013. I purchased the home and student product from best buy and have the product code. How do I down load a new copy?

In Office 2013, text selection with a mouse is too sensitive.

Posted: 28 Mar 2014 03:17 PM PDT

In Office 2013, text selection with a mouse is too sensitive. If I want to select a letter, it selects the entire word or sentence. If I do not position the cursor just right, it will select the previous word or sentence instead of the following text segment.

This makes me have to do it again. It wasn't like this in Office 2010, and it's really annoying. Particularly if you work fast and select something to delete, you could delete the wrong thing. I first noticed this when Outlook.com updated over a year ago, and now the behavior has spread to Office 2013.

It's so bad, I often have to resort to keyboard selection shortcuts and abandon the mouse altogether. Basically, it sucks.

Is there any way to adjust this, or tell the Office team??

Microsoft Works - international/pontuation characters

Microsoft Works - international/pontuation characters


international/pontuation characters

Posted: 29 Oct 2008 12:52 AM PDT

Hi Mike,

Great info but I think that I might have missed a few details.

My O.S. is Vista Home Premium and what I would like to be able to do is to
insert the pontuation in Works in the same way when I use Word in XP. For
example, by means of pressing the CTRL + SHIFT + ~ + o and I would obtain an
o with ~, or by pressing CTRL + , + c and would obtain a c with a lower ,.

Hope you dont mind me adding your home page to my favourits b'cos it will be
very helpful for my studies in computer networking to obtain answers to
doubts and projects.

Many thanks
--
Oscar


"Michael Santovec" wrote:
 

MS Works Word v. 9

Posted: 22 Oct 2008 10:01 PM PDT

Thank you, Ken, but it doesn't work. When I do that the spacing under
paragraph already shows it to be single, even though it is double.

"Ken" wrote:
 

Sorting in Works Spreadsheet 7.0

Posted: 20 Oct 2008 08:18 PM PDT

Do You type the digit grouping symbol (space) yourself ?
You don't have to.
Works will apply automatically the format you selected in the menu Format >
Number

"YubYub41" <microsoft.com> wrote in message
news:com... 

Microsoft Works calendar 8.5

Posted: 20 Oct 2008 07:13 PM PDT

Do you mean moving the calendar?

The Works Calendar is a shared system wide file and cannot be moved.

You can backup the calendar

Works: How to back up Calendar information in various formats
http://support.microsoft.com/?kbid=246703

--

Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm



"Catherine A." <Catherine microsoft.com> wrote in message
news:com... 


Saving paper-size setting as A4

Posted: 19 Oct 2008 10:27 PM PDT

You are welcome Ken.
--
Kevin


"Ken" <net.au> wrote in message
news:%phx.gbl...
| Thanks, Kevin!
|
| - Ken (in Oz)
| -----
| Kevin James wrote:
| > Hi Ken,
| >
| > Create a new template with the paper size that you require.
| >
| > Save As the (default) template to open on Works application startup.
| >
| > http://support.microsoft.com/kb/142326
| >


Vista 64 OS and Microsoft Works 9

Posted: 18 Oct 2008 12:46 PM PDT

Thanks for the feedback. The documentation suggested that it should
work, but it's nice to know that someone has actually done it.

--

Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm



"Gerkinman" <microsoft.com> wrote in message
news:com... 

Help with works formula/function...Please

Posted: 17 Oct 2008 09:02 AM PDT

You are welcome, and thanks for posting back.

--

Mike - http://pages.prodigy.net/michael_santovec/techhelp.htm



"Michael Cannon" <microsoft.com> wrote in
message news:com... 

Works 9, Not Responding

Posted: 16 Oct 2008 03:42 AM PDT



"Gail" <microsoft.com> wrote in message
news:com... 

Try typing in NotePad.
If you have the same problem, I would suspect a keyboard driver problem.
--
Ronald Sommer

conversion from works 4.x

Posted: 15 Oct 2008 07:13 AM PDT

Hi, "patti_p_99"

I have Works version 6.0 and it will open Works version 4 files.

The only solution I know is to find a program that will open your old Works
files, then use it to convert those files to a format that your new programs
will open.

Ken

"patti_p_99" <microsoft.com> wrote in message
news:com...

| I have the same problem. I do have the old MS Works disk but it keeps
saying
| it's corrupt, etc. I am running XP and Excel 2003. If I order the disk
that
| you showed the link for and load it on my computer, will everything work
| then? I desperately need to get my information off of my backup discs
that
| have wdb. extensions, and my son deleted the MS Works program thinking I
| didn't need it any longer since I was running Excel now. But, Excel
refuses
| to open it. Something about 16 bit . . .not supported. Make any sense to
| you? Greek to me. Thanks for any advice you can offer.
|
| "Ken" wrote:
|
| > Do you still have the old Works 4 program disk, if so, install it on
your
| > new computer. Then use it to convert your 4.x files to the version you
| > need.
| >
| > Discovered the following via google....
| >
| > Microsoft Works 4.5 OEM Full Version $9.99
| > http://www.dirtcheapsoftware.com/microsoftworks.html
| >
| > Ken
| >
| > "Luchki" <microsoft.com> wrote in message
| > news:com...
| >
| > | Hi there
| > |
| > | I still have old Works 4.x files (.wps) and need to view them or
convert
| > | them into .doc or .pdf. I use WinXP and MSOffice 2003. Does anybody
have
| > a
| > | solution? I couldn't find an office converter for these old files.
| > | Thanks for your help!!
| > | Luchki
| >
| >

Storage requirements

Posted: 14 Oct 2008 06:45 PM PDT

Hi Jim,

Works is unlike Access, you do not specify character length in Works.

However, Works uses only the space required to store actual characters.

HTH,
--
Kevin James



"Jim Cassilly" <rr.com> wrote in message
news:phx.gbl...
| If a field in WorksDB is defined as 50 char long,but only 20 char are used,
| does WorksDB reserve 20 or 50 characters? (Access only reserves 20 char in
| this situation.)
| Thank you.
|


How do I make the table wrap onto the next page?

Posted: 13 Oct 2008 08:16 AM PDT

shannon wrote: 

What is the addition you made to Works? Perhaps it is interfering.
 
[snip] 
[snip]

Perhaps you could make two tables, one on each page, and divide your
table's content between them?

Which version of Works are you using?

Help please.......lWorks 9 word processor crashes when pasting

Posted: 11 Oct 2008 01:07 PM PDT

The problem with copy and paste from a web site is not too unusual. The
common solution is to open an instance of notepad.
Copy paste from the web page to notepad. Then copy paste from notepad to the
program that will use the information.

Not elegant, but it usually works.

"Pierrot" <microsoft.com> wrote in message
news:com... 


Microsoft CRM - Custom Field problem/ map field alternative

Microsoft CRM - Custom Field problem/ map field alternative


Custom Field problem/ map field alternative

Posted: 30 Nov 2004 07:27 AM PST

You can modify the mappings via deployment manager. The picklist values are
changed by modfiying the field properties on the appropriate window.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Tue, 30 Nov 2004 08:33:08 -0800, "Gautam Sachdev" <com>
wrote:

Thanx Matt.
Could you please furnish some details:

1.) How to map the fields?

2.) I guess you mean that the code should be identical in the SQL, if so,
how to go ahead with that?

Thanks.

"Matt Parks" wrote:
 

Bandwidth usage of MS CRM

Posted: 29 Nov 2004 04:55 PM PST

Hi

We have a site that is over two diffrent locations, linked with a 128 kb
line, it is digital (if it is dailup I am guessing your line will be
analog?) so that does make a bit of diffrince, but on that line it carries
ad traffice, exchange traffic, and 2 voice over IP channels. The latency
between the sites is approx 200 ms. The users are finding that on average I
page takes about 2-5 seconds to load completley, during the day and at night
quite a bit faster. We are also synchronizing the outlook clients over that
line, and that we got working after some tweaks to the line, and generaly
just optimizing everything. But like John says 30kbs and it might be
useable. If it was me personaly, and I wanted to update our CRM from a
client, 15 kbps will probably be okay because if it takes long to open a
page it does not really matter because I just need to capture a phone call
or email, but if I need to use the system, eg find out what my collague has
done with that one call or where the pruposal is in the sales track, then 15
kbs will not be usable. I have quite extensive IIS logs over the 128 kbps
line, and could send them to you? Sadly I do not have the line stats, as it
is rolled up into 1 hr avarges and that will not help you for your needs.

Best Regards
Rihan
"John O'Donnell" <com-nospam> wrote in
message news:%phx.gbl... 


CRM DC/AD emergency!

Posted: 29 Nov 2004 12:29 PM PST

I just wanted to say that my problem was solved by MS tech support. I called
in an incident and the problem turned out to be a known issue when running DC
on a Windows 2000 server and CRM on a Windows 2003 server. There is a hotfix
for this problem that can be obtained from tech support.

Once the hotfix was installed the problem went away.

"Razorback" wrote:
 

Migration from ACT to CRM via Outlook with Business Contact Manage

Posted: 29 Nov 2004 10:46 AM PST

I have done migrations from ACT to CRM two different ways:
1) Bought a $100 utility to export ACT to Access. This allowed me to export
each individual ACT table into a separate Access table. I then re-created the
relationships (had to create a new index column in some cases). I then
up-sized the Access database to SQL and used the CDF migration tool to
migrate that db into CRM. I'm not sure why, but even though I had maintained
the Notes/History as I created the Access database and then the SQL database,
they did not migrate into CRM. So if this is important to have, I would go
with Scribe. That's what I did the second time.
2) Scribe: It is quicker than the ACT to Access to SQL to CDF method, though
it is not as straightforward to learn as their marketing material makes it
sound if you don't have any database background. If Notes & History are
important to you, I would go this route and set a day or two aside to go
through the lessons in Scribe and do a sample migration.

There is also the third option: Microsoft Business Solutions has migration
services that are not that unreasonably priced. If your ACT database is not
too customized, they can usually do a pretty quick job, and you'll know that
they are going to get it right. If your company wants quick and right, and
has $2500-$3500 (depends on size of ACT database) check them out.
(mbs.microsoft.com). If this is not something you are going to do on a
regular basis, you may want to go this route rather than invest the time and
money in learning something you are only going to use once.

Good luck! And congratulations on getting out of ACT!

"Nemo" wrote:
 

interrested in CRM have some implementation questions

Posted: 29 Nov 2004 10:31 AM PST

I would be interrested yes, respond to bigbadbruins ( A ) yahoo (dot) com
substitute the "." and the @ where appropriate.

or post an email addy for me to contact you thanks.





"Steve Chambers" <microsoft.com> wrote in message
news:com... 


Can not send e-mails from CRM web interfacer

Posted: 29 Nov 2004 08:16 AM PST

Hey Guys, ready !

The problem is that, I don´t know why!, we were installing the router in a
new bew site and not in the default. in the installation I select the
default web site and READY! No more Errors

Thanks a lot for your patience and your help!

Take Care and thanks again

RC


"Matt Parks" <com> wrote in message
news:com... 


Installation of Crystal Reports says that 9.2.0 detected, needs 9.

Posted: 29 Nov 2004 08:09 AM PST

Peter,

Thanks for repling.

At first I didn't understand your response, but after I dug out more info on
CRM and its report writer I realized that I had misunderstood what was
installed and what was included. I had thought that a copy of CR was on that
other CD and needed to be installed. I didn't know that the Crystal
Enterprise was automatically installed and that the other CD had the Crystal
Enhancements used to make a full version of Crystal Reports loaded on a
client machine able to understand the CRM database.

Thanks.....


"Peter Lynch" wrote:
 

CRM "multiple instance"

Posted: 28 Nov 2004 11:49 PM PST

It all depends. As far as "supported" goes, it's 1 isntall per domain.

However, you can have multiple installs if you use seperate AD OU's for each.
The issue is the Excahgne router. As Merjn pointed out, the Exchange Router can
only route to a single CRM install.

As for the CRM App server itself, it can only "connect" to a single CRM database
and you cannot install multiple versions on the same server.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Mon, 29 Nov 2004 09:46:22 -0800, "Steve Chambers"
<microsoft.com> wrote:

I don't think you can have multiple instances of different CRM systems on one
LAN, unless you have multiple AD's in a Forrest and multiple SQL Servers,
etc.

You have have multiple CRM Appliation servers, but they all point to the
same CRM server and platform.

Steve C.

"Merijn van Mourik" wrote:
 

Sharepoint and SPS, project server and CRM?

Posted: 28 Nov 2004 10:32 AM PST

Put Sharepoint and CRM on different servers if you have the option. You can
put them on the same but they fight it out over the default website and it's
a big pain.

"Steve Chambers" wrote:
 

Reporting Services CRM Feature Pack

Posted: 27 Nov 2004 09:09 PM PST

I've seen that Object reference error during installs on several occasions.

I do know that there is an issue running SQL Reporting Services on the same
server with CRM because of conflicts with Crystal.

In general, my experience with the object reference error has to do with
security related to how the install communicates with SQL and the CRM
platform layer to get data it needs to configure things after the actual
install.

Sorry, I can't be more helpful.

Steve C.

"Merijn van Mourik" wrote:
 

keep customiasation and clean up data...

Posted: 27 Nov 2004 01:27 AM PST

Jason is right in that it will be faster to export your custom then reinstall.

MBS has a tool that will recreate the default admin role for you, but you
will have to pay for support or burn a case to get them to use it. In the
future - never change that role..ever...ever...ever...really, never do it.
Did I mention not to modify that role....

Good luck.

Steve C.



"Jason" wrote:
 

Service objects in Sales Standard or Professional

Posted: 25 Nov 2004 05:35 AM PST

Thanks a lot!

But what about priveleges? I would have to have privilege Read for Case to
view the cases...is it possible to set up such privileges in sales license?

Regards
Rafal Perwejnis

"Matt Parks" wrote:
 

MS CRM retreiving data from an AS/400?

Posted: 24 Nov 2004 07:52 PM PST

Bill,

We are urrently implementing an integration solution for a client between their
AS/400 ERP system and CRM. We are doing any "real-time" lookups between the
systems, but we are pushing data back and forth between the systems via BizTalk.

As Stephen mentioned, there are ODBC drivers that should allow yu to query
AS/400 data from a .Net app that could be configured to run as an ISV add-on to
CRM.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Thu, 25 Nov 2004 14:52:28 +1100, "Bill K." <com.au> wrote:

I'm curious about interfacing Microsoft CRM to an/any ERP package running on
an AS/400, perhaps using MS HIS, but there are other middleware connectors
available. I don't necessarily need the link to update AS/400 records from
MS CRM, but would like to retrieve account information on-demand from the
AS/400 for populating some of the data fields in the client interface of MS
CRM. The purpose being to add the MS CRM into an existing AS/400 ERP
environment.

Any pioneers out there with some experiences to share?

Cheers,

Bill Kirkpatrick MBA
Business Solutions Advisor
Group Next
Sydney, Australia



MIIS or ADC? (Lotus Notes + Exchange 2003) - Microsoft Exchange

MIIS or ADC? (Lotus Notes + Exchange 2003) - Microsoft Exchange


MIIS or ADC? (Lotus Notes + Exchange 2003)

Posted: 21 Jun 2006 04:18 AM PDT

Thank you very much for your help
(both systems, Exchange and Lotus, are running with windows 2k3)

If I have understand well, using "Lotus Notes Connector", the users of each
mail system could see (and therefore use to "send to",...) in their
respective adress lists the users located in the other mail system, isn't it?

My doubt is that Microsoft always says to use "Lotus Notes Connector" in the
coexist period in a migration project between Lotus and Exchange, but for
permanent coexistence they always says to use MIIS.

Do you know the reason for this? There is any problem with the permanent use
of the connector?

Thanks in advance

Exchange System Attendant services doesn't start

Posted: 21 Jun 2006 03:30 AM PDT

Thx for the reply
but we already tried that kb article whit no result we also trieded this
articles
http://support.microsoft.com/default.aspx?scid=kb;en-us;283257
http://support.microsoft.com/default.aspx?scid=kb;en-us;830418
http://support.microsoft.com/default.aspx?scid=kb;en-us;295620
http://support.microsoft.com/?kbid=870918
http://support.microsoft.com/?kbid=833395

but the problem is still there




"Mark Arnold [MVP]" schreef:
 

Disable users=delete mailboxes?

Posted: 21 Jun 2006 01:37 AM PDT

Thanks for the reply, I have however not deleted the accounts but only
disabled them just to make sure to keep the mailboxes.
Still it is not possible to access them from Outlook nor the mounted mailbox
drive in Exchange 2000.
Does the advice below apply to Exchange 2000? All options are grayed out
when I right click the mailbox in System Manager.

/Regards Anders


"Andy David - MVP" <com> wrote in message
news:com... 


Internal vs. external email addresses

Posted: 20 Jun 2006 02:14 PM PDT

Thanks for the reply. In the default recipient policy (the only one) we have
only two types defined, an X400 and an SMTP set to "@here.local". I can't
define a policy for our external addresses; not all users have one, and the
ones there are have no particular pattern to the assigned name (the ISP set
some of them up, and we can't change them.)

On the users with an external address, I added an SMTP address manually in
ADUC. I then had to uncheck "Automatically update based on recipient policy"
and make the external address their primary SMTP address.

Is there a better way of handling individual addresses? Thanks again!

"Mark Arnold [MVP]" wrote:
 

Missing email messages after reboot

Posted: 20 Jun 2006 06:09 AM PDT

Absolutely positive they where not delivered. A couple where going to me and
I saw a couple of others that I new where important and asked the users if
they got them and they did not. We only have spam enabled on the gateway.

"Mark Arnold [MVP]" wrote:
 

priv1 data file size

Posted: 19 Jun 2006 07:11 PM PDT

Already ran offline defrag which increased the file size not decrease. Got
all of the errors out of the second exchange server and it seems to be
running now. How can I be sure it it running sp2?

"John Oliver, Jr. [MVP]" wrote:
 

Outlook/Exchange network timeout problems

Posted: 19 Jun 2006 05:19 PM PDT

Can you ping your Exchange Server by FQDN through the VPN?

--
John Oliver, Jr
MCSE, MCT, CCNA
Exchange MVP 2006
Microsoft Certified Partner

"Jeff Anonymous" <com> wrote in message
news:phx.gbl... 


exchange sp2

Posted: 19 Jun 2006 04:58 PM PDT

Aloha whatever,

Have you already carefully reviewed this article: http://support.microsoft.com/kb/813051/

-Ben-
Ben M. Schorr - MVP
Roland Schorr & Tower
http://www.rolandschorr.com
Microsoft OneNote FAQ: http://www.factplace.com/onenotefaq.htm
 


Hide user from GAL ??

Posted: 19 Jun 2006 02:21 PM PDT

His question may be how do I hide a user but the end problem may
actually be how do I hide these 2000 users. Since another poster already
gave the GUI response, I indicated how to do it without the GUI.

--
Joe Richards Microsoft MVP Windows Server Directory Services
Author of O'Reilly Active Directory Third Edition
www.joeware.net


---O'Reilly Active Directory Third Edition now available---

http://www.joeware.net/win/ad3e.htm



Jim wrote: 

Connect to the server failed. Error: 10061

Posted: 19 Jun 2006 02:04 PM PDT

When I use smtpdiag.exe after the test "Checking remote domain records." and
the "Checking MX servers listed for com".

If I do the diagnose on the exchange-server itself. The error is 10060
instead of 10061.

Thanks,
Ricky

"John Oliver, Jr. [MVP]" wrote:
 

Contacts in GAL

Posted: 19 Jun 2006 11:46 AM PDT

Something occured to me. Perhaps the ldap search filter being applied for
my GAL is not the defalt search filter. Could someone who has never mucked
around with this filter please post it?

Jeff

"FrodoBaggins" <com> wrote in message
news:%23CS$mt$phx.gbl... 


Exchange 2003. No space due logs. Backup failing.

Posted: 19 Jun 2006 10:12 AM PDT

Hi,

When the stores are in a clean shutdown state you may try to move all
logfiles to a network drive and then mount the stores. The stores should
mount without the need of the logs.

If the mount fails look in the application logs for clues

Leif

"AlphaDX" <microsoft.com> wrote in message
news:com... 


help export exchange 2003 directory and import as contacts in ex 2

Posted: 19 Jun 2006 08:00 AM PDT

That looks very useful. i will reserach it further.

"strongline" wrote:
 

Unable to move Routing Group Members

Posted: 19 Jun 2006 04:23 AM PDT

Ok. So my next troubleshooting step would be to open up ADSIEdit and see if
there aren't any lingering connector objects that don't show up in the ESM.

"MarkG" <microsoft.com> wrote in message
news:com... 

Separate people ho have same names

Posted: 19 Jun 2006 01:41 AM PDT


You can set a custom attribute so that you can set a filter rule for
all your customers........

Primary DC in crash exchange don't work

Posted: 19 Jun 2006 01:28 AM PDT

Do I read well that you enter the ISP DNS server(s) in primary and/or
secondary DNS settings on server and or workstation(s)? If yes, never do
that. Your AD relies on it's own DNS. I hope you installed and configured
the DNS service as well on the second server. If not, you will have a lot of
extra work and then it's better to grab the yellow pages and find a
AD/Exchange IT engineer a.s.a.p. (use DNS forwarders, ISA server or other
proxy servers to access Internet..)

--

Regards,

Menko den Ouden
MCSE+I+Messaging


"pupo" <it> wrote in message
news:phx.gbl... 


How do I stop NDR on Symantec SMTP V4.x?

Posted: 16 Jun 2006 01:37 PM PDT



In news:googlegroups.com,
RSC <com> typed: 

I reckon this is a Symantec question, then. :)


large emails are not being received

Posted: 16 Jun 2006 08:23 AM PDT

Hi,

Thanks you for posting again to request support for Microsoft Exchange
server.

However, I notice you have posted the same question in our newsgroup, which
I have already followed up.The Post ID is 34212535. So please check my
answer
there and if you need any further assistance on this particular issue,
please reply to me in that thread so I can follow up with you in time.
Also, please don't post the same question multiple times in the future so
that our engineers can work on your question efficiently. Your
understanding and cooperation is appreciated.

Thank you and Have a nice day.

Best Regards,

Steven Zhu
MCSE
Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
================================================== ====
PLEASE NOTE the newsgroup SECURE CODE and PASSWORD were
updated on February 14, 2006.? Please complete a re-registration process
by entering the secure code mmpng06 when prompted. Once you have
entered the secure code mmpng06, you will be able to update your profile
and access the partner newsgroups.
================================================== ====
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from this issue.
================================================== ====
This posting is provided "AS IS" with no warranties, and confers no rights.
================================================== ====