Thursday, February 24, 2022

Updated Exchange 2010 Management Pack released

Updated Exchange 2010 Management Pack released


Reply:
Who will take the chance to deploy this and report back to us?  ;-)

Regards, Blake Email: mengotto<at>hotmail.com Blog: http://discussitnow.wordpress.com/ If my response was helpful, please mark it as so, if it answered your question, then please also mark it accordingly. Thank you.


------------------------------------

where we have to work to improve the performance of cube and dimensions?

where we have to work to improve the performance of cube and dimensions?

Please help me

thanks and regards

samba ch


Reply:

you can follow some of the best practices as mentioned here

http://www.microsoft.com/en-us/download/details.aspx?id=17303


vinu


------------------------------------

Does anyone know what a 'plugin000.dmp' file is and why it gets created?

My upgrade to Windows 8 Pro is failing and rolling back. When it fails a file named 'plugin000.dmp' gets created on the System drive? Does anyone know how I can use this file to determine why the upgrade is failing?

Thanks,

-e.B

  • Changed type Arthur Xie Monday, August 27, 2012 8:12 AM

Reply:

I'd like to see your rollback log if possible.   My hypothesis (as google shows nada) is that some plugin used by one of your applications is not Windows 8 compatible.  Likely it will be listed near the end of your rollback log.  Figure out which application it belongs to, uninstall that application and try again. 

http://technet.microsoft.com/en-us/library/hh824819.aspx

$windows.~bt\Sources\Rollback

If you want to look into the .dmp file, here is some info on how to do that.  It's not as easy as looking in the rollback log unfortunately.  Good luck.

http://windows7themes.net/how-to-open-dmp-files-in-windows-7.html


Don't forget to mark your posts as answered so they drop off the unanswered post filter. If I've helped you and you want to show your gratitude, just click that green thingy.




------------------------------------

Dota 2 Marketplace Forum to Trade items

How do I clear the individual logs in Windows Logs, there are thousands of entries?

Log Name:      Security
Source:        Microsoft-Windows-Security-Auditing
Date:          8/30/2012 10:45:12 AM
Event ID:      4625
Task Category: Logon
Level:         Information
Keywords:      Audit Failure
User:          N/A
Computer:      Steve-PC
Description:
An account failed to log on.

Subject:
 Security ID:  Steve-PC\Steve
 Account Name:  Steve
 Account Domain:  Steve-PC
 Logon ID:  0xad89f0

Logon Type:   4

Account For Which Logon Failed:
 Security ID:  NULL SID
 Account Name:  Steve
 Account Domain:  

Failure Information:
 Failure Reason:  Unknown user name or bad password.
 Status:   0xc000006d
 Sub Status:  0xc000006a

Process Information:
 Caller Process ID: 0x1178
 Caller Process Name: C:\Windows\System32\taskhost.exe

Network Information:
 Workstation Name: Steve-PC
 Source Network Address: -
 Source Port:  -

Detailed Authentication Information:
 Logon Process:  Advapi 
 Authentication Package: MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
 Transited Services: -
 Package Name (NTLM only): -
 Key Length:  0

This event is generated when a logon request fails. It is generated on the computer where access was attempted.

The Subject fields indicate the account on the local system which requested the logon. This is most commonly a service such as the Server service, or a local process such as Winlogon.exe or Services.exe.

The Logon Type field indicates the kind of logon that was requested. The most common types are 2 (interactive) and 3 (network).

The Process Information fields indicate which account and process on the system requested the logon.

The Network Information fields indicate where a remote logon request originated. Workstation name is not always available and may be left blank in some cases.

