Monday, February 21, 2022

Office 2010 impossible to install (error 1935)

Office 2010 impossible to install (error 1935)

I had Office 2007 running fine on my Win 7 x64 machine, don't ask me why I decided to waste my time to uninstall it and try to install Office 2010... Get the error 1935 bla bla.... for about 20 trials to install.

Tried all the rounds suggested: .NET repair, system restore now no longer complete (no change to system), no matter which restore point I choose..., disble Anti-virus (Kaspersky), try to install in Safe mode, I probably forget half of the list I have tried... Always same result. Worse: I get the same thing if I try simply to reinstall Office 2007!

I get that (no details needed - I see this had been a classic for at least 5 years now with no effective solution but to reinstall Win 7 or Repair - even though I have read the latest sometimes did not even worked). Both are out of my options: this machine run much more important programs/projects (recording studio, video editing) for fooling around with reinstalling. Plus, I have a OEM install and paid for online purchase of upgrade to Win 7 Pro. So even repair in these conditions is not possible from what I read.

I have not read anything new written since early 2010 on this topic, is there anything new to solve it? It appears MS have not been able to solve this for 6 years, and 3 versions ! I had same problem last year with Expression Web 2 and 4, finally been able to solve with 4 after a system restore. I was hoping to do the same here.

I'm now left with the unpractical option of doing all my Office work on my laptop. Funny enough: I have a Mac version of Office 2011 on a Mac and it run soooo smoothly. Even more funny: I *only* have this install problem with MS products, no other *non-MS* programs!... Unless someone has the miracle solution for this.

With all due respect, please do not point me to the .NET bullshit.. Unless you have succesfully done it... Read the thousands of users who had tried it, wasted their time (so I did), to no avail.  Plus that ''updated'' article still point to .NET 1.1 or 2.  Most of us under Windows 7 run .NET 4. Yes I tried to repair it.

Thanks
Rob


Reply:

Hi,

 

Thank you for using Microsoft Office for IT Professionals Forums.

 

We are striving to capture any and all product issues/product feedback so as to ensure that we are continuously developing Microsoft products to meet our customers' needs. This is exactly why feedback such as yours is always valued.

 

Thanks for your understanding.

 

 

Sincerely

Rex Zhang


  • Edited by Rex Zhang Sunday, October 16, 2011 12:41 AM

------------------------------------
Reply:
Everything that Rob has stated in his summation of this problems is true. I have now wasted far to much time on obvious problems that MS has chosen not to address. All the hotfixes, restores have failed to correct this error 1935 and MS needs to step up to the plate and address this, 6 years really.......

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

Rob,

You are very right. This issue is a real pain. I have tried all kinds of uninstalls and reinstalls, but Error 1935 simply refuses to go away.

Thanks,

Maheep


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

SharePoint Designer 2013 problem with SharePoint Foundation 2013 Preview?

 I happily installed Designer 2013, and then tried to open a SharePoint Foundation 2013 Preview site (internet-facing), and it got stuck in a loop presenting error messages saying "the server could not complete your request", where th only way to het out was Task Manager.

So, can Designer 2013 open a Foundation 2013 Preview site?


Reply:

I am working on another theory - that SharePoint Designer 2013 does not work properly on Windows 7 or Windows 8.  I have successfully opened a Foundation Preview site in Designer final, but on a Windows Server 2012 machine.

It would be really good to get clarity on this - is this true, and whether it is by design, or whether there is still a bug.

It is a BIG issue if Designer will only work on a Server OS.


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

I have used the RTM of Designer released this past week on Windows 8 with no issues.


Mike Smith TechTrainingNotes.blogspot.com my SP customization book


------------------------------------
Reply:
I can open Sharepoint Foundation 2013 Preview and RTM sites just fine in Sharepoint Designer 2013 running on Windows 8

  • Edited by AddiEinars Wednesday, November 14, 2012 8:10 PM

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

I use SPD2013 RTM on Windows 7 without any issues.

