Pages

Search

Exchange Server stopped accepting internet email, but will transmi - Microsoft Exchange

Exchange Server stopped accepting internet email, but will transmi - Microsoft Exchange


Exchange Server stopped accepting internet email, but will transmi

Posted: 14 Jan 2007 02:48 PM PST

Thank you for your quick reply. I will answer these questions, then seek
your further advice. Look for my response on Tuesday, Jan 16th.
Again, thank you.

"Bharat Suneja [MVP]" wrote:
 

OWA and Exmerge problems

Posted: 14 Jan 2007 11:08 AM PST

Yes i have done that and doesnt seem to help. im wondering if it has
anything to do with the users that were transfered from the nt4 domain.
the only thing i dont get about ad is that why is there a place for two
different account logins like we have xxx.xxx.local and the old
xxx_xxxxxx-XX logins but its like wins or something ? but we dont run
wins so i wont if the new accounts are going to local and the old
account on the xxx_xxx-XX accounts???
thanks


//dev

Address book disapeared

Posted: 12 Jan 2007 09:49 PM PST

I have applyed the article but it did not have any effect on the problem

"Leif Pedersen [MVP]" wrote:
 

Exchange using 50-100% CPU

Posted: 12 Jan 2007 06:21 PM PST

If you are seeing this a lot I would open a support case with PSS. This can
indicated that one of the store threads is spinning out of control working
on something and or is waiting on another thread to complete it's tasks.

--
This posting is provided "AS IS" with no warranties, and confers no rights.

Dgoldman
http://blogs.msdn.com/dgoldman


"serge" <ehmail.com> wrote in message
news:%phx.gbl... 

What ports do outlook use to connect to exchange

Posted: 11 Jan 2007 08:32 AM PST

On Thu, 11 Jan 2007 17:40:14 -0000, "Glenn Clark"
<btinternet.com> wrote:
 
Who, in the name of all that is holy, told you that piece of rubbish?
Of course SSL VPN's create a tunnel.
First thing to do is to follow that Lanwench told you about RPC over
HTTPS and scrap the VPN requirement. That needs TCP443 opening only,
nothing else.
As for the insistence of using an SSL VPN, when you connect to the web
page it presents you can publish a few items on it such as an Intranet
site or OWA etc. etc.
If you want to use Outlook or SAP or whatever else you will execute
what Juniper call "Secure Application Manager" which puts a small
client install onto the local PC and creates a tunnel. You then
configure the VPN hardware at the central office, telling it that you
are allowing Outlook for these people and that your Exchange server is
on IP address(s).......

Exchange 2003 trial

Posted: 11 Jan 2007 05:31 AM PST

"Jim Hatfield" <com> wrote in message
news:com... 
for 

These kind of books often turn up on eBay for a good price. There are
all kinds of MS Press books (Resource Kits, training books, etc.) that
have a demo CD.

Lee.

--
_______________________________________

Outlook Web Access For PDA , OWA For WAP
www.owapda.com
email a@t leederbyshire d.0.t c.0.m
_______________________________________


Primary email address not stay in AD

Posted: 10 Jan 2007 06:12 AM PST

Thank Ed.

Have a good day.


"Ed Crowley [MVP]" <org> wrote in message
news:phx.gbl... 


Problem with custom recipients and free/busy

Posted: 09 Jan 2007 11:46 AM PST

On Wed, 10 Jan 2007 04:38:00 -0800, Brendon B
<microsoft.com> wrote:
 

They are AD Contacts (Mail Enabled). If your free/busy on the Outlook
is going awry for a couple of users, although not all, you will need
to do this as part of your diagnostics steps.
They aren't quite the same as "Custom Recipients" (I can tell you've
been around since 5.0/5.5)

Exchange 2003 exmerge error/misc

Posted: 09 Jan 2007 08:28 AM PST

"(CopyMessagesToDestFolder)0x80040115 And the exmerge process stopped at
that point." and "We also are experiencing intermittent problems where OWA
and outlook cannot recieve mail. The only solution was to restart the
server" would imply that this is a network issue. What version of the OS
and what SP are you at on the Exchange server? If windows 2003 SP1, have
you applied kb 898060?

John


"jason sigurdur" <org> wrote in message
news:phx.gbl... 


ESE APIs for Backup & Restore

Posted: 09 Jan 2007 05:45 AM PST


Dear Friend,

Here is the code snippet in which the error is generated. So if you could
figure out what could be the reason please inform me.

I have other two questions:
1. Do we need to do some initialization before Calling any ESE Restore
Function? If yes please detail me about the same.

2. Do we need to inform/send some information that ESE Restore Process may
be expecting

// TrialProject.cpp : Defines the entry point for the console application.
int main(int argc, char* argv[])
{

char lszValue[200];
LONG lRet;
HKEY hKey;
DWORD dwLength=200;
DWORD dwType=REG_SZ;
DWORD dwSize=255;



TOKEN_PRIVILEGES tp;
HANDLE hToken;
LUID luid;
LPTSTR MachineName=NULL; // pointer to machine name
DWORD dwSubKeyIndex=0; // index into key
DWORD dwSubKeyLength=_MAX_FNAME; // length of SubKey buffer

MachineName="AGARTALA";

//
// enable Restore privilege
//
if(!OpenProcessToken(GetCurrentProcess(),
TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY,
&hToken ))
{
PERR("OpenProcessToken", GetLastError() );
return 2;
}

if(!LookupPrivilegeValue(MachineName, SE_RESTORE_NAME, &luid))

{
PERR("LookupPrivilegeValue", GetLastError() );
return 2;
}

tp.PrivilegeCount = 1;
tp.Privileges[0].Luid = luid;
tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;

AdjustTokenPrivileges(hToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES),
NULL, NULL );

if (GetLastError() != ERROR_SUCCESS)
{
PERR("AdjustTokenPrivileges", GetLastError() );
return 2;
}