The authentication information fields provide detailed information about this specific logon request.
 - Transited services indicate which intermediate services have participated in this logon request.
 - Package name indicates which sub-protocol was used among the NTLM protocols.
 - Key length indicates the length of the generated session key. This will be 0 if no session key was requested.
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="Microsoft-Windows-Security-Auditing" Guid="{54849625-5478-4994-A5BA-3E3B0328C30D}" />
    <EventID>4625</EventID>
    <Version>0</Version>
    <Level>0</Level>
    <Task>12544</Task>
    <Opcode>0</Opcode>
    <Keywords>0x8010000000000000</Keywords>
    <TimeCreated SystemTime="2012-08-30T17:45:12.218159300Z" />
    <EventRecordID>82807</EventRecordID>
    <Correlation />
    <Execution ProcessID="532" ThreadID="2868" />
    <Channel>Security</Channel>
    <Computer>Steve-PC</Computer>
    <Security />
  </System>
  <EventData>
    <Data Name="SubjectUserSid">S-1-5-21-3701862130-825821323-2700847095-1001</Data>
    <Data Name="SubjectUserName">Steve</Data>
    <Data Name="SubjectDomainName">Steve-PC</Data>
    <Data Name="SubjectLogonId">0xad89f0</Data>
    <Data Name="TargetUserSid">S-1-0-0</Data>
    <Data Name="TargetUserName">Steve</Data>
    <Data Name="TargetDomainName">
    </Data>
    <Data Name="Status">0xc000006d</Data>
    <Data Name="FailureReason">%%2313</Data>
    <Data Name="SubStatus">0xc000006a</Data>
    <Data Name="LogonType">4</Data>
    <Data Name="LogonProcessName">Advapi  </Data>
    <Data Name="AuthenticationPackageName">MICROSOFT_AUTHENTICATION_PACKAGE_V1_0</Data>
    <Data Name="WorkstationName">Steve-PC</Data>
    <Data Name="TransmittedServices">-</Data>
    <Data Name="LmPackageName">-</Data>
    <Data Name="KeyLength">0</Data>
    <Data Name="ProcessId">0x1178</Data>
    <Data Name="ProcessName">C:\Windows\System32\taskhost.exe</Data>
    <Data Name="IpAddress">-</Data>
    <Data Name="IpPort">-</Data>
  </EventData>
</Event>


Reply:
Delete all the log files in Vista and W7, including the combined administrator log, by running this batch file as the Administrator http://www.sevenforums.com/tutorials/25480-event-viewer-one-click-clear.html?ltr=E

------------------------------------

Feature request: storing arrays in cells for more efficient data storage

I made this custom function that required a variable number of (similar) arguments -- so I had it use an array as an argument. This itself was no problem, using the B1 formula shown below.

B1: =myFunction({"a","b"})

However, I wanted to pull the array data from elsewhere so I could use the same formula throughout -- preferably from a single cell, so as to prevent having to use an indefinite amount of cells/columns to store the potential number of arguments. Hence I tried the following:

A1: ={"a","b"}
B2: =myFunction(A1)

Formula A1 merely displayed a as the result, leading me to believe it worked, but then formula B2 resulted in a #VALUE error -- guess it wasn't possible to store arrays in cells after all.

That makes me wonder though -- why not? In terms of storage efficiency there is obviously an advantage in this, as it could reduce a data set variable in length to a single cell, basically saving the user a row/column for each such array (or a sheet in case of two-dimensional arrays). (Note that this advantage would also apply when using array formulas instead of custom functions demanding arrays.)

I realize there are workarounds in the form of storing arrays as delimited strings (to be reconverted before reuse), but the need to resort to this just seems kind of inelegant. As such, I'm wondering whether or not there would be any plans to allow for this sort of functionality in the future: storing an array in a cell as shown above, and perhaps allowing one to specify entries thereof similarly as for regular arrays, e.g. A1(1). I'm not sure about potential complications this might bring along, but the use seems apparent to me.



Reply:
You are really talking about manipulating the elements of array formulas. Already available, if you know how to use them. See http://www.cpearson.com/Excel/ArrayFormulas.aspx as one example of how to use them.

------------------------------------
Reply:

Some tools for creating Excel Addin functions have built-in facilities for handles to arrays where the handle can be stored in a cell and used as a function argument. See XLLPlus for one example.

You could in theory code this kind of thing yourself in VBA, storing the array(s) in something global that is indexed by the handle. Persisting the global array data and handles in a saved workbook using VBA (defined names for small amounts of data or custom XML parts for larger data) is also possible.

But doing all this using VBA in a foolproof and efficient way is not trivial.


Charles Excel MVP The Excel Calculation Site http://www.decisionmodels.com/


------------------------------------

Sharepoint site not access with external IP address

Dear All,

I have sherpoint site on server. I am accessing this site with the Computer Name from my local machine.