Regards, Michael (http://sp2013-blog.com)

  • Edited by MikhailSP Saturday, March 9, 2013 10:40 PM

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

Mike, did you install SharePoint Designer 2013 from http://www.microsoft.com/en-us/download/details.aspx?id=35491? That is the RTM release.

And when you say SPF 2013 Preview site, do you mean a SharePoint Foundation pre-release server installation?

Pre-release and RTM versions of SPD must run against the same server releases.


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

SQL Server Jobs Problem with Support

SQL Server 2000 SP4 - Windows 2003 SP2.

We have multiple critical jobs running on a production server which create reports to send to clients every day. These jobs run during night time - off production hours.

We have support group who checks these jobs and if they fail, they call the DBA (me) to trouble shoot the errors. I have added them (Their doamin group) into the "TargetServersRole" on the msdb database on the SQL Server. The problem is, this role allows them to change the jobs owners and disable the jobs.

Last Saturday morning, one of them clicked on "Disable Job" Instead of "View Job History..." and did not realize it. Since Saturday, the particular job was not running and we realized it when the client called and ask where the files were (The job runs 7 days a week).

Just last night, one of them changed the job owner (Put himself as the owner) and the job failed with the error saying that the job owner did not have permissions to the database. The job runs under a domain account because it has to access multiple servers.

What can I do to stop these problems ?. Giving them access only to read the job history and nothing else ?.

Yes, we will be upgrading to SQL Server 2008 R2 but no earlier than sometimes mext year. I have thought about querying the sysjobhistory table and have them look at the result but I don't want to miss anything.

What is the best way to implement this ?

Thank you.


Reply:

Hi,

In, my opinion these users should be assigned to SQLAgentReaderRole.

http://msdn.microsoft.com/en-us/library/ms188283.aspx


Sebastian Sajaroff Senior DBA Pharmacies Jean Coutu


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

In SQL Server 2000 there is no SQLAgentReaderRole, nor any of the other SQLAgent% roles.  So 'TargetServersRole' is the workaround for SQL Server 2000.  (Although I would encourage an upgrade when you can affort to do so.  Not only for supportability, but also for the increased functionality which would help you.)

What I did in that enviroment was the following:

  1. Give no special rights to their regular login.  They should be able to manage their own jobs, created by them.
  2. Give the users a second account that is a member of TargetServersRole to used for when they actually need to make change to some other job. 
  3. Give the second account users a little lecture about accountability.
  4. Create views that allow them to select job history, et cetera, without needed elevated rights.  Grant SELECT rights to those views for the users who need the information.

Then follow up when somebody does something undesirable.

All the best,
RLF

PS - Look at the stored procedures that provide the job history and use that code to create your own view.

  • Edited by SQLWork Tuesday, December 4, 2012 9:44 PM PS

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

In SQL Server 2000 there is no SQLAgentReaderRole, nor any of the other SQLAgent% roles.  So 'TargetServersRole' is the workaround for SQL Server 2000.  (Although I would encourage an upgrade when you can affort to do so.  Not only for supportability, but also for the increased functionality which would help you.)

What I did in that enviroment was the following:

  1. Give no special rights to their regular login.  They should be able to manage their own jobs, created by them.
  2. Give the users a second account that is a member of TargetServersRole to used for when they actually need to make change to some other job. 
  3. Give the second account users a little lecture about accountability.
  4. Create views that allow them to select job history, et cetera, without needed elevated rights.  Grant SELECT rights to those views for the users who need the information.

Then follow up when somebody does something undesirable.

All the best,
RLF

PS - Look at the stored procedures that provide the job history and use that code to create your own view.

Thank you for all the info. The support group does not add/delete/run jobs but check the existing jobs and let the DBA group know if any jobs fails. When the DBA group gets the call, they immediatelly trouble shoot the issue and make sure that the report(s) are created and sent to client(s) before the dead lines.

I can't find a way for them to view jobs or the jobs history without giving them access to TargetServersRole. I thought about creating views and give them access to views but the jobs schedules spread to too many different times. Another words, I have to create too many views.

There are jobs to check almost every hour from 10:00 PM to 7:00 AM Every day.

I think I will leave it as it is for now and try to push the management to upgrade SQL Server sooner than later.

Thanks again.


------------------------------------
Reply:
Actually, I removed some of the permissions from TargetServersRole and it seems to be working...........

------------------------------------
Reply:
Very good.  It has been quite a while since I worked on 2000, so memory begins to fade. - RLF

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

How to change Windows 8 Weather app Language?

When i finish installed Windows 8 Release Preview, i opened the Weather app in Start. Then, the Weather/Panahon app becomes arabic. And the rest of the apps are english. Then, i refreshed the Windows 8, it failed. Then, i start again the Weather app, it becomes arabic again. Here the picture.

What can i do to change the language in english/filipino?


Reply:

This forum is for discussion by developers about writing their own Windows 8 apps.

For questions about using Windows 8 please post in the Windows 8 forums on http://answers.Microsoft.com

Thanks,
   Rob


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

I goole this page, so where is the solution? It is not the free software so please fix this!

add

I find out what was the problem reason. The app takes the language from your first lang in your langlist. So change one to get it work...


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

email attachments

attachments forwarding being stripped out would the answer  work on widow 8 

 I found that if I moved the email with it's attachments to documents then go back to documents and click on the email then forward it the email with attached pictures are sent and received by recipient,

  • Edited by don jeb Thursday, December 6, 2012 8:47 PM

Reply:
Can you be more specific?  Are you having issues with Windos 8 and forwading emails with atachments?

JAUCG - Please remeber to mark replies as helpful if they were or as answered if I provided a solution.


------------------------------------
Reply:
Attachment stripping will continue for any operating system, if this is not matching the constraints set on attachment handling by outlook and / or exchange

Regards from ExchangeOnline


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

I have just purchase a new laptop running windows 8 with a hotmail address when I try to forword emails I have recieved that show an attchment picture the email is sent with the picture missing and in its place is either a small square in the top left hand side or  where the picture was is a blank grey space any written words remain.  I have read a lot of related topics but having only a limited amount of computer knowledge (oap) I am at a loss. I was running windows xp on my old laptop without any of this.

Ps I do have norton av running  

   

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

Hi,

Check your internet explorer settings and make sure that it's not preventing to show the pictures


Regards from ExchangeOnline


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

There is a setting in Internet Options, Advanced, Multimedia -- 'Show pictures'.  I don't have a Windows 8 box to confirm, but that is in Windows 7.

As a FYI, this is the wrong forum for this question as it is not Exchange Server related.


JAUCG - Please remeber to mark replies as helpful if they were or as answered if I provided a solution.


------------------------------------
Reply:
many thanks

------------------------------------
Reply:
No problem.  If either of us answered the question, please make sure to select the appropriate answer.  Thanks.

JAUCG - Please remeber to mark replies as helpful if they were or as answered if I provided a solution.


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

ADMA Stopped-Server Error WHile Delta Import and FUll Import

I am facing the ADMA Stopped-Server Error WHile doing Delta Import and FUll Import for Active Directory Management Agent.

Please help.


Thanks & Regards~ Deepak Arora

Azure architecture for social games

My partner and I have been working on a social game for Facebook. We've gotten pretty far, but I've run into a performance issue and it may be with the way I've architected the solution. I'm hoping someone might have some advice or maybe just confirmation.

The full architecture consists of:

1. Flash/AS3 game client that runs on Facebook.

2. Azure Storage (CDN): Hosts our content (and the game client).

3. Azure SQL Database: Holds the player data, event information,etc.

4. Azure Cloud Services: Hosts the server side components for handling requests and brokering between the client and the database.

We're also using a component called FluorineFX that manages communication between the clients and the server components. So, the client never talks directly to the database. Instead, it does an RPC to the server components (.Net classes that handle the HTTP request) who query the database and then return the results to the client.

Basically, the flow is: client -> server comp. -> SQL -> server comp. -> client

For the most part, everything is golden. Where I'm running into an issue is that the server component handles a specific request that is doing about 40 queries (it's checking if the player met event requirements that should be acted on). The whole request is taking about 4 seconds.