lRet = RegOpenKeyEx (HKEY_LOCAL_MACHINE,
"SYSTEM\\CurrentControlSet\\Control\\BackupRestore \\DLLPaths", 0L, KEY_READ ,
&hKey);
if(lRet == ERROR_SUCCESS)
{
lRet = RegQueryValueEx(hKey, "Esebcli2", NULL,
&dwType,(LPBYTE)&lszValue, &dwSize);
}

RegCloseKey(hKey);




typedef HRESULT (ESEBACK_API *HrESERestoreOpen)(
IN WCHAR * wszServerName,
IN WCHAR * wszServiceAnnotation,
IN WCHAR * wszSrcInstanceName,
IN WCHAR * wszRestoreLogPath,
OUT HCCX * phccxRestoreContext
);

HrESERestoreOpen fnHrESERestoreOpen = NULL;

HRESULT hr;
LPVOID lpMsgBuf;
HINSTANCE hMod;

if (GetProcAddresses( &hMod, lszValue, 14,
&fnMNUBackupRestoreGetNodes, "HrESEBackupRestoreGetNodes",
&fnESEBackupRestoreFreeNodes, "ESEBackupRestoreFreeNodes",
&fnHrESERestoreOpen, "HrESERestoreOpen",
&fnHrESERestoreWriteFile, "HrESERestoreWriteFile",
&fnHrESERestoreAddDatabase, "HrESERestoreAddDatabase",
&fnHrESERestoreAddDatabaseNS, "HrESERestoreAddDatabaseNS",
&fnHrESERestoreOpenFile, "HrESERestoreOpenFile",
&fnHrESERestoreCloseFile, "HrESERestoreCloseFile",
&fnHrESEBackupGetLogAndPatchFiles, "HrESEBackupGetLogAndPatchFiles",
&fnHrESERestoreSaveEnvironment, "HrESERestoreSaveEnvironment",
&fnHrESERestoreComplete, "HrESERestoreComplete",
&fnHrESERestoreClose, "HrESERestoreClose",
&fnHrESEBackupRestoreGetRegistered, "HrESEBackupRestoreGetRegistered",
&fnESEBackupRestoreFreeRegisteredInfo,
"ESEBackupRestoreFreeRegisteredInfo"
) == FALSE){
printf ("--ERROR LoadLibrary failed\n");
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
GetLastError(),
0, // Default language
(LPTSTR) &lpMsgBuf,
0,
NULL
);
printf( (LPCTSTR)lpMsgBuf);
LocalFree( lpMsgBuf );
return 1;
}

BACKUP_NODE_TREE* pBackupNodeTree = NULL;


hr = fnMNUBackupRestoreGetNodes (L"localhost", &pBackupNodeTree);
//FormatMessage &GetLastError called
WCHAR *Server = pBackupNodeTree->wszName;
WCHAR *ServerName = pBackupNodeTree->pChildNode->wszName;


wprintf(L"Server: %s\n", Server);
wprintf(L"Server Name: %s\n", ServerName);


unsigned long cRegisteredInfo;
ESE_REGISTERED_INFO *paRegisteredInfo;

hr = fnHrESEBackupRestoreGetRegistered(
L"localhost" ,
Server ,
0x00000004 , /*0x00000002 ONLINE*/ //0x00000004
ESE_REGISTER_OFFLINE_RESTORE
&cRegisteredInfo,
&paRegisteredInfo);

//FormatMessage &GetLastError called


printf("Number Registered: %d\n", cRegisteredInfo );
wprintf(L"Registered Annotation: %s\n",
paRegisteredInfo->wszEndpointAnnotation );

HCCX phccxRestoreContext;
wprintf(L"Server Name: %s\n", ServerName);

hr = fnHrESERestoreOpen (
ServerName,
paRegisteredInfo->wszEndpointAnnotation,
L"First Storage Group", //ESE Instance service
name which was handling database
L"c:\\Temp_Log",
&phccxRestoreContext
);
//Here code returns hr=0x000003E6 & GetlastError() returns 1008
if (hr != S_OK)
{
printf("--ERROR HRESULT RestoreOpen : %X ,GetLastError : %d\n" ,
hr,GetLastError());
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
GetLastError(),
0, // Default language
(LPTSTR) &lpMsgBuf,
0,
NULL
);
printf( (LPCTSTR)lpMsgBuf);
LocalFree( lpMsgBuf );
FreeLibrary (hMod);
return -1;
}

--
Vinay Jain


"Dave Goldman [MSFT]" wrote:
 

Automatic reply to customer inquiries

Posted: 05 Jan 2007 07:08 PM PST

Hi,

Thank you for posting back.

I'm glad to hear that this issue was resolved, if you have any other
technical questions in the future, please do not hesitate to post in this
newsgroup. I look forward to work with you again.

Have a nice day!

Best Regards,

Chace Zhang (MSFT)

Microsoft CSS Online Newsgroup Support