And I have modified some Custom List in Infopath 2010.

When I am trying to access with External IP address that time modified Custom List from Infopath not get access. I am getting following error:

"The following location is not accessible, because it is in a different site collection"

Can anyone please help me how to resolve this issue ?

Thanks and Regard's

Harish Patil


Reply:
Always make sure you to configure Alternate Access Mappings for each and every single URL you use to access SharePoint. This is specially important when you are working with InfoPath. In this case, add an AAM for either the external hostname or IP and see if it resolves your issue.

Manaz Mohideen - MCPD, MCITP, MCTS


------------------------------------

sccm system management error


Reply:

given full permission in ad to sccm account and computer again facing same error

Systems Management Server cannot create the object "SMS-Site-LLP" in Active Directory.

Possible cause: This site's SMS Service account or the site server's machine account may not have full control rights for the "System Management" container in Active Directory
Solution: Give the site's SMS Service account full control rights to the "System Management" container, and all child objects in Active Directory.

Possible cause: Another Active Directory object named "SMS-Site-LLP" already exists somewhere outside of the "System Management" container
Solution: Locate the other object with the same name, and delete the object from its current location.  Then allow SMS create a new object.

Possible cause: The Active Directory schema has not been extended with the correct SMS Active Directory classes and attributes.
Solution: Turn off Active Directory publishing for each site in the forest, until the schema can be extended.  The schema can be extended with the tool "extadsch.exe" from the SMS CD.


------------------------------------
Reply:
after you granted these permissions did you restart the site server?

Don
(Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable. This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)


------------------------------------
Reply:
thanks don problem solved now everything okay

------------------------------------

Branding the defalt lockscreen

I found another way besides using MDT to change the default lock screen.

Replace C:\Windows\Web\Screen\img100.png with the image you want.

delete the file found in C:\ProgramData\Microsoft\Windows\SystemData\S-1-5-18\ReadOnly

reboot.


Reply:

Here are some greater details.   You might only need to change the img100.png and the backup copy in the SXS folder for an offline install.wim, because the SystemData folder copy does not exist until after installation.

http://forums.mydigitallife.info/threads/36515-TUT-Customize-Windows-8-User-Account-picture-Lock-Screen-when-unactivated

The SxS path changes depending on x64 or x86, but here is the x86 path

C:\Windows\WinSxS\x86_microsoft-windows-themeui-client_31bf3856ad364e35_6.2.9200.16384_none_69ee3fa2269e545e\img100.png


Don't forget to mark your posts as answered so they drop off the unanswered post filter.



------------------------------------

Windows Update keeps installing the same updates over & over again!! KB2656351+KB2600217

h

Hello, sorry but im a complete idiot when it comes to computers, but normally I get there in the end!

I have 2 main problems:-

1.   My computer keeps loading updates KB2656351  &   KB2600217  over and over again

2. My computer when typing is almost impossible to use at times as the letters and words just end up going everywhere randomly!!  The cursor no matter where I put it just send the letters anywhere but the correct place. I had to stop using IE9 because it. I deleted AVG software as I was told that was the cause, but it made no difference.

Alstypingo, when typing, the letters go everywhere and anywhere on the page, except  where they should be going!!  Also, all of a sudden I can lose everything that I have typed or just a percentage of what i have typed!!

 This has taken me over half an hour to get this far, every time I get a paragraph done or nearly done it just disappears off my screen! When typing the ltrset go blue(highlighted) then go or disappear!u

Im not  brilliant with computers so please explain as best as you can. Thank you very much, Jon Spencer..

All religions point in the same direction, it is the individuals who distort what is written into their own views. The fallibility of humans is the evil that pervades society. Treat others in the same way that you would wish to be treated & society would be a far better & nicer place!


Reply:

Hi,

 

Thank you for visiting the Microsoft forum. This
forum focuses on Perfmon and diagnostic tools. I am moving your question to the
moderator forum ("Where is the forum for..?"). The owner of the forum
will direct you to a right forum.

 

Thanks.

Bruce Adamczak



Bruce Adamczak MCP since 1993 Please click "Mark as Answered" if a post solves your problem Please click "Vote As Helpful" if you find the answer helpful


------------------------------------
Reply:
Ask at http://answers.microsoft.com/en-us/windows/forum/windows_update