After some performance testing, the bulk of the time is spent between the server components and SQL. It hit me that part of this may be that the server components running in the Azure Cloud Services may not be anywhere near the SQL Database and I'm essentially doing 4 internet requests for each data request (see flow above).

So, after all this (and thanks for sticking with me!) I'm wondering:

1. Should I have architected the server requests/SQL calls differently?

2. How do I get the server components as close to the database as possible (or are they already)?

Any insight or tips would be super helpful!

Thanks,
Tim

Reply:
Are they all running within the same Azure datacenter?

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

I hate to admit it, but the answer is 'no'.  

A year ago when I set it up, I thought they were.

I've migrated the database to the same location and performance went from about 4 second to 0.6 seconds.

thanks!


Tim Tryzbiak


------------------------------------
Reply:
Glad to hear that! Beats refactoring and rearchitecting :) ! Good luck with the game (as long as it's not farmville!)

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

Microsoft Publisher 2010 Will Not Allow Scroll When Text Box Is Selected

Is there an option we can enable/disable to stop the following behavior in MS Publisher 2010?  We have a two-page publisher file with several text boxes.  When we have a text box selected (or text within a text box selected) and then scroll vertically or horizontally within the file in Publisher, Publisher automatically and immediately unscrolls bringing us right back to the selected text/text box.  This makes it a little difficult to copy from one text box/location to another in the same Publisher file.  The workaround seems to be to select, copy, click somewhere off the publisher page, then scroll, then paste into a different text box.  Cumbersome.  Help please.  Thank you.
Wendy Barlow

Reply:

I'm having the same problem, frustrating as hell.


dmatranga


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

This happens to me as well. I found a workaround on another thread from ThomasO'Connor.

http://answers.microsoft.com/en-us/office/forum/office_2010-office_other/why-cant-i-scroll-to-the-bottom-of-a-10-text-box/60871c9f-e771-e011-8dfc-68b599b31bf5

"The solution -- let's be honest and call it a workaround -- is to open Publisher and click the View tab. In theShow area, uncheck Scratch Area."


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

Unified Message Service URL: https://server.domain.local/EWS/UM2007Legacy.asmx

Hi there

we have migrated to exchange 2010 server. after doing user move request i run the "Test E-Mail AutoConfiguration" and have noticed this message Unified Message Service URL: https://server.domain.local/EWS/UM2007Legacy.asmx

We dont have a unified message service yet but want to know about the message what does it mean when it add Legacy.asmx at the end. It is a problem?

Can anyone explain please. Thnak you


Reply:

You can ignore that. Its a just a place holder.

There was a UM Virtual directory in Exchange 2007, but it was removed and its funtionality was merged into the EWS virtual directory in Exchange 2010.


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

When Connected through Direct access client on DA web monitor under session status it shows intranet and Infrastructure access both

When Connected through Direct access client on DA web monitor under session status it shows intranet and Infrastructure access both .

only difference is under intranet access I see my user name against computer account and for infrastructure access I see only computer account.

Can someone help me understand why it is like this ?


Reply:

A DA enalbed client will as soon as it has Internet connectivity and is outside the corporate network attempt to connect to the DA server regardless if the user is actually logged on. This is done in the context of the computer account. The access for the computer account is for DC's, DNS, SCCM etc or whatever you have configured as infrastructure servers. Additionally, any GPO that applies to the computer will be applied.

Reason for this is to be able to authenticate the user that logs on to the computer.

When a user logs on and attempts to access an intranet resource, the intranet tunnel is established in the users context. Any access to internal resources from the user is done in the users context (even to infrastructure servers as long it is the user that makes the request and not the computer).

Hence you will have two tunnels per "unit" (computer/user).

Does that explain it?


Hth, Anders Janson Enfo Zipper


------------------------------------
Reply:
Everything that Anders said is true, and you may also notice some other behavior that doesn't always make sense in the Web Monitor. In most environments, each DA client machine has the ability to connect to the server over multiple connectivity platforms (6to4, Teredo, IP-HTTPS) - sometimes a client will connect more than one of these methods at the same time, and so you may even see multiple connections in the Web Monitor in this regards. Not only Infrastructure and Intranet tunnels, but also separate tunnels for Teredo and IP-HTTPS, for example. The IPsec rules in WFAS are configured to "go for it" - they don't care what connectivity platform gets them there, and so they will try to connect over whatever is available. So depending on what happens during boot and the latency of the connection where the client computer is sitting, it is very common to see multiple tunnels listed for each machine.

------------------------------------
Reply:
I understand , for how much time does UAG server keep Infrastructure and Intranet tunnel active ?

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

I believe the lifetime for the SA of the IPSec connection is 60 minutes.

From the top of my head, I don't remember how UAG does its housekeeping for the tunnel.

Jordan?


Hth, Anders Janson Enfo Zipper


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

Thanks Anders and Jonson my doubt is  sometimes I see that Infrastructure tunnel is active for hour with user account name mentioned is that normal behaviour ?

Just to Elaborate lets say I connect my laptop from outside system it establishes Infrastructure tunnel first and once user accesss resource over INtranet it eastablish Intranet tunnel .Now when I stop accessing traffic to Intranet resource as per my understanding  it should show only Infrastructure tunnel active with no username mentioned  . Please correct me here.  

Thanks for help .


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

I don't have all the technical details of how long the tunnels are supposed to stay active, but I know from experience that normally you will see Intranet tunnels for your users that are logged into their computers, whether they are doing anything or not. It's actually pretty rare to see only an Infrastructure tunnel for any given laptop, because this usually only happens when the computer is sitting at the login screen waiting to be logged into. Users don't generally leave their laptops in this state for very long. Once the user logs in, the Intranet tunnel typically establishes right away. If you look at WFAS as opposed to the Web Monitor you will notice that each laptop actually has multiple tunnels. Sometimes multiple infrastructure tunnels, sometimes multiple intranet tunnels, sometimes multiples of both. Again I can't tell you exactly why this happens, but it is completely normal for these tunnels to appear to disappear seemingly at random.

The web monitor "cleans it up" and usually only shows you one infrastructure and one intranet tunnels per user per transition technology, but that doesn't mean more tunnels aren't active in the background.

One other important note: Web Monitor is pretty slow in releasing sessions from its interface. It is very common for you to see a tunnel in Web Monitor where the laptop has actually been turned off for a number of minutes. This is unfortunate, but is just the way it is.


------------------------------------
Reply:
If a client wish to disconnect direct access connectivity from their laptop is there any way they can achieve this ?

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

No, not a regular user. There is an optional setting in the DirectAccess Connectivity Assistant where you can give the users the ability to disable DirectAccess name resolution (disable the NRPT temporarily) - the only valid use-case I have ever seen for that is if a user is sitting in a customer's network, for example, where they are trying to access "server1", but you have a "server1" in your corp network, and so DirectAccess is essentially hijacking their server1  request over the DA tunnels instead of letting that traffic stay local. If you have that case, you can enable this setting which lets the users disable DA name resolution. It turns itself back on after a network status change or after a reboot.

Even in this temporary state of not having DA name resolution, the tunnels are still built and functional, so you still have management access over those laptops.


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

how can we determine which internet ipv6 transition technology is prefered by client to connect to da server ?

I mean how can we check when client is connected through teredo if it had tried 6to4 first ?


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

The transition technology is defined based on what type of IP address the client has.

If the client has a public IP address, 6to4 will be tried first.

If the client has a private IP address, Teredo will be tried first.

Last resort is IP-HTTPS.

The problem with this is that if (as in some mobile carrier networks for some bizarre reason) you receive a public address on your clients network connection and that address is NAT'ed you will run into problems. Hence the reason to disable 6to4 in some cases and only use Teredo and IP-HTTPS.


Hth, Anders Janson Enfo Zipper


EDIT: This does not apply in all scenarios, in some scenarios not all protocols are available.
  • Edited by Anders Janson Wednesday, December 5, 2012 2:13 PM Clarity

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

As Anders said, it is common practice to disable 6to4 on all of your DA clients with a GPO because it is unreliable on cell connections. Teredo will work just as well over those public IP'd cell connections, so you might as well just use that.

When Teredo and IP-HTTPS are active at the same time (this happens occasionally), IP-HTTPS is the one that is actually carrying the traffic. You could also check WFAS and look in the active Security Associations and figure out which transition tunnel they are using by looking at the IP addresses listed in the IPsec tunnel information.


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

Synching Files from a Mac to a Server 2008 R2 Environment

What is the best method to sync files from a Mac to a Server running 2008 R2 or SBS 2011?


Reply:

Sorry, this forum is for questions regarding the Windows Server Backup and backing up functionality in Windows Server OSs. Your question should be asked in the File Services and Storage forum, linked here:

http://social.technet.microsoft.com/Forums/en/winserverfiles/threads


Please VOTE as HELPFUL if the post helps you and remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.


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

I noticed you submitted a new thread in File Services and Storage forum and I've replied in that thread:

http://social.technet.microsoft.com/Forums/en-US/winserverfiles/thread/9d65b58d-1a8c-4879-8571-f90c631d6b36?prof=required


TechNet Subscriber Support in forum |If you have any feedback on our support, please contact tnmff@microsoft.com.


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

How to configure endpoint address of WCF service programmatically.

I created a WCF SharePoint Web service using CKS.dev SharePoint 2010 WCF template and I deployed it in site collection. I can view the MEX in my browser. When i refer it a visual web part and try to run it, it shows following error.But i can use the same service in ASP.Net web application. What should i do not? Is there anything to configure programmatically.


Reply:

These are the files i have in my project

If I should add web.config where should I add it?

Expecting for the help. Thanks in advance.



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

Hi

The normal place to put a web.config file (if you need it) is in the application's root folder


Kind Regards

Bjoern
http://spviking.com
Twitter: Follow @bjoern_rapp


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

Service application already runs fine without web.config, will it recognize it i add web.config manually??


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

Found solution for this issue. Add following code to Configure Binding and Endpoint address manually.

 BasicHttpBinding binding = new BasicHttpBinding();   binding.Security.Mode = BasicHttpSecurityMode.TransportCredentialOnly;   binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Ntlm;   EndpointAddress endpoint = new EndpointAddress("http://xxxx/_vti_bin/Service.svc/mex");   ServiceReference1.DocumentUploadingServiceClient callService = new ServiceReference1.DocumentUploadingServiceClient(binding,endpoint);   callService.ClientCredentials.Windows.AllowedImpersonationLevel =   System.Security.Principal.TokenImpersonationLevel.Impersonation;      callService.docLibraryUploader(flUpld_FileUploader1.PostedFile.FileName,flUpld_FileUploader1.FileName);

This solves above error.


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

BULK LOAD to Oracle using SSIS


Reply:
Your point being?

MCSA SQL Server 2012 - Please mark posts as answered where appropriate.


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

End User Portal for System Center

I think the System Center Suite is really great, but misses a good end user interface. Therefore we build one on Orchestrator....and best of all it's free. Try it on EUPSCO(dot)com and let me know if it's an improvement.

Custom Authentication Servers - Finding Users/Groups

Hi,

We have built a custom repository.inc to query an ASP.NET database when users log in, this works fine but we'd also like to restrict access to the site(s) people have access to based on their group membership. As I understand it (and you'll have to forgive my limited UAG knowledge), you can restrict access to applications in a trunk by using the "Authorizaion" tab in application properties.