--------------------
| Thread-Topic: Automatic reply to customer inquiries
| thread-index: AcczasJi2zwHKpIhT1CTOMjWYwQ1Ug==
| X-WBNR-Posting-Host: 64.132.65.146
| From: =?Utf-8?B?WWF0eg==?= <nospam>
| References: <com>
<6u#phx.gbl>
| Subject: RE: Automatic reply to customer inquiries
| Date: Mon, 8 Jan 2007 13:20:02 -0800
| Lines: 122
| Message-ID: <com>
| MIME-Version: 1.0
| Content-Type: text/plain;
| charset="Utf-8"
| Content-Transfer-Encoding: 7bit
| X-Newsreader: Microsoft CDO for Windows 2000
| Content-Class: urn:content-classes:message
| Importance: normal
| Priority: normal
| X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2757
| Newsgroups: microsoft.public.exchange.misc
| Path: TK2MSFTNGHUB02.phx.gbl
| Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.exchange.misc:516
| NNTP-Posting-Host: tk2msftsbfm01.phx.gbl 10.40.244.148
| X-Tomcat-NG: microsoft.public.exchange.misc
|
| Thank you both for your responses. I created a public folder and set up
the
| auto response as a rule as mentioned below. Thanks again!.
|
|
| "chace zhang" wrote:
|
| > Hi,
| >
| > Thank you for posting here.
| >
| > According to your description, I understand you want to enable Auto
reply .
| >
| > Based on my experience, there is no build-in feature on Exchange Server
| > that sending an automatic message to sender. You may consider using
outlook
| > client to create a server side rule to achieve your goal.
| > Note; This doesn't require outlook to be running.
| >
| > To do so:
| > 1. Open Outlook.
| > 2. Right click on the public folder, select Properties.
| > 3. Under Administration, click Folder Assistant.
| > 4. Click Add Rule.
| > 5. In Edit Rule page, please click the check box to "Reply with" and
fill
| > an Auto-Reply text by clicking Template...
| > 6. Click OK three times to finish the configuration.
| > 7. Restart Outlook and test the issue.
| >
| > For more information, please refer to the following article.
| >
| > How to create a rule to enable automatic replies to users who post
messages
| > to a public folder in Outlook 2003
| > http://support.microsoft.com/?id=903289
| >
| > At the same time, we may also achieve this by creating an event sink on
the
| > Exchange server side and use it to reply the incoming e-mails based on
the
| > criteria as you want. If you need further assistance on how to develop
the
| > event sink, you may go to our development newsgroup.
| >
| > They are located at:
| > http://msdn.microsoft.com/newsgroups/default.asp
| >
| > I hope the information above is helpful. If you need more helps, please
do
| > not hesitate to let me know.
| >
| > Have a nice day!
| >
| > Best Regards,
| >
| > Chace Zhang (MSFT)
| >
| > Microsoft CSS Online Newsgroup Support
| >
| > Get Secure! - www.microsoft.com/security
| >
| > ================================================== ===
| > This newsgroup only focuses on Exchange technical issues. If you have
| > issues regarding other Microsoft products, you'd better post in the
| > corresponding newsgroups so that they can be resolved in an efficient
and
| > timely manner. You can locate the newsgroup here:
| > http://www.microsoft.com/communities/newsgroups/en-us/default.aspx
| >
| > When opening a new thread via the web interface, we recommend you check
the
| > "Notify me of replies" box to receive e-mail notifications when there
are
| > any updates in your thread. When responding to posts via your
newsreader,
| > please "Reply to Group" so that others may learn and benefit from your
| > issue.
| >
| > Microsoft engineers can only focus on one issue per thread. Although we
| > provide other information for your reference, we recommend you post
| > different incidents in different threads to keep the thread clean. In
doing
| > so, it will ensure your issues are resolved in a timely manner.
| >
| > For urgent issues, you may want to contact Microsoft CSS directly.
Please
| > check http://support.microsoft.com for regional support phone numbers.
| >
| > Any input or comments in this thread are highly appreciated.
| >
| > ================================================== ===
| >
| > This posting is provided "AS IS" with no warranties, and confers no
rights.
| >
| >
| > --------------------
| > | Thread-Topic: Automatic reply to customer inquiries
| > | thread-index: AccxEuRgQeZ0CAsoScKVfMZyi8cGIg==
| > | X-WBNR-Posting-Host: 64.132.65.146
| > | From: =?Utf-8?B?WWF0eg==?= <nospam>
| > | Subject: Automatic reply to customer inquiries
| > | Date: Fri, 5 Jan 2007 13:46:01 -0800
| > | Lines: 10
| > | Message-ID: <com>
| > | MIME-Version: 1.0
| > | Content-Type: text/plain;
| > | charset="Utf-8"
| > | Content-Transfer-Encoding: 7bit
| > | X-Newsreader: Microsoft CDO for Windows 2000
| > | Content-Class: urn:content-classes:message
| > | Importance: normal
| > | Priority: normal
| > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2757
| > | Newsgroups: microsoft.public.exchange.misc
| > | Path: TK2MSFTNGHUB02.phx.gbl
| > | Xref: TK2MSFTNGHUB02.phx.gbl microsoft.public.exchange.misc:496
| > | NNTP-Posting-Host: tk2msftsbfm01.phx.gbl 10.40.244.148
| > | X-Tomcat-NG: microsoft.public.exchange.misc
| > |
| > | Our marketing department wants to put an email address out there to
| > receive
| > | customer questions. We would like two marketing employees to receive
| > these
| > | emails. They also want the customer to be sent an email response
| > thanking
| > | them for their inquiry.
| > |
| > | I was told this can be done through a public folder and setting up a
| > | template; is this the best way or are there any other commonly
accepted
| > | methods to accomplish this?
| > |
| > | We are running Exchange 2003 and Outlook 2000.
| > |
| >
| >
|

User cannot receive email from outside of the org

Posted: 05 Jan 2007 12:39 PM PST

thanks for replying! However, I don't find the messages in any of
those locations and there are no rules defined. I also don't find any
Antispam settings either at the client or server. Junkmail foler is
empty as well


Bharat Suneja [MVP] wrote: 

Exchange 2003 and Windows Server 2003

Posted: 05 Jan 2007 12:34 PM PST

Before you upgrade Forest mode to Windows Server 2003 native, if you plan to
do so - you may need to change the ldap filter on Mailbox Enable User
policy:
Recipient Update Service may overwrite the value of the homeMDB attribute
for new Exchange Server 2003 users
http://support.microsoft.com/kb/903291

--
Bharat Suneja
MVP - Exchange
www.zenprise.com
NEW blog location:
www.exchangepedia.com/blog
----------------------------------------------



"Kate Townsend" <org> wrote in message
news:phx.gbl... 


Adding disclaimers.... Sort of

Posted: 04 Jan 2007 11:19 AM PST

>>Random?

To expand further. To randomly select one line from a file or database of
quotes

Steve


"Mark Arnold [MVP]" <org> wrote in message
news:com... 


How can I create DVD with Exchange 2007 ISO

Posted: 04 Jan 2007 10:26 AM PST