The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful, so they will appear differently to other users who are visiting your thread for the same problem.
Visual C++ MVP


------------------------------------

I Would Like To Reqest Functions In Powershell, Powershell ISE, Command Prompt

There Are Many Things That Microsoft Should Do And Don't Do With These Apps Including:

For PowerShell ISE:

  • Added Support For Interactive Console Apps Like:
  • WMIC
  • Netsh
  • And More
  • More cmdlets 
  • Added Support For All Command prompt Commands! 
  • Make Command Prompt Commands No Different

For PowerShell:

  • More cmdlets 
  • Added Support For All command prompt commands!
  • Unlimited Screen Buffer
  • Make Command Prompt Commands No Different

For Command Prompt:

  • Don't Remove Any Commands ( Microsoft Is Planning To )
  • More Commands
  • Unlimited Screen Buffer Size
  • Have Support For Both Batch Files And PowerShell Scripts


Reply:

Hi,

 

Thank you for visiting the Microsoft forum. This
forum focuses on Perfmon and diagnostic tools. I am moving your question to the
moderator forum ("Where is the forum for..?"). The owner of the forum
will direct you to a right forum.

 

Thanks.

Bruce Adamczak



Bruce Adamczak MCP since 1993 Please click "Mark as Answered" if a post solves your problem Please click "Vote As Helpful" if you find the answer helpful


------------------------------------
Reply:
Try http://social.technet.microsoft.com/Forums/en-US/winserverpowershell/threads


The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful, so they will appear differently to other users who are visiting your thread for the same problem.
Visual C++ MVP


------------------------------------

I love IE9 but IE Team must change this...

One of most disgusting feature of IE is: do a right - click on some random space of a random website, and WOW, a f.king useless menu appear!

Why in the world do IE Team think I need this? It's too long, and there're many options I don't need!

Please make a short and useful menu like Google Chrome! That's all I need!

If you're agree with me, please spread this message to let the IE Team understand our needs!

Thanks so much.


Reply:

Post all feedback/suggestions to http://connect.microsoft.com/ie . IE10 metro is context menu free... Context menus can be administered on corporate networks with Group Policy.

these are public forums... the IETeam do not troll here.


Rob^_^


------------------------------------

Unable to fix DPM 2007 "Replica is inconsistent"

We have been running DPM 2007 (MMC 3.0 Ver 5.2 SP2) on a Windows Server 2003 R2 64-bit Standard Edition physical server (HP DL 380 G6) for two and a half years with few problems, but now we are seeing a problem with Replicas being inconsistent that refuse to become consistent. Here are the details of one of the cases:

Status:                        Replica is inconsistent
Replica path:               D:\ on <FQDN_Server> C:\Program Files\Microsoft DPM\DPM\Volumes\Replica\<FQDN_Server>\File System\
                                    D-673f06d6-8b19-11df-b36e-005056000001\d3188f9b-cbfe-4ab7-887b-9466b4f681e4\Full\
Latest recovery point: 8/22/2012 8:28:13 AM
Oldest recovery point: 8/1/2012 8:24:29 AM
Total recovery points:  22
Disk allocation:            Replica volume: 97.71 GB allocated, 52.20 GB used | Recovery point volume: 1,000.00 GB allocated, 569.50 GB used

 The DPM Alerts in the Event Logs say:

"The replica of D:\ on <FQDN_Server> is inconsistent with the protected data source. All protection activities for data source will fail until the replica is synchronized with consistency check. (ID: 3163) DPM has run out of free space on the recovery point volume for D:\ on <FQDN_Server>. Protection for this data source will fail in order to prevent existing recovery points from being deleted before their expiration. (ID: 30077)"

Right-clicking and selecting "Perform consistency check . . ." does not fix the issue.

NOTE: The replica path location on the DPM server is pointing to the C: drive that is 136 GB in size with 63GB free space.

What are the possible reasons we are seeing this, and why can't I get these consistent?



  • Edited by SFMChris Thursday, August 30, 2012 6:37 PM
  • Changed type Yegor Startsev Thursday, April 18, 2013 1:12 PM lack of activity

Reply:

Hi SFMChris,