The issue we have is when chosing our custom authentication provider in the Authorization tab the only user/group it finds is "Authenticated Users", my question is....are there any methods I need to implement in order to be able to enumerate the groups to display/chose them in the screen below?

Many Thanks

Azure Queues, sending messages/objects as XML, JSON, binary (BinaryFormatter) or binary (ProtoBuf) ?

We'd be using Azure Queues as a cloud based RPC i.e. our web-roles, worker-roles and .exe's running on those roles (scheduled during deployment) would be getting their input/output from queues. The queues are all sending/receiving C# classes/objects, so we'd need to serialize them before they enter the network.

We see 4 choices:

1. Serialize to XML

2. Serialize to JSON

3. Serialize to Binary (via BinaryFormatter, example)

4. Serialize to Binary (ProtoBufs, used almost exclusively by Google's own RPC)

I dislike XML for it's verbosity and would pick JSON anyday over it for pure-string transfers. We are leaning slightly towards JSON but before we commit and implement the architecture, I wanted to throw it over here for the experts to comment on.

=> Does anyone have advice on any of the above? Any gotchas or delights from your experience? Speed, overhead, compatibility etc are all valid vectors to present a case.

Thanks!



  • Edited by Sid.S Wednesday, December 5, 2012 1:03 AM

Reply:

Hi,

Here is a workaround for sending more data in size of queue message (message has the size limit):

http://dotnetbyexample.blogspot.com/2009/07/storing-objects-as-compressed-messages.html

You can try it, maybe it will be a better way.

Thanks,


QinDian Tang
MSDN Community Support | Feedback to us
Develop and promote your apps in Windows Store
Please remember to mark the replies as answers if they help and unmark them if they provide no help.


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

Csobject are not found in Attribute-value pair MA .

We use Attribute-value pair MA to add proxyaddress from text file to MV objects.

I searched Csobject of that MA by Search Connector Space but only one CSobject is found .

We sometime run that MA, so I wonder why only one CSobject exist.(I expected there were more CSobjects. Attribute pair file has a lot of entry currently)

If I run  sync Attribute-value pair MA, csobject will be disappear ? 


Reply:
Are you sure there are more than one DN's (unique records) within the text file, if the DN is the same you will see only this object within the connector space.

Need realtime FIM synchronization and advanced reporting? check out the new http://www.imsequencer.com that supports FIM 2010, Omada Identity Manager, SQL, File, AD or Powershell real time synchronization!


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

Comparing SP2013 Templates

Hi, i Am looking for something that compares the different templates you get for Site Collections in SP2013?

Anyone know about something like that?

Planning a implementation and deciding what the best templates for the diffrent area's are.

Thanks

Problem with Lync210 after attempting installing updates 5/20/2012, error 3005 unhandled exception

We attempted to install updates eysterday to our Lync2010 front end server yesterday.  update KB2689848 errored out during instalaltion and now none of our Lync web services are working, including conferencing.  The Exception message is the same in all cases:  Exception message: Cannot create SharedPerformanceObject instance.

Example error message:

Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 5/21/2012 9:17:20 AM
Event time (UTC): 5/21/2012 1:17:20 PM
Event ID: b7addda1b6ae4d13a263951472cab7eb
Event sequence: 2
Event occurrence: 1
Event detail code: 0
Application information:
Application domain: /LM/W3SVC/34577/ROOT/Abs/Handler-1-129820798341125365
Trust level: Full
Application Virtual Path: /Abs/Handler
Application Path: C:\Program Files\Microsoft Lync Server 2010\Web Components\Address Book Files\Int\Handler\
Machine name: {NETBIOS NAME OF LYNC SERVER}
Process information:
Process ID: 12980
Process name: w3wp.exe
Account name: NT AUTHORITY\NETWORK SERVICE
Exception information:
Exception type: InvalidOperationException
Exception message: Cannot create SharedPerformanceObject instance, factory = Microsoft.LiveServer.WebComponents.WebCompPerfPInvokeWrapper, perf object id = 9
Request information:
Request URL: https://{inside URL of LYNC server}:443/abs/handler/C-103b-103e.lsabs
Request path: /abs/handler/C-103b-103e.lsabs
User host address: {inside IP address of on eof our Lync clients} 
User:
Is authenticated: False
Authentication Type:
Thread account name: NT AUTHORITY\NETWORK SERVICE
Thread information:
Thread ID: 12
Thread account name: NT AUTHORITY\NETWORK SERVICE
Is impersonating: False

Stack trace: at Microsoft.LiveServer.WebComponents.SharedPerformanceObject..ctor(IPerfNative perfNativeImpl, Int32 objectId, String instanceName)

at Microsoft.LiveServer.WebComponents.WebPerfCounters.PerfCategoryWEBAUTH..ctor(String instanceName)

at Microsoft.Rtc.Internal.WebServicesAuthFramework.OCSAuthModule.Init(HttpApplication app)

at System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers)