"Josh" <nospam> wrote in message
news:phx.gbl... 

Maybe something like this:

http://www.magiciso.com/tutorials/miso-magicdisc-overview.htm

Lee.

--
_______________________________________

Outlook Web Access For PDA , OWA For WAP
www.owapda.com
email a@t leederbyshire d.0.t c.0.m
_______________________________________


Offline Address book errors

Posted: 04 Jan 2007 06:47 AM PST

Outstanding!!
--
This posting is provided "AS IS" with no warranties, and confers no rights.

Dgoldman
http://blogs.msdn.com/dgoldman
"Johan Strange" <microsoft.com> wrote in message news:com...
Thanks for your replies guys. Thats a great article Dave, I did however find
that there was missing infomation in the replication tab of Offline Address
Book on System folder view in ESM. I corrected this and rebuilt the OAB which
appears to have resolved the issue.

"Dave Goldman [MSFT]" wrote:
 

reinstalling BETA - Microsoft Office forums

reinstalling BETA - Microsoft Office forums


reinstalling BETA

Posted: 13 Jan 2007 07:23 PM PST

I don't know - issues that happened in the beta have been fixed in RTM. Yours may be among them which is why I recommend getting a RTM trial.

--
Milly Staples [MVP - Outlook]

Post all replies to the group to keep the discussion intact. All
unsolicited mail sent to my personal account will be deleted without
reading.

After furious head scratching, John C. Harris asked:

| Good Point. Will I have the same issue though??
|
| "Milly Staples [MVP - Outlook]"
| <org> wrote in message
| news:phx.gbl...
| Why install the beta when there are fully functional 60 day trials
| available for download? If you are going to purchase the software
| after January 30 anyway, there is no harm in getting a trial that
| will bridge the time between now and retail availability.
|
| --
| Milly Staples [MVP - Outlook]
|
| Post all replies to the group to keep the discussion intact. All
| unsolicited mail sent to my personal account will be deleted without
| reading.
|
| After furious head scratching, John C. Harris asked:
|
|| I had to make some changes on a laptop and trying reinstall 2007 Beta
|| 2. Now when I try to install it is giving me an error halfway through
|| that a problem was encountered in the load. It offers no other
|| explanation. I have checked to make sure it is not hiding in the
|| registry somewhere but cannot see it.
||
|| XP Pro SP2, 2 gig RAM

Can't uninstall Office 2007 Beta 2 after Vista Upgrade

Posted: 12 Jan 2007 07:21 PM PST

Thanks Patrick. That did the trick!

"Patrick Schmid [MVP]" wrote:
 

Confused & Concern

Posted: 12 Jan 2007 12:46 PM PST

There is no teachers & students edition of 2007. 2007 has a Home &
Student edition that does not include Outlook though (Outlook was
replaced by OneNote).

Patrick Schmid [OneNote MVP]
--------------
http://pschmid.net
***
Office 2007 RTM Issues: http://pschmid.net/blog/2006/11/13/80
Office 2007 Beta 2 Technical Refresh (B2TR):
http://pschmid.net/blog/2006/09/18/43
***
Customize Office 2007: http://pschmid.net/office2007/customize
RibbonCustomizer Add-In: http://pschmid.net/office2007/ribboncustomizer
OneNote 2007: http://pschmid.net/office2007/onenote
***
Subscribe to my Office 2007 blog: http://pschmid.net/blog/feed

"Ed" <com> wrote in message
news:googlegroups.com:
 

Office 2007 configuring on each start up

Posted: 12 Jan 2007 12:23 PM PST

Ah, I see - a Micrsoft Featurette :)

A

"Patrick Schmid [MVP]" <mvps.org> wrote in message
news:phx.gbl... 


office 2007 cd or dvd?

Posted: 11 Jan 2007 05:06 PM PST

Think of the manufacturing costs. Instead of making and shipping two disks.
it can be handled once and be done.

Wouldn't you like it if you could do your work in half the time?

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




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


Best way to upgrade from 2003 to 2007?

Posted: 10 Jan 2007 05:30 PM PST

hmmm.... I ran the install and it had an option to upgrade. Since I had
already had a drink, I got brave and decided to take it.

So far, everything appears to be functioning, including my PST. Outlook 2007
has most certainly accepted my 2004 PST.

The install claimed it would automatically remove the previous version, but
I'm not conveinced that happened. I still still plenty of content in the
Office 11 folder structure, although it is 8MB compared to 412+MB in the 2007
folder.

"Peter Foldes" wrote:
 

How do I "turn on" BCM 7.0 ?

Posted: 10 Jan 2007 04:34 PM PST

Hi Bill,

Are your settings for the U.S. as default? Are you using MS Office Accounting 2007 Professional or Accounting Express?

You may want to also followup with the Business Contact Manager group using the link below.
===================
<<"w serra" <wserra.athotmail.com> wrote in message news:com...
I uninstalled all things Office 2007 and reinstalled them again. Now
everything is working great including BCM. The only remaining issue is that
Office Accounting 2007 can't integrate with BCM. The menu "Company->Integrate
with Business Contact Manager" is disabled.

Anyone has any idea why?

Bill>>
--
Please let us know if this has helped,

Bob Buckland ?:-)
MS Office System Products MVP
 

LINKS
A. Specific newsgroup/discussion group mentioned in this message:
news://msnews.microsoft.com/microsoft.public.outlook.bcm
or via browser:
http://microsoft.com/communities/newsgroups/en-us/?dg=microsoft.public.outlook.bcm

B. MS Office Community discussion/newsgroups via Web Browser
http://microsoft.com/office/community/en-us/default.mspx
or
Microsoft hosted newsgroups via Outlook Express/newsreader
news://msnews.microsoft.com



MS Office 2000 - How to Selectivel Install Access 2000 ?

Posted: 10 Jan 2007 12:16 PM PST

your welcome

<ie> wrote in message
news:com... 


How to deploy SP2?

Posted: 10 Jan 2007 09:28 AM PST