Right-click the protection group that manages the datasource you are refering to and choose modify diskallocation. Increase the recovery point volume in the DPM diskpool for the D:\ datasource. The error states:

"The replica of D:\ on <FQDN_Server> is inconsistent with the protected data source. All protection activities for data source will fail until the replica is synchronized with consistency check. (ID: 3163) DPM has run out of free space on the recovery point volume for D:\ on <FQDN_Server>. Protection for this data source will fail in order to prevent existing recovery points from being deleted before their expiration. (ID: 30077)"

Please post information regaring your progress.


Best Regards

Robert Hedblom

MVP DPM


Check out my DPM blog @ http://robertanddpm.blogspot.com



------------------------------------
Reply:

Robert,

I already tried that on the above volume, and now I have tried this on one of the other smaller volumes -- a DC's System State -- (which is showing the same error and the same DPM alerts as the larger volume above). Here are the numbers showing the change for the smaller volume:

STARTING NUMBERS:
    Replica Volume:
        Allocated: 15.11 GB
        Used: 9.70 GB
    Recovery point Volume:
        Allocated: 200.0 GB
        Used: 127.54 GB
NEW NUMBERS:
    Replica Volume:
        Allocated: 15.11 GB
        Used: 9.70 GB
    Recovery point Volume:
        Allocated: 220.0 GB    << Increased 10%
        Used: 127.54 GB

After increasing the recovery point volume by 10% in the smaller volume case, I ended up with the following error: "Consolidation of recovery points of the replica failed." I then right-clicked the SystemState volume and chose "Create Recovery Point - Disk" (since DPM reported none existed) and waited for that to complete. The end result was that I got to a green OK status in this case. However, the larger volume mentioned in the original statement of the problem, even after adding an additional 300 GB, won't move out of the "Replica is inconsistent" state to any other state when performing a consistency check . . .

If I am truly out of space, why is DPM showing only 569.50 "used" out of 1,000 GB allocated? For this kind of DPM alert, I would expect to see the used number nearly equalling the allocated space. If DPM requires more space then what is left over from the allocated, why doesn't the DPM console (or error/alert message) tell me that? If this is the case, then the "used" metric is useless and DPM needs to show required (unused) space instead. If this is not the case, and space is not an issue, then what else might be the problem?

Thank you for any help,

Chris  


------------------------------------

sql server data mining services

Hi

for my final examination tutor says to implement data mining services of sql server on a sample data.i know what data mining and its algorithms is but also its the first time i wana see sql servers data mining.do you have any simple learning stractures? i have just 10 days time! is that possible to do this project? pleas help me.... 


Reply:

Does he want you to analyze the data using SQL Server Data Mining?

The fastest way to start is to install SQL Server data mining add-ins for Excel. There are some videos showing how to use them. For example here http://msdn.microsoft.com/en-us/library/dd776389(v=sql.100)


Tatyana Yakushev [PredixionSoftware.com]


------------------------------------
Reply:

As Tatyana said - going via the Excel add-in route is fastest. Here's a blog I did on how to install it and how to access the sample data file that comes with the add-in: http://parasdoshi.com/2012/08/29/how-to-enable-data-mining-in-excel-powered-by-sql-server-analysis-services/


Paras Doshi (Blog: ParasDoshi.com | Twitter: @Paras_Doshi )


------------------------------------

WMI CIMStudio from WMITools

On Microsoft Technet (It should be on your Technet CD or subscription center also)

http://technet.microsoft.com/en-us/library/cc181062.aspx

Download link is after first paragraph.

CIMStudio allows you to deeply browse all aspects of WMI including all of teh event calssesd and event types: SMTP, script, eventlog, timer - others. You can create, modify and delete events in your browser.

The help file alone is worth the download with all of its information about WMI.

 

 


jv

Reply:

Here is the actual link to the download:

http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=24045

 


If you found this post helpful, please give it a "Helpful" vote. If it answered your question, remember to mark it as an "Answer".

------------------------------------
Reply:

The link is broken. I am not able to find the download link.

Can anyone please post the correct link.

Thanks in Advance


------------------------------------
Reply:

Does this require a paid subscription or is it publicly available. 

How does it stack up with Sapiens free WMIExplorer

http://www.softpedia.com/progScreenshots/SAPIEN-WMI-Explorer-Screenshot-146175.html