at System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context)

at System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context)

at System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext)

Custom event details:


Reply:

Have same problem!

I restart IIS and problem is gone.


MCSE:S, MCSE:M, MCITP, MCTS, CCNA, CCDA Infrastructure expert


  • Edited by DJ Spy Wednesday, May 23, 2012 6:37 AM

------------------------------------
Reply:
remove the Lync Web Components

run Step 2 in the Lync Deployment Wizard and resinstall Web Components

restart the Lync FE

Gautam.


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

Multiple AD connectivity with out internet

Hi,

I have a customer with multiple domains and he would like to have lync functionallity between users in all domains. Setting up a federation with Microsoft gateway is not an option as there is no internet access.

Is this possible, will I require a trust between the domains?

Thanks


Gil Gross | Project Manager & Technical Consultant | G-Net Network Solutions | www.g-net.co.il


Reply:

Well that depends: Do you have one Forest or Multiple Forests?

If you have one Forest and Multiple domains you don't have to do anything special.

If you have Multiple Forests then you will need at least a Front-End and EDGE per Forest and Require different SIP Domains to do federation between them.


- Belgian Unified Communications Community : http://www.pro-lync.be - MCM/MVP/MCT


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

Hi,

It can be done but the underemployment is too complicated. If you have a single forest, then as Johan mentioned below, you just need to prepare those domains by running the wizard.