We have WSUS, but I'm not sure how to set it up to push out Office SP2. All
I have is the "Office2003SP2-KB887616-FullFile-ENU.exe" file, don't I need a
..msi file to use WSUS?


Clayton


P.S.: I wrote an iTunes podcast tutorial and just want to publicize it.
You can find it at: http://www.nikoli.net/itunepod

********************

"Peter Foldes" <com> wrote in message
news:phx.gbl...
Clayton

Have you considered using WSUS to upgrade your stations.

--
Peter

Please Reply to Newsgroup for the benefit of others
Requests for assistance by email can not and will not be acknowledged.

"Clayton Sutton" <com> wrote in message
news:2n9ph.47$news.easynews.com... 


Word 2007: customise the ribbon?

Posted: 10 Jan 2007 01:05 AM PST

> There is already at least one 3rd party tool, RibbonCustomizer, that
you may want to try to see if you're going to be able to get 
What a nice picture of me ;)

With the version that's out there right now, you can get rid of Styles,
but you can't add your macros to the home tab (I am looking into that
though).
If you want to do this, you'll need to use RibbonX itself. In addition
to what Bob suggested, take a look at
http://pschmid.net/office2007/ribbonx
I'll get around to adding more content to this soon.

Patrick Schmid [OneNote MVP]
--------------
http://pschmid.net
***
Office 2007 RTM Issues: http://pschmid.net/blog/2006/11/13/80
Office 2007 Beta 2 Technical Refresh (B2TR):
http://pschmid.net/blog/2006/09/18/43
***
Customize Office 2007: http://pschmid.net/office2007/customize
RibbonCustomizer Add-In: http://pschmid.net/office2007/ribboncustomizer
OneNote 2007: http://pschmid.net/office2007/onenote
***
Subscribe to my Office 2007 blog: http://pschmid.net/blog/feed
 

office upgrade to 2003

Posted: 09 Jan 2007 07:44 PM PST

Thank you

"JoAnn Paules [MVP]" <com> wrote in message
news:phx.gbl... 


Change Case in Word 2007?

Posted: 09 Jan 2007 03:18 PM PST

On Tue, 9 Jan 2007 15:48:22 -0800, "Bob Buckland ?:-\)"
<75214.226(At Beautiful Downtown)compuserve.com> wrote:
 

Bob, once again you are a marvel!


--
Nigel M

Office Accounting Professional 2007 product key

Posted: 09 Jan 2007 01:45 PM PST

I would contact TechNet directly. The public newsgroups is not the best
place for your answer in this case.

--

JoAnn Paules
MVP Microsoft [Publisher]

~~~~~
How to ask a question
http://support.microsoft.com/KB/555375




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


Office 2007 Install Error 2203

Posted: 08 Jan 2007 10:39 PM PST

Hi Tom,

After some further research, I would like to suggest as below:

# Check Environment Variables
==========================

Sometimes if the %temp% folder is redirected to a location other than the
default, this scenario may occur. Follow the steps to check it:

1. Click Start, and right click on Computer>Properties
2. Click Advanced system settings in the Task Pane.
3. Click Advanced tab on System Properties dialogue box.
4. Click Environment Variables
5. Check if the TEMP and TMP are set to %USERPROFILE%\AppData\Local\Temp

If this folder is not pointed to the default folder, please do the
following:

1. Redirect it to %USERPROFILE%\AppData\Local\Temp and test if you can
install now.
2. Switch to the user account which you first meet the scenario and
redirect TEMP and TMP to %USERPROFILE%\AppData\Local\Temp

# Use virtual CD to mount the ISO media
======================

Please use a virtual driver application (such as Daemon Tool) to mount the
ISO media and run Setup.exe from this virtual CD-ROM.

Does this error still occur?

If the two suggestions do not help, please check the folder
C:\Windows\Installer, and see if the file "10a6f0a1.ipi" is in it.

If this file is missing, please search it in all the locations and copy it
to C:\Windows\Installer then see if this issue is resolved.

If all the suggestions turned out to be useless, please send the log file
to my Email box: <com>

Thanks for your time and efforts put in this process and wish you a good
luck!


Regards,

Leon Hao

Microsoft Online Partner Support
Get Secure! - www.microsoft.com/security
================================================== ==
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
================================================== ==
This posting is provided "AS IS" with no warranties, and confers no rights.

Microsoft CRM - Lotus Notes and MS SBS+CRM

Microsoft CRM - Lotus Notes and MS SBS+CRM


Lotus Notes and MS SBS+CRM

Posted: 16 Feb 2005 12:49 AM PST

Hello !

Here is an article about a Notes connector for Microsoft CRM

http://www.webpronews.com/enterprise/crmanderp/wpn-15-20050214MicrosoftCRMIntegrationwithLotusDominoEmai lServer.html

Enjoy !



"Olav" <microsoft.com> a écrit dans le message de
news:com... 
for 


My Homepage and Emails

Posted: 15 Feb 2005 05:45 PM PST

On 15 Feb 2005 17:45:31 -0800, "Biyoojok" <com> wrote:
 

Open MSCRM and from the menu select Tools and Options

Select the Workplace tab and change Workplace Style to Sales User

Exit and start CRM and change to the Workplace and you will see two
additional queues under My Work i.e. E-Mail and Draft E-Mail

Select E-mail. You will see the 53 messages

Check the box on the grid bar next to Title and select Actions and
Delete

This will delete the emails from the E-mail queue but will not
actually delete the email records



Julian Sharp
Vigence for MS CRM in the UK

Conflict with McAfee

Posted: 15 Feb 2005 01:31 PM PST

saw this reponse on the other group

Hi~

There is a setting with this release of McAfee Enterprise Edition 8.0 that
prevents Outlook from launching items from the TEMP directory. When
clicking on the MSCRM folders in the SFO Client, the client will produce
the '/' Application Error referencing the Machine.Config file. The
resolution is listed below.

RESOLUTION