Don't forget to mark your posts as answered so they drop off the unanswered post filter.



------------------------------------
Reply:

It is now restored. I just downloaded it today.


------------------------------------

Split for format

I've verified that the Dev server and the Production server are the same.  The only difference is that Production has more memory (naturally).

I'm still unsure of what to try next or what the problem could be.

  • Split by Max Meng Tuesday, September 4, 2012 8:54 AM Split for format

Update: Offline Service vs. Windows Update through Capture Process

Hello,

im asking which method is better to provide updates to a WIM-Image. First option to install the updates through the capturing Process. Secound option to capture the WIM-Image without installing updates and use the offline Service to update the WIM-Image.

What are the Advantages of both methods?



Reply:
Offline servicing cannot be used for XP and non-OS updates (e.g. Office).

Torsten Meringer | http://www.mssccmfaq.de


------------------------------------
Reply:

Adding to what Torsten said.

It totally depends on what you are comfortable with. I always use capture option if there is a major service pack or lot of updates to be applied. Both options will take time and require testing.. testing.. testing.


Regards, Vik Singh "If this thread answered your question, please click on "Mark as Answer"


------------------------------------
Reply:

Actually we only deploy Windows 7 x64. All application (IE 9) are installed through capturing. So it makes sense if i use the capture-method, to install the windows update at the end of the tasksequence, so that e.g. IE 9 gets his updates?!



------------------------------------
Reply:

What's wrong with using both? Offline servicing is vastly easier and quicker but, as Torsten mentioned, doesn't address everything; however, the things it doesn't address don't have to be in the image. IE and other application vulnerabilities can't be exploited unless you launch and use the application which doesn't happen during a TS so there is no security risk.

One other quick comment, service packs, if possible, should not be applied during a TS. Instead, you should use updated source media.

The two prime factors for putting something into an image are time and bandwidth usage and really bandwidth usage is typically only important if it affects and you are worried about time. Security is also a potential factor but can be handled in a variety of ways which offline updates does directly address.


Jason | http://blog.configmgrftw.com


------------------------------------
Reply:

If you have a properly configured "Build and Capture" and "Deploy" Task sequences. I don't think you really need offline servicing feature. You just have to have update your base "Reference image" every 3-4 months and delta updates that came out after that will get applied during deploy. Offline servicing cannot apply non-CBS updates and it's been pointed out pre Vista OSes don't support this model. 


------------------------------------
Reply:
True; however, as easy as a build and capture task sequence is -- trust me on this one, I've extolled it's virtues since before ConfigMgr 2007 and regularily lambasted folks for not using them -- using offline updates is even easier and quicker. Non-CBS updates don't really need to be in the image. Why even run a build and capture when you can simply schedule an offline update to all of your images?

Jason | http://blog.configmgrftw.com


------------------------------------
Reply:

We have two Environments. The lab Enviroment is for creating the WIM-Image. We build and capture the WIM, install all neccessary application during the build&capture sequence and we inject the updates to the WIM-Image. After the WIM-Image ist "ready", we transfer it to the production enviroment. So everything happens in the LAB.

So we have to update Windows 7 and also Office 2010. After reading all threads i think a mix of both (offline service and windows update during build&capture process) is fine.

If a new Image has to be created, i will install all Updates that are available till this moment. All updates which will come later (Patchday), will injected by offline service.



------------------------------------

Reply queue length is high in DAG

Hi Team

In one the DAG database passive copies reply queue is showing high in two servers

There are four database copies of DAG and three are passive , out of 3 servers, 1 server reply copy queue length is showing high

My current Exchnage verison is 14.1 (Build 218.15)

Do i need to re-seed from the any of the active database?

please suggest


ramakrishnan


Reply:

Before going the re-seed route, can you confirm:

1) Are the database copies in a healthy status?   (ex:   Get-MailboxDatabaseCopyStatus -server "server_name" | ft )

2) To clarify, is the problem a high "CopyQueueLength" or a high "ReplayQueueLength"?

3) If it is a high "ReplayQueueLength", are there any replay lag times configured on the database copies showing a high replay ?  (ex:  Get-MailboxDatabase | fl name, replaylagtimes )


-Matt