If it's a multiple forest setup, then you need to go for the resource forest topology and this one is the complicated part. Go through below article for more info.

http://technet.microsoft.com/en-us/library/gg670909(v=ocs.14).aspx


Thamara. MCTS, MCITP Ent Admin, Specialized in U.C Voice OCS 2007 R2 Z-Hire -- Automate IT Account creation process ( AD / Exchange / Lync )


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

Thanks all for your quick replies.

I like the idea of an edge server between the forests however this will not supply presence.

I dont know if a resource forest topology is an option as the forests all have exchange installed in each forest allready.


Gil Gross | Project Manager & Technical Consultant | G-Net Network Solutions | www.g-net.co.il


------------------------------------
Reply:
on the contrary EDGE will provide presence for Federated parties but not excactly the same as internal.  A search is not available so you have to add contacts as normal Federated contacts.

- Belgian Unified Communications Community : http://www.pro-lync.be - MCM/MVP/MCT


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

Thank you all for your answers.

My last question is: Can I federate with out internet? As I saids this is a standalone network with multiple forests.


Gil Gross | Project Manager & Technical Consultant | G-Net Network Solutions | www.g-net.co.il


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

Thank you all for your answers.

My last question is: Can I federate with out internet? As I saids this is a standalone network with multiple forests.


Gil Gross | Project Manager & Technical Consultant | G-Net Network Solutions | www.g-net.co.il

Yes.
 
Federation is based on partner DNS resolution and partner authorization policies, If the appropriate DNS records and authorization policies are in place each forest relationship, federation should work just fine.



|| MCITP: EA, EMA, Lync SA ||


------------------------------------
Reply:
Thanks

Gil Gross | Project Manager & Technical Consultant | G-Net Network Solutions | www.g-net.co.il


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

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...