1. Right Click Virus Scan in the Taskbar
2. Virus Console.
3. Double Click Access Protection
4. Select File, Share, and Folder Protection.
5. Deselect > Prevent Outlook from Launching anything from the TEMP folder.

In addition, the Rules at the Server AV may need to be changed so they
don't republish the rules to workstations.

We should have a KB article out on this shortly.

Regtards,
Shawn Nulph | Microsoft CRM | Microsoft Business Solutions

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use. © 2003 Microsoft Corporation. All rights
reserved.

--
John O'Donnell
Microsoft CRM MVP
http://www.mscrmfaq.us


"John O'Donnell" <com-nospam> wrote in
message news:phx.gbl... 
is 
is 


Minimum hardware requirements

Posted: 15 Feb 2005 10:12 AM PST

I run my demos with Virtual PC running on a Notebook running a 1.6GHz Centrino
with 1 GB RAM. The VPC has SBS on it and has only about 380MB RAM Allocated to
it. I keep my server VHD on an external hard drivve and my demos run fine.

Matt Parks
MVP - Microsoft CRM

----------------------------------------
----------------------------------------
On Tue, 15 Feb 2005 12:12:23 -0600, "Jimmy Stewart"
<com> wrote:

We are getting ready to roll-out the CRM package for demo to our clients.
However, my employer does not seem to want to spring for a dual Xeon system
to deploy this on.

So my question is: what is the absolute minimum machine I can use?

I have several 2+GHz Pentium 4 machines all with a good amount of RAM. Our
web server (probably the best) is a 2.4GHz P4 with 4GB. It also supports our
SQL server and a few web applications as well as several websites.

I'm trying to get a good handle on this before it all blows-up.

Thanks


Converting Accounts -> Leads

Posted: 15 Feb 2005 05:35 AM PST

Thanks for your help, that is exactly what I ended up doing. Fortunately,
none of the contacts had any info in them, just the associates accounts, so I
was able to export the contacts and then split the name field to two field
for the import to the leads.

"Jakob Benediktson" wrote:
 

See Date and Time in Activities

Posted: 15 Feb 2005 02:25 AM PST

Thank you!

"Jakob Benediktson" wrote:
 

Quotenumber migration problem -Bug or Feature?

Posted: 15 Feb 2005 01:25 AM PST

Lars,

The field in the cdf that links the tables is QuoteId, not QuoteNumber, my
mistake, sorry! QuoteId is the link to cdf_QuoteDetail, cdf_Quote_ext &
cdf_Quote_info.

Which brings us back to your original question ... why is QuoteNumber
required if it's overwritten in the migration anyway? I've found a few
funnies in the migration tool, so I guess we can put it down as another
feature. Still, hopefully a custom field can provide the info you need to
migrate.

Sorry for the confusion!
Richie

"Lars" wrote:
 

Callout on Quotedetail

Posted: 14 Feb 2005 10:43 PM PST

On Mon, 14 Feb 2005 22:43:02 -0800, "Alphonse"
<microsoft.com> wrote:
 

Whe you open (i.e just view it on screen) a quote MSCRM recalculates
and updates the details on quote and quote detail so your Post Callout
will trap these as well as updates to individial quote detail records

Whe you update a quote MSCRM recalculates that record for price,
discounts etc and updates it so in effect you will be trapping two
postcallout updates, one from the user and one from MSCRM's internal
update

Nasty surprise isn't it!

You can code around this by checking the XML attributes and only doing
your work for the user update depending on what you are doing

PS This also applies to salesorderdetail

Julian Sharp
Vigence for MS CRM in the UK

Test Data Removal

Posted: 14 Feb 2005 05:34 PM PST

Thanks Brad.

"Brad Sprigg" <com.au> wrote in message
news:googlegroups.com... 


activity screen hangs

Posted: 14 Feb 2005 01:45 PM PST

That happened in our Internal Implementation...

In our case we just changed the IP Setting of the Client machine (the one
that hangs) to have a Static IP rather than the Automatic setting...

Try checking also the connectivity :)

Hope this helps...

"AW" wrote:
 

How to increase opportunity qualification

Posted: 14 Feb 2005 12:01 PM PST

Rafael,

You can add in more option from the setting | system customisation |
Oppotunity Customisation screen. You can edit and add new values from the
values tab on the drop-down list field properties, which you get to from the
change properties option when the drop down is selected.

Padraig McIntyre
BusinessCape.

"Rafael Diaz" wrote:
 

Error 401 sending emails

Posted: 14 Feb 2005 10:19 AM PST

Hi LLB ...

I only have one question ...what level of permissions shoul have the
Microsoft CRM Exchange Que Service in the exchange server ???

Tnks for your help ..

BR
Karolina



"LLB" wrote:
 

reinstalling crm on a different box

Posted: 14 Feb 2005 06:51 AM PST

not yet. I haven't done anything....I just want to make
sure that I can use a completely different box to server
as my crm server and still be able to point it to the
existing databases during the new install. Do you have
any recommendations or suggestions for doing this?

Thanks,
Jen

 
have 
hosting 
point 
foresee 

Goldmine Activities Conversion and Times

Posted: 11 Feb 2005 11:37 AM PST

Hi Jim,

Honestly I can't give you a comparison as I have only had minimal experience
with Goldmine and it has only been during this conversion. From what I know
of our clients requirements, they too want the integration with Great Plains.
CRM offers the three-way type of integration (Sales, Support and Great
Plains) they are seeking plus the ease of a familiar front-end of Outlook for
their sales staff, offering a minumal learning curve.

I wish I could give you any more information, but I hope someone else
responds to this thread in more detail for you.

Shauna
"Goldmine in comparison to CRM" wrote:
 

Contact details - Microsoft Exchange

Contact details - Microsoft Exchange


Contact details

Posted: 03 Jan 2007 01:29 PM PST

On Thu, 4 Jan 2007 07:28:42 -0500, "Mike" <com>
wrote:
 