------------------------------------
Reply:
And is this a lagged copy of the database on that server?

Cheers,

Rhoderick

Microsoft Premier Field Engineer, Exchange

Blog: http://blogs.technet.com/rmilne  Twitter:     LinkedIn:

Note: My posts are provided "AS IS" without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.


------------------------------------
Reply:

Hi all

Apologies for the delay

yes, it is for ReplayQueueLength and  lagged copy of the database on the particular server

which is configured for 3 hours ReplayLagTimes

is that causing the high reply queue length


ramakrishnan


------------------------------------
Reply:

Most likely.  The ReplayLagTime is a parameter that specifies the amount of time that the replication service waits before replaying the copied log files into the passive database copy.  So, you should expect to see a higher ReplayQueueLength on your lagged copies when compared to your non-lagged copies.

Are the lagged copies in a "healthy" status? 


-Matt


------------------------------------
Reply:

Hi Matt

yes. all are helathy one


ramakrishnan


------------------------------------
Reply:

To me, in my opinion, if your database copies are healthy and if you have a 3 hour lag configured, then the high ReplayQueueLength should be expected, and isn't indicative of a problem.   I would only be concerned if the ReplayQueueLength on the lagged copies was not representative of the last ~3 hours worth of transaction logs from the active copy.


-Matt


------------------------------------
Reply:

Yes Matt, Looks like the 3hrs is configuartion is causing the reply queue length more always

Thanks maat


ramakrishnan


------------------------------------

what cause the backup to tape to fail on window server 2008 R2

Hi,

I have had experience this for so many weeks, Every time I run the backup to tape this message always appeared.

Virtual machine : Backup to tape failed

Description: The backup to tape job failed for the following reason: (ID 3311)

Detailed errors: Failed to perform the operation since the tape free tape is not available in Stand Alone Drive Tape Library IBM ULTRIUM-HH3 SCSI Sequencial Device (ID 24050)

can someone provide an information regarding this error.

 


Reply:

Hello st2010,

You should format or inventory your media tape.

I hope it helps you.


Luiz Eduardo MCP Windows Server 2003. MCTS Network Windows Server 2008. MCTS Application Windows Server 2008. MCTS SQL Server 2008. Se a resposta ajudou, colabore com o Fórum e classifique.


------------------------------------
Reply:

Hi,

I have had experience this for so many weeks, Every time I run the backup to tape this message always appeared.

Virtual machine : Backup to tape failed

Description: The backup to tape job failed for the following reason: (ID 3311)

Detailed errors: Failed to perform the operation since the tape free tape is not available in Stand Alone Drive Tape Library IBM ULTRIUM-HH3 SCSI Sequencial Device (ID 24050)

can someone provide an information regarding this error.

 

Hello st2010,

Have you resolved your question?


Luiz Mercante
MCP | MCTS Windows Network | MCTS Windows Apps | MCTS SQL 2008
sqldicas@outlook.com
http://sqldicas.com.br


------------------------------------

Shortcut properties: Setting target folder to current folder

I've got a flash drive that's used in a lot of PCs (several at home and a bunch in public places) and often for 1 set of files. The files/folders organization makes it time-consuming to navigate to those folders, so I set up a shortcut. The shortcut works great on that PC, but on other PCs the drive letter is different so the shortcut doesn't work. My flash drive has been listed as anything from Drive (D:), Drive (E:)... to Drive (J:). I've been looking for a way to edit the target folder in the shortcut properties to use the current directory as the starting point.

After some searching, I found this %windir%\system32\cmd.exe /c start "" "%CD%\folder1\folder2\folder3" at the link:

http://stackoverflow.com/questions/1169556/making-a-windows-shortcut-start-relative-to-where-the-folder-is

The top answer works on my home PCs (where I have full rights), but I'm wondering if this may not work on locked down PCs since it's using the command prompt. If so, is there another way to set the current directory in the shortcut properties?


Reply:

Have you already decided against using an application designed to do that ?

http://www.pegtop.net/start/


Don't forget to mark your posts as answered so they drop off the unanswered post filter.


------------------------------------

No comments:

Post a Comment

Setup is Split Across Multiple CDs

Setup is Split Across Multiple CDs Lately I've seen a bunch of people hitting installation errors that have to do with the fact th...