At least we can narrow it down. I'd take a look at:
http://www.google.co.uk/search?hl=en&q=%22outlook+address+book%22+%22cache d+mode%22+troubleshoot&btnG=Google+Search&meta=
to start troubleshooting the Offline Address Book.

If you are not running in Cached Mode then please come back and say
so.

Migrating from SBS/Exchange to Exchange

Posted: 03 Jan 2007 08:37 AM PST

Thanks, appreciate the help.

Cheers,
Michael
"Leif Pedersen [MVP]" <dk> wrote in message
news:phx.gbl... 


Design Question

Posted: 02 Jan 2007 07:09 AM PST

Excellent reference! The sad part is, this group is also stressing
"centralized administration between the two companies and the AD/Exchange
environments"....which makes this propsoal even more way off...


"Neil Hobson [MVP]" <silversands.co.uk> wrote in message
news:%phx.gbl... 


Is it just me?

Posted: 31 Dec 2006 11:45 AM PST

It's not just you.
--
Ed Crowley
MVP - Exchange
"Protecting the world from PSTs and brick backups!"

"Ron Woods" <com> wrote in message
news:%phx.gbl... 


Help in archiving large mailstore...

Posted: 30 Dec 2006 03:24 PM PST

You could try using Archive One from www.c2c.com
It does not use SQL at all, preferring an inbuilt engine

rob


"Mike Deblis" <com> wrote in message
news:4596f526$0$8720$plus.net... 


Outlook Address Book issue

Posted: 29 Dec 2006 07:32 PM PST

Thanks Kevin,

The link is a big help in understanding things here. I will change these
users profiles and see what happens.

Have a good New Year.

"Kevin Weilbacher [SBS-MVP]" <net> wrote in message
news:phx.gbl... 
to 
RPC/HTTP? 
the 
in 
get 
for 
is 



want Exchange 2003

Posted: 29 Dec 2006 11:26 AM PST


Thank you.
Lk


"Bharat Suneja [MVP]" wrote:
 

Free Busy not working for anyone after Exchange 5.5 to Exchange 2003 Migration

Posted: 29 Dec 2006 06:58 AM PST

Fixed the problem, useing MS KB:
http://support.microsoft.com/kb/294282/, more or less. I didn't deal
with calling into MS Support, once I figured out what the files does we
just sent a meeting maker out to the whole company to accept and now
it's all working.


com wrote: 

In Exchange server 2003 I created Connection filter and subscribed

Posted: 28 Dec 2006 06:14 AM PST


Hi, Pleas help me solving this problem, atleast confirm me I am going in
right direction or not.


I created DNS zone by below mentioned steps
How to configure your DNS for your own block list
You can create and maintain your own RBL. The first thing you must do is to
create a forward lookup zone in DNS. You should own the name, so a good one
is to use relays.your.internal.ad.name. As mentioned before you add hosts
that you want to block by reversing the IP address and add that string as the
hostname. The host IP can be anything you choose, but most often, it is
127.0.0.1
Zone neme given: relays.ad.ex2k3i2.sri
After this zone creation added host as(192.168.1.40 i.e. Exchange server PC
ip address)
created connecting filter on M2, with this created DNS suffix provider.
192.168.1.40(M1) and 192.168.1.62 (M2)both are my exchange server Ip addresses
M1 machine Ip address is in blocklist,
so I created sender connector between M1 and M2, sended a mail from m1
domain to M21 domain user.
Expected Result: Should terminate the connection of M1, shouldn't deliver
the mail to M2 domain user.






A good idea would be if you have installed and using MS Intelligent Message
Filtering (IMF). You can build a piece of software that monitors the
UceArchive folder regularly and then if a sending IP comes up x number of
times in y number of minutes, the software can add an entry in your own DNS
zone and perhaps after a while delete it.




"Microsoft Exchange 2007 command shell" wrote:
 

How to publishe GAL to Intranet.

Posted: 27 Dec 2006 04:33 AM PST

I've used that in the past - now sure what you mean by "does not work with
Exchange". It pulls data from your Active Directory.
--
Bharat Suneja
MVP - Exchange
www.zenprise.com
NEW blog location:
www.exchangepedia.com/blog
----------------------------------------------


"Leon" <com> wrote in message
news:OUcja%phx.gbl... 


How can we use RBL feature in Exchange server 2007

Posted: 26 Dec 2006 06:31 AM PST

Hi,

Yes I am able to see Antispam tab,
I tried to add RBL service provider details
Provider name: Trend Micro RBL+
DNS: activationcode.r.mail-abuse.com
selected Any return code
after that I am not able to check "whether RBL service working or not?"
How can I check that one,
help in checking,
I Selected "Any return code" then if I am sending mail then also RBL service
will give return code as "un known host", then also it has to block my mail
server mails also but it is not happening.

Srinivas


"Bharat Suneja [MVP]" wrote:
 

Microsoft Word - Equation Editor Lags on first open in Office 2014

Microsoft Word - Equation Editor Lags on first open in Office 2014


Equation Editor Lags on first open in Office 2014

Posted: 15 Jun 2014 02:51 PM PDT

Hi Everyone,

I come to you guys after spending the past 4 hours working on this.

After opening an entire new session (no windows running) of Word 2013 the equation editor menus take about a minute to load. To clarify the tab opens fine, I can type things into the box that appears in my document but if I go to access the menus word hangs. At first I thought it was causing word to crash. After accidently ignoring the PC during one of these cycles I learned that it is just taking time to load the menu when I open it. After about a minute it comes back to life. This does not affect Excel or Powerpoint only word. After that minute hang up on the first equation, the equation editor operate normally.

I have the compatibility pack installed that is necessary for the fonts and I have done repairs and a manual uninstall including templates and additional files.

Any ideas as to why this might be happening. It is currently an annoyance but it seems like there should be a work around.

Thanks,

Will

Microsoft Word crash at startup - M. Word has stopped working.

Posted: 15 Jun 2014 01:14 PM PDT

Hello,

Trying to open a document to work on it and Word simply says it has stopped working.

Also excel wont open anything and says Not Enough memory to run microsoft excel.

I haver tried disabling startup services, as well as disabling ad-ins but no change.

I also uninstalled and reinstalled ofiice 2010 professional with no change to the issue.

They do open in safe mode but otherwise nothing works.

Please Help,

Thanks

Word 2013 prints auto duplex back to front incorrectly...

Posted: 15 Jun 2014 01:01 PM PDT

I like to print my documents from back to front so I don't need to shuffle the pages after printing a large document.  However, Word 2013 doesn't seem to do this properly.

Testing it on a small, 3 page document:  Blank, Page 1, Page 2, Page 3.

What it should do is:  Page 1, Page 2, Page 3, blank.  

Is there a way to make Word smart enough to understand that in a document with an odd number of pages, no sections, continuous paging etc., that the intent is to have Page 1 be the front of the top page on the output tray? :)

I can force this behavior by padding blank pages in the document, but that's a bad solution because it's a manual step that needs to be corrected whenever the page count changes.

Thanks!

Jeff.

MS Word Slows Down with Heading Numbers

Posted: 15 Jun 2014 10:28 AM PDT

I am working with what is currently a 400 page document. I use Styles to define new headings and sub-headings.

Recently I added numbering to the headings, i.e

1 Heading 1

2 Heading 2

2.1 Heading 2, subheading 1

2.2 Heading 2, subheading 2

etc.

Word has really slowed down since then, there is a lag when I type that is infuriating.

Word used to exhibit a similar behavior when I had documents with lots of equations, but about 2 years ago that problem suddenly resolved itself, I imagine in a patch they introduced.

Is there any way to get word sped up again? I could upgrade to Word 2013 if anyone thinks that will help, but I don't want to go through the trouble if it won't fix the problem.

Thank you.

Office 2007 in Word

Posted: 15 Jun 2014 08:37 AM PDT

My Word programme in Office 2007 has stopped auto formatting, such as when I type a date the letters after the number do not superscript automatically and if I forget to tab for capital letters at the start of each new sentence. How do I switch it back on?

PH

 

Cannot COM-automate a readonly Word 2013 document

Posted: 15 Jun 2014 08:11 AM PDT

Word 2013 introduce a rather strange behaviour, totally different from Word 97,2003, 2007.

Consider this piece of code

s:='test.doc'

 WordApp := CreateOleObject('Word.Application');

       WordApp.Visible := true;
       wordapp.Documents.Open(s);
       wordapp.selection.font.bold:=1; /// here's the problem with ReadOnly file!
       wordapp.selection.font.size:=20;
       wordapp.selection.typetext('Write test '+datetimetostr(now)+'  '+floattostr(now));

       Range := WordApp.Documents.Item(1).Range;
       wordapp.Selection.find.execute('Associazione',false,false,false,false,false,true,1,false,'');
       wordapp.selection.typetext('FRANCOCORBELLI');
       WordApp.Documents.Item(1).SaveAs('z:\oka.doc');
       ShowMessage('Ora chiuderò Word');
       Wordapp.Quit;

Here I open a DOC, change the font, write something, save to another file.

This works fine (Word <=2007) if test.doc is readonly or not.

If test.doc is readonly (attrib +r), then Word 2013 throw an exception of "unallowed" modifing of the file,

so I cannot work (and write back).

Is it possible to disable this (for me) big deal?

Thanks to all.

Accidentally deleted office

Posted: 15 Jun 2014 07:55 AM PDT

I accidently delete office. I ordered it off internet a have no key and can not find my where I paid for it.

I have changed my email address sense. help

[Original title: office]

Office 2013 won't open

Posted: 15 Jun 2014 04:37 AM PDT

I have recently installed Office 2013 on Windows 8.1, and when I bought the package the shop assistant said we needed to make a backup file of it onto a USB, so I have copied and moved the file onto the USB and now nothing will open, it says 'sorry, something went wrong and Word was unable to start (40)'. Is this because I have copied the file or moved it in some way? 

Thank you for all your help 

How to update/sync the same Word 2013 document in two different file locations on PC

Posted: 15 Jun 2014 03:44 AM PDT

I have a single document saved in two different file locations within "Documents"

When I make changes, I would like both documents, which are the same exact documents, to update at the same time.

I have read articles on two authors/publishers, however, this is not the case, I am the only author of the document and wish to save one file in two different folders within my Documents folder and have them update together in real time.

Thanks,

fryerlawrence 

Query tabstop in paragraph using vba in word 2013

Posted: 15 Jun 2014 03:32 AM PDT

Hi Gurus - Newbie to VBA in word, but not to macros - 

I would like to run a macro that checks how many tab indents the text starts at in a paragraph and add the number received as a digit at the start of the paragraph.

For example:

No indents

      One indent

             Two indents

and turn it into the following:

0No indents

      1One indent

             2Two indents

Should be fairly easy, but can't seem to find an answer....

Thanks!

Michael

use my own templates

Posted: 15 Jun 2014 02:01 AM PDT

How do I include my own templates in the File/New page?

Office Word 2013 hangs up when applying Specific Page Number Format

Posted: 14 Jun 2014 11:43 PM PDT

Hi everyone, recently I did a total computer maintenance which includes:

  1. Uninstalling less important stuffs
  2. Disk defrag
  3. WINDOWS UPDATE (might include installing Office Pro 2013 SP 1)

After doing those, i do a Microsoft Excel tasks which includes editing a humongous amount of data in it.... AFTER SEVERAL MINUTES IT CRASHES. Try to do the same with a faaar smaller amount of data, and it still CRASH. Noting that windows update, I try to repair my office and those EXCEL problem is gone. Now I did a Microsoft Word editing, which I can say, a lightweight kind of edit (5 page with 4 sections, due to interchanging portrait - landscape page layout). When I try applying AND editing a page number style, The WWLIB.DLL is CRASH.

My questions: WHAT causes this, and HOW to solve ?

ATTACHED:

This layout causing crash in Ms. Word when applied to my heavily sectioned document.

Error report: