Tuesday, March 1, 2022

Hotfix 1.1.1501.203

Hotfix 1.1.1501.203

Hello,

Can some one explain me Hotfix  1.1.1501.203 with respect to SQL Server 2000 SP4.what's importance of this hot fix and can it be applied on SQL 2005 SP3?


Reply:
 

Hello,

It is a fix that applies only to the JDBC driver used to get connected to a SQL Server 2000 instance. Please see the following article for a detailed explanation:

http://support.microsoft.com/kb/928616

Hope this helps.


Regards,

Alberto Morillo
SQLCoffee.com


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

Passing values in select statement as a parameter

Hello,

Iam trying tobuild a report inwhich the user can select what he want to see and group by. My SQL statement is somethign like this:

  

 select @groupA
,@groupB
,COUNT(*)
from vw_Fact
 group by @groupA,@groupB order by COUNT(*) desc

I would like theuser to decide how he wants togroup it.

Now when i paste tjis query in query builder, it first asks for the values of those parameters. If i leave them NULL, then i get a group by error.

If i cancel it and go ahead, doesnt show me any available columns. 

I am very  new to SSRS so it would be great if you could explain in baby steps.. How can i get this functionality.

Thanks,

CK


Reply:

First thing you will have to understand, the output of alll the queries shpould be the same. Reason is, if you have your first out selected for group - G1 and G2, then your output column names would be G1 and G2. You would be using this name for creating your report items. Next time, when you select G3, the report would be expecting G2 in the report items and would give an error.

A work around would be to alias the columns as say, col1 and col2 (if you know that the column numbers are fixed, else you need a different thought process).

You can write a sample query without parameters like 

 select G1 as col1,   ,G2 as col2  ,COUNT(*) as Cnt  from vw_Fact  

Once you press on OK, you can see that the fields are there in the dataset. Now go and edit your sqlquery like shown below

="select "+Parameters!groupA.Value+" as Col1,"+Parameters!groupB.Value+" as Col2,COUNT(*) as Cnt  from vw_Fact   group by "+Parameters!groupA.Value+" ,"+Parameters!groupB.Value+" order by COUNT(*) desc"

Make sure that the entire code is in one line in the expression editor, else you might need to add the  start quotes and end quotes as required at each line.

You can see that basically we are creating a dynamic sql but the column output is always same. So it should work, I have done this type of reports before.


Cheers,
Jason
P.S. : Please click the 'Mark as Answer' button if a post solves your problem! :)

Some Random Thoughts

Follow @de_unparagoned


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

Lotus Notes to SharePoint Migration

Hello,

Currently I am working on a project where we need to migrate various Lotus Notes databases to SharePoint 2010 environment. We have planned to do this with Quest. The problem that we are facing is, many of the LN applications/ databases have size more than 20GB. It's very hard to migrate 20GB application on a single site collection.  What is the limit for a single site collection? Can we upload 20-50GB data on a single site collection?

And again the requried time for migrating 20GB data is worrying factor. How much time will require to migrate 20-40GB data? It may take several days to complete the migration job. What does happen if migration throws any error in between executing the job? If it throws any error do we need to run the jobs again for all the records?

Can I have any suggestions about managing site collections and dividing migration jobs??

Thakns,

Pratima


Reply:

Hi there,

first, on a functional level:

- do you really have to migrate all that data? Perhaps you only need the data from the last 3-5 years instead of everything ?

A site collection can be as large as the content db (200GB). (via http://technet.microsoft.com/en-us/library/cc262787.aspx#ContentDB)

Your question of the required time is heavily influenced by the hardware / network you have.

Ask the people of Quest, they can probably give your some rough estimations. Ofcourse you are going to do a test run, so you can check the time there ;)


http://marijnsomers.blogspot.com || @marijnsomers


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

Not wanting to split hairs about the size of the Site Collection:

CORRECT:

A site collection can be as large as the content database size limit for the applicable usage scenario. For more information about the different content database size limits for specific usage scenarios, see the Content database limits table in this article.

HOWEVER:

In general, we strongly recommend limiting the size of site collections to 100 GB for the following reasons:

  • Certain site collection actions, such as site collection backup/restore or the Windows PowerShell cmdlet Move-SPSite, cause large Microsoft SQL Server operations which can affect performance or fail if other site collections are active in the same database. For more information, see Move-SPSite.
  • SharePoint site collection backup and restore is only supported for a maximum site collection size of 100 GB. For larger site collections, the entire content database must be backed up. If multiple site collections larger than 100 GB are contained in a single content database, backup and restore operations can take a long time and are at risk of failure.

Reference: http://technet.microsoft.com/en-us/library/cc262787.aspx#SiteCollection


blog: http://sharepointingitout.blogspot.com


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

[Info Sharing]: You may get "Error 1316.A network error occurred while attempting to read from the file Path\SSCERuntime-ENU.msi" error message when you repair an instance SQL Server 2008

Title:  You may get "Error 1316.A network error occurred while attempting to read from the file  Path\SSCERuntime-ENU.msi" error message when you repair an instance SQL Server 2008

 

Intended Audience : 

 

Developer 

General User 

IT Pro 

Knowledge Worker 

OEM 

Partner

 

 

Applies to Products: Microsoft SQL Server 2008 Workgroup, Microsoft SQL Server 2008 Web,  Microsoft SQL Server 2008 Standard Edition for Small Business,  Microsoft SQL Server 2008 Standard,  Microsoft SQL Server 2008 Express with Advanced Services, Microsoft SQL Server 2008 Express,  Microsoft SQL Server 2008 Enterprise,  Microsoft SQL Server 2008 Developer,  Microsoft Visual Studio 2008 Team Suite Service Pack 1, Microsoft Visual Studio 2008 Team Edition for Database Professionals Service Pack 1, Microsoft Visual Studio 2008 Team Edition for Software Architects Service Pack 1, Microsoft Visual Studio 2008 Team Edition for Software Developers Service Pack 1, Microsoft Visual Studio 2008 Team Edition for Software Testers Service Pack 1, Microsoft Visual Studio 2008 Standard Edition Service Pack 1, Microsoft Visual Studio 2008 Professional Edition Service Pack 1, Microsoft Visual Basic 2008 Express Edition Service Pack 1, Microsoft Visual C# 2008 Express Edition Service Pack 1

 

Source SR/Case Number: Click here to enter text.

FAST PUBLISHING

Symptom

Consider the following scenario:

·          You install Microsoft Visual Studio 2008 Service Pack 1.

·          You install Microsoft SQL Server 2008 side by side with Visual Studio 2008 Service Pack 1.

·          You try to repair the SQL Server 2008 instance, using  Add or Remove Programs feature in Control Panel

In this scenario, the repair action will fail with the following error message

Error 1316.A network error occurred while attempting to read from the file Path\SSCERuntime-ENU.msi
For help, click: http://go.microsoft.com/fwlink?LinkID=20476&ProdName=Microsoft+SQL+Server&EvtSrc=setup.rll&EvtID=50000&ProdVer=10.0.1600.22&EvtType=0xDF039760%25401201%25401

Note: The issue will also happen with the release version of Visual Studio, but as noted in the release notes, SQL Server 2008 requires Service Pack 1 for Visual Studio 2008 if you need to use Management tools, Integration services and Business Intelligence Development studio features.

 

Cause

Visual Studio 2008 SP1 and SQL Server 2008 shipped the same MSI package for SSCE runtime but with different file names. SQL  Server shipped it as SSCERuntime.msi while Visual Studio 2008  SP1 shipped it as SSCERuntime-enu.msi. During the repair operation, Windows installer tries to change the name of  the MSI shipped with Visual Studio.net to the one that is shipped with SQL. Since this is not allowed by Windows installer, the repair operation fails with the error mentioned in the symptom section.

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

 

 

Resolution

To resolve this problem, follow these steps:

1. Remove Microsoft SQL Server Compact 3.5 SP1 <Language> using Add or Remove Programs feature in control panel.

2. Rerun the repair operation for SQL Server 2008. After the repair operation, SQL Server Compact 3.5 SP1 <Language>is reinstalled on the system.

Note <Language> is a placeholder for the language of SQL Server Compact 3.5. For example, ENU is for English, and JPN is for Japanese.

If you experience any problems reinstalling the compact edition through the repair option, you can install the compact edition using the setup files that are available in the Servers\Setup folder on the SQL Server 2008 installation media. You can also download SQL Server Compact 3.5 SP1 from the following Microsoft Download Center Web site:

http://www.microsoft.com/downloads/details.aspx?FamilyId=DC614AEE-7E1C-4881-9C32-3A6CE53384D9&displaylang=en

 

More Information

·          955396 How to troubleshoot SQL Server 2008 Setup issues

·          SQL Server Troubleshooting and Support

·          955965 Description of SQL Server Compact 3.5 Service Pack 1

 

 

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

Microsoft's Role: Microsoft does not offer formal support for the communities you'll find here. Instead, our role is to provide a platform for people who want to take advantage of the global community of Microsoft customers and product experts. Microsoft may monitor content to ensure the accuracy of the information you'll find, but any information provided by Microsoft staff is offered "AS IS" with no warranties, and no rights are conferred. You assume all risk for your use.

 

 

 


Microsoft Online Community Support

Reply:

Error 1316 is an installation error. It pops up when a software is being installed, uninstalled or repaired on your computer.You may get the following description while seeing this error:

Error 1316:"A network error occurred while attempting to read from the file: :\Install.msi"

Follow the following guidelines to fix this error:

    1. Use Windows Installer Clean Up
    2. Use a Registry Fixing Utility
    3. Change Windows Installer Registry Information
    4. Check the Security Details of the Concerning File

you can also get some help from this article to fix error 1316 win 7


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

I have a query regarding the display name of the Active directory user. Can anyone provide their feedback that how we can empty/remove the display name of a Active directory user?

for your information i have followed up below mentioned steps for removing the Display name from AD.

I have removed the Display name attributes from the AD user properties.


Reply:

You can do the same thing from Adsiedit.msc
Just curious, why would you want to do it? How many user's are their?


Gulab Prasad,
MCITP: Exchange Server 2010 | MCITP: Exchange Server 2007
MCITP: Lync Server 2010 | MCITP: Windows Server 2008
My Blog | Z-Hire Employee Provisioning App


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

Hi Gulab,

Thanks for lookintg into the issue.

we have large no. of users in the active directory can not count. Can you please provide me the steps. Will be helpful.

 - Gurmeet



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

Configuration...Default Naming Context...Look for the Container where user is...Right click and go to properties...Look for attribute..displayname
if you don't want DisplayName, make sure it's notset

Cheers,


Gulab Prasad,
MCITP: Exchange Server 2010 | MCITP: Exchange Server 2007
MCITP: Lync Server 2010 | MCITP: Windows Server 2008
My Blog | Z-Hire Employee Provisioning App


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

Adding website to trust site from Internet Explorer can be synchronized to GPO?

Hi all,

I add the website to trust site from Internet Options with administrator account, but i do not know whether it can be deployed to all domain or users in the whole domain.

I check the trust site list from GPO, yes, the website is there. 

Thanks!

Br,

Fiona


Reply:

Hi,

For obvious reasons the Administrator's settings are separate from the Computer's User's GPO settings.

Logon with a user account and then see if the new site has been added to the User's account IE Trusted Sites list...but you may have GPO settings that prevent users accessing the Security tab of Internet Options.

In IE9 and earlier you can find out which Ie security zone a site is mapped to from the File>Properties menu.

Ie8 and earlier display an icon in the Status bar (if enabled).

Regards.


Rob^_^


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

Hi,

Due to the site was not in the trust site, i wanted to add the site to the trust site from GPO.

I got the message box "This site is already in the Trust sites zone".

But i cannot see the site into the list actually...

So what i can do was only add the site from IE directly.

I found the site was already added into the registry.

I tried to delete the key in HKCU. Like

HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\<company.com>\<*.rc9.netact>

But i still cannot add the site into trust site.

Then i deleted the key in HKLM.

HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\EscDomains\<company.com>\<*.rc9.netact>

It's ok i can add the site to the trust site.

I tried to reproduce this issue by removing the site from GPO setting, then manually adding the key into both HKCU and HKLM, then rebooted the server.

After that, i tried to add the site into the trust site from GPO, no error...that means i cannot reproduce the issue...I don't know why...


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

Hi,

do not try to hack the IE Secrity zone keys manually.... use gpedit.msc to administer your Trusted Sites list....

gpedit.msc uses different registry keys than the ones you manually tried to update.... it is too complex to try to explain it here....

just use gpedit.msc

don't hack the registry unless you have great confidence in that you know what you are doing...

Regards.


Rob^_^


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

The full path to current folder in document library page breadcrumb

There's a discussion on sharepoint.stackexchange.com concerning a full path to the current folder in the breadcrumb on the document library view page. OOTB SharePoint renders only the start and the end of the long path. I've created a small webpart that replaces OOTB breadcrumb with its imitation that shows the full path. I've created a CodePlex project for it, check the details if you need such a functionality: fullpathbreadcrumb.codeplex.com.

EventID 20050 on Site-to-Site VPN

Recently this error has popped up on my site-to-site VPN.  I was not the last person who reconfigured it, although I was the first person who configured it, so I'm trying to track down what has changed between then and now.

The server-in-question is both a site-to-site VPN provider, and a client VPN provider.

Client VPN works fine.  Client VPN works fine from the site where the site-to-site VPN is not working.  Client VPN from this site works fine to the remote site.

I've tried deleting the local user accounts on both ends for the remote sites, recreating them, and recreating the site-to-site VPNs in ISA 2006 SP1, and that does not work or fix/alter the problem.

When I try and initiate the connection from the remote end, I get this on the local server:

Event Type: Error
Event Source: RemoteAccess
Event Category: None
Event ID: 20050
Date: 21/02/2012
Time: 12:03:44 PM
User: N/A
Computer: LEAHYISA1
Description:
The user LEAHYISA1\BaragerHome connected to port VPN3-106 has been disconnected because no network protocols were successfully negotiated.


For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.

If I setup a VPN connection on my workstation, to connect to the ISA server with the same username/password, I get the same error (i.e. the error is not related to the remote server, it is related to the local ISA).

I've tried deleting everything and recreating it using L2TP/IPSec instead of PPTP, the problem persists.

EDIT: Checking the event log (historically) this EventID only started appearing after I changed the WAN adapter's IP address on Friday the 17th, because my ISP changed my assigned IP.

EDIT: Restarting RRAS (by itself) and Microsoft Firewall (which restarts the RRAS service) has no effect.


Reply:
 

Hi,

Thank you for the post.

Before going any further, I'd like to confirm the following question:

  1. is the RRAS Server's network card configured as a DHCP client?
  2. Is the RRAS Server is conifigure to obtain addresses from DHCP for VPN and dial up clients?
  3. Do you receive any error message when running ISA BPA in the server?

Regards,


Nick Gu - MSFT


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

open media file in windows media player

Hi.

I have created Content Query Web Part which displays list of video urls.

But when I click on them it is not opening in windows media player.

It is opening some silverlight player on browser and gives error that "media failed to load"

How to open that links in windows media player ?


Reply:

Hi,

Do you want to force all users to use windows media player on their client machine? are the users part of your company so you can insure they have windows media player?

Regards


MCITP & MCPD Sharepoint 2010 ¦ MCITP Server 2008 Administrator ¦ MCP


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

@Spyderco

Yes, I want them to use media player only.

And If u can tell why silverlight is giving the error. ?


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

Hi,

The only way i know of that may work, but is not advisable, is to manually edit the DOCICON.xml file, which specifiys how sharpeoint should handle file types.

If you have sharepoint installed in the default location, you can find the file here: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\TEMPLATE\XML\DOCICON.xml

Inside this file you will find entrys for the various file types like this:

 <Mapping Key="doc" Value="icdoc.png" EditText="Microsoft Word" OpenControl="SharePoint.OpenDocuments" />

The OpenControl attribute is what you will want to change. it may be enough to simply leave it blank, as that tells sharepoint to let your browser decide what to do with the file.

You will need to do this manually on every server in your farm, and also remember to check it after any upgrades/service packs, as they will likely write over your changes, hence why i say it is not advisable, although sometimes it is the only option.

As for your silverlight error, have you got any error messages, other than "Media failed to load"? have you checked in the logs to see if their is a stack trace?

Regards


MCITP & MCPD Sharepoint 2010 ¦ MCITP Server 2008 Administrator ¦ MCP


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

Hi Spyderco,

Thank You for the reply.

My Silverlight is giving one more error.

When I try to create content It throws me a error called "An Unhandeled Exception Occured"

See, if you can help.


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

Hi.

Im sorry but that silverlight error could be almost anything, without more info its going to be impossible to diagnose.

Regards


MCITP & MCPD Sharepoint 2010 ¦ MCITP Server 2008 Administrator ¦ MCP


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

default my docs folder

Hi all

I did a search but couldnt find something thats related to my query.

I have windows server 2008 r2 with windows 7 64bit client

I have configured my doc folder redirection. under user names the home drive is set to H: with \\severname\home\%username% followed by group policy folder redirection and create folder under \\servername\home\

But when a user logs in all they see is the local documents. When user goes to word then save as it defaults to local drive not one on server/ or h mapped drive?

how can i make it so h drive is default?


Reply:

Hello sundeep1984,

first of all, your folder redirection is not working?
Which permissions did you set to the share and folder?

http://technet.microsoft.com/en-us/library/cc775853%28v=ws.10%29.aspx


MVP Group Policy - Mythen, Insiderinfos und Troubleshooting zum Thema GPOs: http://matthiaswolf.blogspot.com/


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

Kindly check how to Configuring Folder Redirection in Windows Server 2008

http://technet.microsoft.com/en-us/library/cc782799(v=ws.10).aspx

http://www.itechtalk.com/thread1958.html


Mohamed Abd Elhamid Abd Elaziz Microsoft System Administrator My blog: http://Mabdelhamid.wordpress.com/


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

Hi,


I'd like to confirm the advanced security setting configured correctly.

For details:

1. Right click the folder which you had configured home folder connect to.
2. Point Properties, on the Sharing Tab, click Share, make sure the specified users have Read/Write Permission.
3. on the Security Tab, click Advanced.
4. On the Permission Tab, Make sure the specified users have Full control Permission and Apply to This folder, subfolders and files.
5. On the Owner Tab, Make sure the Current owner is Domain Admin.


Please make sure the user can access and create a new folder with the specified folder successfully.

Please make sure the Folder Redirection configured correct.

For details:

Folder Redirection: Group Policy
http://technet.microsoft.com/en-us/library/cc781907(WS.10).aspx


Please make sure Always wait for the network at computer startup and logon policy is set to Enable. (Computer Configuration\Administrative Templates\System\Logon\ Always wait for the network at computer startup and logon)
 

In addition, there is a related article for your reference:


When you redirect the Documents folder on a Windows Vista-based or Windows 7-based computer to a network share, the folder name unexpectedly changes back to Documents
http://support.microsoft.com/kb/947222


Hope this helps!


Best Regards
Elytis Cheng

 


Elytis Cheng

TechNet Community Support


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

How to get TCP chimney offload settings using WMI class or equivalent

By using netsh command "netsh int tcp show global" we can see tcp chimney settings on Windows OS like Win2k3/win2k8 systems.

But I am looking for WMI class or equivalent class to check the status from my application.

Any clue or idea?

  • Moved by Paul E Long Monday, February 13, 2012 4:19 PM Not a Network Monitor question (From:Network Monitor)
  • Changed type Arthur Xie Wednesday, February 29, 2012 9:47 AM

Reply:

Hi,

I suggest you post a new thread in the correct forum in MSDN.


------------------------------------
Reply:
Thanks  Ivan-Liu, will do the same.

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

Download file via BITS to workstation, which isn't in domain

Hi guys!

I have 1 fileshara (server in domain) and I need to download file to workstation (not in domain) via BITS

What I did:

C:\Documents and Settings\Admin>bitsadmin /create testjob

BITSADMIN version 2.0 [ 6.6.2600.2180 ]
BITS administration utility.
(C) Copyright 2000-2004 Microsoft Corp.

Created job {DAC5D798-91D1-415C-A42F-8BEA732CA2AD}.

C:\Documents and Settings\Admin>bitsadmin /setcredentials testjob server basic fileserver\c
lient 123456

BITSADMIN version 2.0 [ 6.6.2600.2180 ]
BITS administration utility.
(C) Copyright 2000-2004 Microsoft Corp.

OK.

C:\Documents and Settings\admin>bitsadmin /addfile testjob /CCM_Client/i386/client.msi">http://<ip-fileserver>/CCM_Client/i386/client.msi -> c:\1\client.msi to job.

C:\Documents and Settings\admin>bitsadmin /list /allusers /verbose

BITSADMIN version 2.0 [ 6.6.2600.2180 ]
BITS administration utility.
(C) Copyright 2000-2004 Microsoft Corp.

GUID: {DAC5D798-91D1-415C-A42F-8BEA732CA2AD} DISPLAY: testjob
TYPE: DOWNLOAD STATE: SUSPENDED OWNER: workstation\administrator

PRIORITY: NORMAL FILES: 0 / 1 BYTES: 0 / UNKNOWN
CREATION TIME: 21.02.2012 14:11:06 MODIFICATION TIME: 21.02.2012 14:11:32
COMPLETION TIME: UNKNOWN ACL FLAGS:
NOTIFY INTERFACE: UNREGISTERED NOTIFICATION FLAGS: 3
RETRY DELAY: 600 NO PROGRESS TIMEOUT: 1209600 ERROR COUNT: 0
PROXY USAGE: PRECONFIG PROXY LIST: NULL PROXY BYPASS LIST: NULL
DESCRIPTION:
JOB FILES:
        0 / UNKNOWN WORKING /CCM_Client/i386/">\\<ip-fileserver>/CCM_Client/i386/ - can open using fileserver\client without any problem


Жизнь стоит того, чтобы не быть сволочью.


Reply:
 

Hi Donec,

Thanks for sharing your experience with using BITS with us. I think many people will get help from your sharing.

In addition, I also would like to add some more information regarding BITS in this thread:

Bitsadmin Overview

http://technet.microsoft.com/en-us/library/cc779476(v=WS.10).aspx

Regards,

Arthur Li

TechNet Subscriber Support

If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback here.


Arthur Li

TechNet Community Support


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

Registy Entry for Office version and service Pack

I am interested in office 2003 and sp3 registry path?

 


Reply:
This is not a correct forum for this question.

For every expert, there is an equal and opposite expert. - Becker's Law


My blog


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

TMG Publish SharePoint 2010 with Anonymous and Authenticated access

Hi,
I would like the option to have users hit the site anonymously but if they click sign in, they will be redirected back to TMG FBA to authenticate.
What would be the best approach to do this?

Thanks,
Troy


troy


Reply:

Hi,

Please check this link,

http://msdn.microsoft.com/en-us/library/gg430121(v=office.12).aspx

I hope this will help you.

Thanks,


Best Regards, ----Naresh Man Maharjan,Nepal---- www.msserverpro.com


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

Thanks Naresh.  Unless I missed something that was more on how to publish a sharepoint via TMG 101?.  But didnt explain the best approach on how to publish sharepoint for anonymous access and when a user clicks sign in, they can authenticate via HTTPS etc..  

Perhaps the only way this can be done is via 2 rules and 2 different URL's?  Unless I'm mistaken? one http and one https?   

Any thoughts please?

Thanks,


troy


------------------------------------
Reply:
Troy did you ever find a way to do this?

Dave Barker


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

Hi Dave,

Unfortunately the only way I have found to do this, is to use TMG as a proxy with anonymous access and change the authentication tab to 'no authentication, but the client may authenticate directly' and enable SP2010 FBA and let sharepoint handle the authentication.

Kind of sucks that this seems to be the only way to do this.

Cheers,

Troy


troy


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

Custom Task list for Office 365

Hi

Since MS says that the Tier 1 & Tier 2 Support would be retained by the Customer and only the Tier 3 issues would be escalated to MS.

Would someone share with me the Tier1 & tier 2 task list that has to be managed by the customer, because I am unable to locate it anywhere.

Regards.


Reply:
Might this question be better asked in an Office 365 forum?

http://community.office365.com/en-us/f/default.aspx

+Say thanks and observe basic forum courtesy:
+If this post answered your question, Mark As Answer
+If this post was helpful, Vote as Helpful

windowspbx blog: my thots/howtos
see/submit Lync suggestions here: simple and public


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

Lync/Exchange Integration woes

When I first setup our system I had the Lync/Exchange integration working. I followed this guide http://blog.schertz.name/2010/11/lync-and-exchange-im-integration/. I made some topolgy changes to add an Edge Server which failed, so I reverted back to the working topology. Now the intergration doesn't work. I have deleted the exchange application pool and went back over the steps in the blog post above. On the exchange server I can see. Event 112, MSExchange OWA "Instant Messaging Endpoint Manager was initialized successfully." On the Lync server after I do the Enable-CsTopology. I get this http://funkybassplayer.com/enable-cstopolgy.jpg. What has me suspicous is the fact it is skipping the creation of the SCP. Any ideas how to get this working again?


Reply:

hi,

You description does not point to the actual problem.It seems that you have issue deploying the Edge server and in the process not Owa integration is not working.


------------------------------------
Reply:
We attempted to deploy the edge server, but it failed. So we reverted back to our original config that has no edge server. So the issue is not the edge server. I suspect when I republished the original topolgy with out the edge server some of the references to the edge server did not go away. This is simply for Internal Lync 2010 FE and Exchange 2010 SP2 OWA.
  • Edited by The_Techguy Wednesday, February 15, 2012 6:15 PM

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

hi,

For IM -OWA integraton you should look for following

1) Trusted application server in Lync Topology( FQDN of CAS or external OWA Url ex .,mail.contoso.com)

2) Certificate assigned to the Trusted Application server with subject name matching FQDN of Trusted Application server.

3) Check following registry value (HKLM\System\CurrentControlSet\Services\MsExchangeOWA\InstantMessaging)

Check OWA virtual directory settings (Get-OwaVirtualDirectory | fl)

4) Check events on Exchange server Client Access .

If you are able to see the presence of contacts ,but there is probem with IM using OWA .

Enable lync Logging tool and trace the IM conversation.


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

1) Application server is in the topology , exchange.domain.com, without replication.

2) The certificate assigned to the Trusted Application server is a godaddy/starfield SAN cert, with the FQDN of the server as the primary name. this goes for the Lync FE server also.

3) The key exists on the exchange server with ImplementationDLLPath

    C:\Program Files\Microsoft\Exchange Server\V14\ClientAccess\OWA\bin\Microsoft.Rtc.UCWeb.dll

On the second point of 3,

[PS] C:\Windows\system32>Get-OwaVirtualDirectory | fl *instant*

InstantMessagingCertificateThumbprint : 3729BD93485F1F56968141ACA555F7C06D5E1B87
InstantMessagingServerName            : lync.domain.com
InstantMessagingEnabled               : True
InstantMessagingType                  : Ocs

I have verified it's the correct thummbprint

[PS] C:\Windows\system32>Get-ExchangeCertificate|fl Services,Thumbprint


Services   : IMAP, POP, IIS, SMTP
Thumbprint : 3729BD93485F1F56968141ACA555F7C06D5E1B87

4) I see no obvious error events in the event viewer. I am not able to see the presence of contacts at all, let alone the "chiclets". I have used the Lync Logging tool, and selects SIPStack and all flags. I see no error events there either.

I am open to any ideas.


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

I fixed it.

Set-OWAMailboxPolicy -Identity [Your Policy's Identity] -InstantMessagingType 1

That did the trick.


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

My exchange users no longer receive alerts from sharepoint 2010

I have sharepoint 2010 and exchange 2010.

2 weeks ago my exchange users stopped of receiving alerts. The alerts only works when I create and alert in the site. After that, the users no longer receive more alerts everytime that a file is updated.

I haven't made changes in the infraestructure.

I've been looking in diferent forums, and I've tried diferent solutions, like restart the service owstimer.exe, Use STSADM to reset properties, Use STSADM to re-register the alert templates.
I have used instructions like this

 like this stsadm -o updatealerttemplates -url http://YourSiteURL   -f "c:\Program Files\CommonFiles\Microsoft Shared\web server extensions\12\TEMPLATE\XML\alerttemplates.xml"
 -LCID 1033

But it didn't solve the problem

Any  help will be welcome

 


Reply:

Hi,

So you are aware of no changes in the exchange and SharePoint environment that can remotely cause this issue? Possibly, this will need  a good amount of troubleshooting. When a scenario occurs as a result of which the users should get an alert (for example, someone modifying a document), do you see any errors in the event logs? How about ULS logs?

Can you create another site collection (for testing purposes only) and subscribe to some alerts there and see if this Site Collection is any different?


Thanks, Soumya | MCITP, SharePoint 2010


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

Change Retention Period in Transactional Replication (T-SQL)

Hi,

How can we change the retention period ( in Trasanactional Peer-To-Peer Replication)through T-SQL. I know how to do that through GUI. If increase the Retention period do i need to restart the Replication?


Regards JakDBA Please Mark this as Answered if this solves your issue or satisfied with the response.


Reply:

Hi Found the answer.

USE <Database>  GO  sys.sp_changedistributiondb  @database='distribution',--Default name  @Property='max_distretention',  @value=288;  GO

The property parameter value must be 'min_distretention', 'max_distretention' or 'history_retention'.

Minvalue will be 0 default in Hr's.

Maxvalue in Hr's.

History_retention will be replication performance data .

Value in hr's.


Regards JakDBA Please Mark this as Answered if this solves your issue or satisfied with the response.


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

SSRS report parameter dates format

Hi,

I need my report date parameters to display non-american format dd/mm/yy.

I could only get the report manager to do this (by changing the culture of report.aspx page) but I can't get the report viewer to display the format properly. So when users set a parameter date such as 15/02/2011 the report cannot run.

I've already tried:

1) In web.config added  <globalization culture="en-AU" uiCulture="en-AU" />

2) Culture of Report.aspx & ReportViewer.aspx Culture="en-AU"-helps only report manager parameter date format

3) Client PC regional setting (which I wouldn't want to change anyway)

4)IIS-->Properties-->AsP.NET(taB)-->Application(Tab)-->Globalettings(Culture)

5) server regional settings

None of the above helped for the report viewer. Since the link from email subscriptions points the user to the report viewer and not the report manager, I must have the format correctly there.

The only solution I found is to change the clients IE language settings but I would prefer not to do that.

Any idea as to how to define the correct parameter format in the report viewer?

Or at least alternatively, how to set the subscription email link to point to the proper report in report manager? (I've tried some culture and path changes on rsreportserver.config but no luck).

Thanks


Namnami


  • Edited by namnami Wednesday, February 15, 2012 11:39 AM spelling

Reply:

Hello Namnami-

Have you considered tweaking the parameters in the report data set itself?

I.e. if users are entering data in format dd/mm/yy the query could say:

SELECT *  FROM TABLE1  WHERE DATE1 BETWEEN  (SUBSTRING('DD/MM/YY',4,3) + SUBSTRING('DD/MM/YY',1,3) + SUBSTRING('DD/MM/YY',7,2)) AND  (SUBSTRING('DD/MM/YY',4,3) + SUBSTRING('DD/MM/YY',1,3) + SUBSTRING('DD/MM/YY',7,2))


Bonediggler


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

Dell OEM upgrade question

I have Dell desktop. Originally shipped with Win Vista Home. Dell sent me an upgrade disk which only works on the Dell, and I upgraded to Win 7 Home Premium. Since then, I purchased a full retail Win 7 Pro which I have not yet used on any computer. My question is this: can I put the Win 7 Pro disk in the Dell and upgrade to Pro, but use the key that Dell provided for the Win 7 Home Premium? If so, I would not forfeit the OEM key and can still use the Win 7 Pro (unused disk) on my laptop. Otherwise, I would use up the new key just to upgrade from Home Vista to Pro and then have to purchase a new OS for the laptop.

Reply:
"webnpo" wrote in message news:ccbfe571-e26e-4e3a-9712-ccb219d65c18...
I have Dell desktop. Originally shipped with Win Vista Home. Dell sent me an upgrade disk which only works on the Dell, and I upgraded to Win 7 Home Premium. Since then, I purchased a full retail Win 7 Pro which I have not yet used on any computer. My question is this: can I put the Win 7 Pro disk in the Dell and upgrade to Pro, but use the key that Dell provided for the Win 7 Home Premium? If so, I would not forfeit the OEM key and can still use the Win 7 Pro (unused disk) on my laptop. Otherwise, I would use up the new key just to upgrade from Home Vista to Pro and then have to purchase a new OS for the laptop.
 
 
Both the Vista Home and Win7 Home Premium Keys are OEM, and locked to the first PC on which they were activated.
If you upgrade that PC to Win7 Pro, using a Full Retail product, then both OEM licenses become redundant, until such time as you uninstall Pro for whatever reason – neither cannot be moved to another PC.
My advice would be to upgrade the laptop with the Pro, and if you also want Pro on the Desktop, to use an Anytime Upgrade for the job.
 

Noel Paton | Nil Carborundum Illegitemi | CrashFixPC | The Three-toed Sloth

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

iPad won't play videos ( mp4, mov, ogg etc) which are there in SharePoint 2010 site

iPad won't play videos ( mp4, mov, ogg etc) which are there in SharePoint 2010 site

It seems to be  native browser is responsible  for providing the access/credentials to the plug in which tries to play a video in browser. In case of IE ,Mozilla and safari on Windows OS it happens automatically. But it seems  iPad’s Safari browser is unable to do this.

 

This observation is supported by running videos located in a public path with anonymous rights.

 

We tried to access the videos in html which is located at different  locations like a document library and a virtual directory with different kind of authentication modes.

 

We were able to run videos placed in a virtual directory which has anonymous enabled, ASP.Net Impersonation enabled, windows authentication enabled, rest of the authentication settings disabled .  For example if we give path of a video in our html of SharePoint 2010  portal is like this , we are able to run this anywhere, including iPad.

 

The html embedded in the page:

<div class=promo_contentdark>
            <div class="video_player_inline">
            <div style="float:left">
              <video width="427" height="270" controls>
                <source src="******/******.mov">
                <source src="****/****.ogg">
                <div id='mediaspace'> </div>
                <script type='text/javascript'>
  var so = new SWFObject('****/player.swf', 'mpl', '427', '270', '9');
  so.addParam('allowfullscreen','true');
  so.addParam('allowscriptaccess','always');
  so.addParam('wmode','opaque');
  so.addVariable('file', '*****/****.mov');
  so.addVariable('frontcolor','ffffff');
  so.addVariable('lightcolor','cc9900');
  so.addVariable('screencolor','ffffff');
  so.write('mediaspace');
</script>
              </video>
            </div>
            </div>
          </div>

 

 

 

The java scripts files referred in the master page:

 <script src="http://html5.kaltura.org/js"></script>
<SCRIPT type=text/javascript src="/Shared%20Documents/Scripts/swfobject.js"></SCRIPT>
<SCRIPT type=text/javascript   src="/Shared%20Documents/Scripts/AC_RunActiveContent.js"></SCRIPT>
<SCRIPT type=text/javascript   src="/Shared%20Documents/Scripts/blank.js"></SCRIPT>
<SCRIPT type=text/javascript   src="/Shared%20Documents/Scripts/commonJS.js"></SCRIPT>

<SCRIPT type=text/javascript   src="/Shared%20Documents/Scripts/jquery.jcarousel.pack.js"></SCRIPT>
<SCRIPT type=text/javascript   src="/Shared%20Documents/Scripts/jquery-1.2.3.pack.js"></SCRIPT>
<SCRIPT type=text/javascript   src="/Shared%20Documents/Scripts/jquery-latest.min.js"></SCRIPT>

<SCRIPT type=text/javascript   src="/Shared%20Documents/Scripts/jwplayer.js"></SCRIPT>
 <script src="http://code.jquery.com/jquery-latest.min.js"></script>

 

 

Now I come to my query:

 

The .mov files reffred in the html above are currently lying in a virtual directory with  anonymous enabled, ASP.Net Impersonation enabled, windows authentication enabled, rest of the authentication settings disabled. I want to put them in a document library and play them perfectly in all browsers+iPad. Did you tried that some time?

What could be the settings to do that.

 


  • Edited by hemantrhtk Monday, February 7, 2011 7:57 AM file type corrected
  • Changed type hemantrhtk Thursday, February 17, 2011 6:06 AM This the only way we found to play Vedios on a SharePoint 2010 site.

Reply:

Hi

You can  use Silverlight or Flash which will play your video in browsers where the document source will be specified as URL from your lib

iPad will NOT play that videos 
Apple officially does not support Silverlight and Flash

the only way to play video in iPad is to use HTML 5

read this article, it will be helpful 


Please mark this as answer if it helps.
Microsoft Certified Trainer
Microsoft Certified Professional Developer
BizTalk blog: http://www.EnterpriseApplicationsDevelopment.com/

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

very true thats why we have used all the scripts if u could please have a look.

we may not be shifting to silverlight coz ipad is the thing where we are lagging as of now otherwise its good


------------------------------------
Reply:
Also Try enabling BlobCaching for video files it might help
Anuj

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

Have u managed it works with more secure permission set than anonimous?

Check out this answer: http://stackoverflow.com/questions/3114406/single-php-exit-statement-prevents-html5-video-in-safari/3125869#3125869



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

unable to activate windows 7

Hi ,

i have re installed windows 7 ultimate but unable to activate it

when i enter the product key , i get the following error : 0x0004E003

what should i do ? need help urgently 2 days left only. :(

Thanks

  • Changed type Niki Han Tuesday, February 28, 2012 6:39 AM

Reply:

Please visit http://www.microsoft.com/genuine/ and click on the Validate Windows button then restart your computer.

If you weren't able to Validate, proceed as follows:

1. Download this diagnostic tool, saving it to your desktop: http://go.microsoft.com/fwlink/?linkid=56062

   => WinXP: Double-click on the executable to run the tool.

   => Vista & Win7: Right-click on the executable and select Run as Administrator to run the tool.

2. After running the tool, click on the Windows tab and then click on COPY (to clipboard).

NB: You may want to open a new Notepad file, paste the contents of your clipboard into it & save for future reference.

3. Begin a new thread in the following Microsoft Genuine Advantage forum and paste the results from the WGA and/or OGA Diagnostic Data tool in a detailed post:

http://social.microsoft.com/Forums/en-US/genuinewindows7/threads

4. A troubleshooting specialist will analyze the data and recommend an appropriate solution.


Please 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:

Please visit http://www.microsoft.com/genuine/ and click on the Validate Windows button then restart your computer.

If you weren't able to Validate, proceed as follows:

1. Download this diagnostic tool, saving it to your desktop: http://go.microsoft.com/fwlink/?linkid=56062

   => WinXP: Double-click on the executable to run the tool.

   => Vista & Win7: Right-click on the executable and select Run as Administrator to run the tool.

2. After running the tool, click on the Windows tab and then click on COPY (to clipboard).

NB: You may want to open a new Notepad file, paste the contents of your clipboard into it & save for future reference.

3. Begin a new thread in the following Microsoft Genuine Advantage forum and paste the results from the WGA and/or OGA Diagnostic Data tool in a detailed post:

http://social.microsoft.com/Forums/en-US/genuinewindows7/threads

4. A troubleshooting specialist will analyze the data and recommend an appropriate solution.


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

Thanks i installed from  http://www.microsoft.com/genuine/  . it validates and new page came written to downlaod security essentials etc.

but it didnt activated my windows.

i have performed all the steps. that content i have copied contains half product key should i post that key also in that forum or not ?


------------------------------------
Reply:
Never post your Windows key anywhere on any website or anyplace else on the internet.  When you post your Windows key on the internet, it is always found by unscrupulous people who will use it for illegal purposes and eventually your key will be tagged by Microsoft as an invalid key.

Please 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:
Never post your Windows key anywhere on any website or anyplace else on the internet.  When you post your Windows key on the internet, it is always found by unscrupulous people who will use it for illegal purposes and eventually your key will be tagged by Microsoft as an invalid key.

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

Thanks

I have posted a question in that forum : http://social.microsoft.com/Forums/en-US/genuinewindows7/thread/d1bf6d14-0db1-4aa3-bf02-7a0acf518d1d


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

Outlook doesn't connect without "On slow networks, connect using HTTP first"

Dear Exchange/Outlook Fellows,

I need your thougts and help to figure out one scenario. Some of the users for one of our client are experiencing an issue with their Outlook Anywhere since few days. Their Outlook doesn't connect to server until you put both the following checkboxes ON:

Strange thing is this issue is happening with a few users only, while other users in the same subnet, network location works fine. All users are in single mailbox database.

Any idea/help would be highly appreciated.

Thanks.


Junaid Ahmed


Reply:

Check you have provided the outlook anywhere address pointing to external address.

Check the firewall is not getting blocked for outlook anywhere

Check the authentication method is configured properly in EMC Outlook anywhere and the same is  set in the Outlook

You can check the same in

<cite>https://www.testexchangeconnectivity.com/</cite>


Exchange Queries


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

yes Outlook Anywhere address is pointing to external address which is resolving properly (same as for other people on same network). Also the authentication method is fine.

Exchange RPC virtual directory has Basic Authentication enabled and Oulook anywhere is using basic authenticatio. That is why when you put these checkboxes ON (without changing any thing else) it immediately starts working.

I can successfully telnet to port 443, 80 and 25 from the same client to exchange server. these clients were working fine a few days ago.


Junaid Ahmed


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

Outlook 2010 is fully updated (14.0.6112.5000) on all the clients on network.

Exchange 2010 Service Pack is SP1 (14.01.0355.002)


Junaid Ahmed


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

Try to check outlook anywhere -

https://www.testexchangeconnectivity.com


Exchange Queries


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

Dear, Exchange Test Connectivity is unable to verify the certificate chain since they are using the private certificate Authority. Once the certificate chain is imported on client machine, Outlook Anywhere works fine.

Outlook Anywhere for 95% of the total staff is working fine and they haven't experienced any such issue ever.


Junaid Ahmed


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

Restore a virtual database

All -

I know there are several programs out there that mount backup files to SQL Server to create a 'virtual' database from a restore file without having to perfrom the actual restore itself.

Does anyone have any information on this on how this possibly could be done natively without tools? 


Big Ern


Reply:

Hi Big,

There are a handful of options of the RESTORE command that don't result in the database being restored (see http://msdn.microsoft.com/en-us/library/ms190372.aspx).  Wit these you can look at the metadata of the backup and do limited verification, if this is what you're talking about.  Can you elaborate on what you mean by restoring a virtual database?

Mark


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

You cannot restore a database without perfrom actual restore command (without using third party tools lile Red Gate virtual restore for example)


Best Regards, Uri Dimant SQL Server MVP http://dimantdatabasesolutions.blogspot.com/ http://sqlblog.com/blogs/uri_dimant/


------------------------------------
Reply:
No it is not possible to do this natively, you would have to roll your own code OR use a third party. To roll your own code you would obviously have to reverse engineer the backup file in the same way the third party tools do.

Regards,
Mark Broadbent.

Contact me through (twitter|blog)

Please click "Propose As Answer" if a post solves your problem
or "Vote As Helpful" if a post has been useful to you


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

There is not enough space on g (160 GB on Server). This isn't true. Can someone help please?

Copying a file to a network location - There is not enough space on g (160 GB on Server). You need an additional 801 MB to copy these files. There is 115 GB free on the drive. How can I fix this?
  • Changed type Vincent Hu Wednesday, February 29, 2012 7:49 AM

Reply:

What is the total size of all files to be copied?  You did not provide that information.


------------------------------------
Reply:
Hi,
 
According to the description, it seems that the g is a mapped network drive from another computer. If so, please help me to collect the following information:
 
1. Did you mean the hard disk where the network share locate has 160GB's free space?
2. What's the size of the file you want to copy?
3. Please provide details as you can.
 
By the way, you may take some screenshots and then upload here.

Vincent Hu

TechNet Community Support


------------------------------------
Reply:
Make sure the drive containing your temp directory has sufficient space.  (This is almost always the system drive, which is almost always C:)

------------------------------------
Reply:
Also is the remote server using any quota system?

Oscar Virot


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

SharePoint wish list

where can you tell microsoft what you wish for in the next version of SharePoint?

Ofer Gal


Reply:

Typically Connect.Microsoft.com is the best place to go for those kinds of things, or you can submit feedback on the SharePoint Team's blog (http://sharepoint.microsoft.com/blog/Pages/default.aspx). I don't know that there is a public space on Connect right now for SharePoint, but you may be able to submit a comment about it regardless.

The thing to remember is that they've already started the Technical Adoption Program (TAP) for SharePoint as a part of Wave 15, so they have a pretty good handle on what features and functionality will be going into the next release of the product. I'm not trying to discourage you from providing your feedback, but just want to let you know that given where they are right now with the next version of SharePoint it may be a while before they can incorporate it into the product.

John


MCITP and MCTS: SharePoint, Virtualization, Project Server 2007
My books on Amazon: The SharePoint 2010 Disaster Recovery Guide and The SharePoint 2007 Disaster Recovery Guide.
My blog: My Central Admin.


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

Thanks John!

I did not find a SharePoint section in Connect.Microsoft.com (maybe it's just my profile)

I know I am kind of late for office 15 but any chance of better future is welcome right? :-)

I left a comment on the SharePoint Team's blog, maybe it will make its way to the right people.


Ofer Gal


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

Publishing LYNC 2010

I have two issues.

One is that when i establish a video pc to pc call the client on one end freezes and stops responding.

second is that when i  try connecting from an IPAD lync client i get server certificate cannot be validated and that server cannot be found when i manually enter settings.

Please help


Reply:

Hi,

Problem no 1, this must be something due to the client PC configration or OS related problem. most of the time this sort issues occur due to a firewall or Virs scan activities. turn on loggin in client side and check the event viewer for any root causes.

Problem no 2, is this happen when you trying from externally via 3G or wi-fi or internally via wi-fi, if it's external, then check the web URL s are exposed externally. And follow the below technet article for troubleshooting

Set-CsMcxConfiguration –ExposedWebUrl External

http://blogs.technet.com/b/nexthop/archive/2012/02/21/troubleshooting-external-lync-mobility-connectivity-issues-step-by-step.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:

There are alot of things which you might consider while connecting your IPAD or any phone internally or externally. Keep in mind that if you have split domain name and you are trying to connect internally you have to create external lync web url A record in your internal DNS and point to the TMG, have you define internal and external url like Thamara said. May be you have edited existing TMG rule which have been created for Lync web services and simple url to access Lync Mobility as well, in this case you might have to enable logging on TMG and try to see. I was having same issue and same error which you have. My problem was that i didnt add SAN names in the external certificate for lyncdiscover, and i was using same TMG rule to access lync mobility.

the resolution for that i have created another TMG rule which resolved my problem. Please open your browser internally and externally then type lyncdiscover.company.com you should receive a file which needs to be saved (if you are connecting outside), if you are connecting internally you should type lyncdiscoverinternal.company.com and the result should be same. I have also written a blog on this salahuddinkhatri.wordpress.com

Please mar it as answer if it answers your question also take a second to vote | MCITP LYNC | blog: salahuddinkhatri.wordpress.com


SKHATRI


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

Create Sql Server Authentication problem

So, I have create a database. What I did is basically like this:

First, I logged in with Windows Authentication, then right-click on database, I choose "new database", then I type "test" on database name textbox..

So, now, it suppose the database has been created, right?

then, I right click on the security, choose new - login.

On general, I type the "pbsm" on login name textbox, choose SQL server authentication, and then type password and re-type the password, then I uncheck the enforce password policy, and then I choose "test" as default database.

On user mapping, I check on "test" and I check all the database role.

So, I guess now I also have created a SQL Server Authentication, right?

But when I tried to login, I choose SQL Server Authentication and on the username, I type "pbsm" and I type the password, this following error comes out:

Cannot connect to User-PC\SQLEXPRESS

Additional information

Login failed for user 'pbsm'. (Microsoft SQL Server, Error : 18456)

Can someone please help me.. Thank you in advance..


Reply:

Read this great article http://blogs.msdn.com/b/sql_protocols/archive/2006/02/21/536201.aspx   Make sure that SQL Server Browser is running up, and you allowed remote connection to the instance as well.


Best Regards, Uri Dimant SQL Server MVP http://dimantdatabasesolutions.blogspot.com/ http://sqlblog.com/blogs/uri_dimant/


------------------------------------
Reply:
Any other ideas? That doesn't really help much..

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

Hi,

I think you need to enable SQL Authentication.

connect to your server using windows account and then right click on the server name and choose properties and change authentication mode to become windows and sql authentication. restart your server, and then try to login by new user name.

Also you can change authentication mode from SQL server configuration manager.

I hope this is helpful.

Elmozamil Elamir

MyBlog


Please Mark it as Answered if it answered your question
OR mark it as Helpful if it help you to solve your problem
Elmozamil Elamir Hamid
http://elmozamil.blogspot.com


------------------------------------
Reply:
Please post State parameter value of the Error message

Best Regards, Uri Dimant SQL Server MVP http://dimantdatabasesolutions.blogspot.com/ http://sqlblog.com/blogs/uri_dimant/


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

What I have done is from server name, right click choose properties - security - server authentication, I have changed from Windows Authentication mode to SQL Server and Windows Authentication mode. Disconnect from my server then close Microsoft SQL Server, then logged in with SQL Server Authentication, I enter the username and password, but this error message appear:

"Cannot connect to User-PC\SQLEXPRESS

Additional Information

A connection was successfully established with the server, but then an error occurred during the login process. (provider: Shared Memory Provider, error: 0 - No process is on the other end of the pipe.) (Microsoft SQL Server, Error: 233)"

Any ideas??


------------------------------------
Reply:
How do I know what is the state parameter value of the Error Message??

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

Please read the link I posted above

Msg 18456, Level 14, State 1, Server <server name>, Line 1
Login failed for user '<user name>'


Best Regards, Uri Dimant SQL Server MVP http://dimantdatabasesolutions.blogspot.com/ http://sqlblog.com/blogs/uri_dimant/


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

Now, it appears that I can login with SQL Server Authentication already. But in Object Explorer there, when I expand the Database, test (database name which I have created for pbsm; pbsm is my username for SQL Server Authentication), and then when I try to expand table, this following error occurred..

"Failed to retrieve data for this request. (Microsoft.SqlServer.Management.Sdk.Sfc)

Additional information

An exception occurred while executing a Transact -SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)

The SELECT permission was denied on the object 'extended_properties', database 'mssqlsystemresource', schema 'sys'. (Microsoft SQL Server, Error: 229)"

Please help...


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

Connect as  administrator and issue

 If you want to read up on fixed database roles and which data object they give access to, please follow this link (http://msdn.microsoft.com/en-us/library/ms189121%28v=SQL.90%29.aspx).


Use master
go
GRANT VIEW ANY DEFINITION TO user_login;
Go


Best Regards, Uri Dimant SQL Server MVP http://dimantdatabasesolutions.blogspot.com/ http://sqlblog.com/blogs/uri_dimant/


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

Thanks a lot... That's really helpful.. :)

Thank you so much.

Ok. So now I can login using SQL Server Authentication and able to create table, select, etc in "test" database.

Now how to use Visual Web Developer to connect to this "test" database?

I'm now doing an assignment to make a website that connected to SQL Server 2008 with SQL Server Authentication.

I just want to display all data in table I created before in GridView.

Any helps are really appreciated..


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

I'm wondering about the rumors

I'm wondering about all of the rumors surrounding the next generation of TMG.  Will it live to see 2012 and onward?  My biggest concern is that I have heard about a possible move to the cloud, in that it will no longer be offered as an on premise solution.  I don't personally use TMG at the moment, though I'd love to learn about it and have the opportunity to use it, either in a job setting or otherwise.  Is this really what is going on?  What have the rest of the community heard? 

Reply:

these are relly just rumors. Personally, I would bet MS is not going to drop the UAG/TMG technologies and may just reshape the products somewhat. They need to support private clouds as well as lots of third-party cloud vendors as their customers of Exchange/SharePoint etc. even if they wanted all the customers to move to clouds, which is not now and for some time at least will not be the case.

So what I would just think about would be kind of reshape - making the TMG just forward proxy with SSL Inspection + Antimalware/IPS for internal clients while dropping the web publishing at all and promoting UAG for that sole purpose.

ondrej.


------------------------------------
Reply:
looks like it could potentially be possible.  But then what about web application security?  What then would be used for prevention of malicious users putting code on web sites?  We'd need something in TMG, wouldn't we?  That's what web publishing is, right?  Or am I getting my terms mixed up?  I mean, for NIS, VPN, and stuff like that, there should always be an on premise solution if you ask me.  I think that removing that one part of the product might dissolusion people. 

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

they could keep UAG for the remote access and publishing. it is already full of default inspection settings that are not in TMG. you also have a more complex quarantine options.

ondrej.


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

What is web publishing in this context exactly?  I understand what it means in terms of web site publishing or something, but the term seems pretty ambiguous here. 


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

SETUP

I am a RF Engineer stuck in the world of IT.....  I have download the windows 7 with no issue  --  I have used NERO to burn the DVD-, I can see on the DVD- the large burn but I see no data ox XP pro DVD my computer...  Also need auto setup..

  • Changed type W4JWM - JIM Saturday, February 25, 2012 8:42 PM open

Reply:

I've read your post a couple of times, but I can't follow it.

You downloaded a Win7 .iso? From where? Did you use the mode of Nero to create a DVD from the .iso? The alternative would be to burn a copy of the .iso to a disk, which won't be of much use. (An .iso is a disk image format. You don't want an image on the DVD, but rather the disk that the image is of.)


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

I have a subscription to get it from TecNet.... I have downloaded image or ISO file to the hard drive.  I then copied the file VIA nero... I have never used NERO or recorded to DVD in the past., only loaded.  Because I am in Chad I have no help. 

I guess the better question is, I can get to the program VIA TecNet... What do I do with it?


------------------------------------
Reply:
I did use the NERO to record data on the DVD- .

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

Hi, an ISO file is an image of a CD or DVD, and it may include the bootable components if that it one of the purposes of a particular ISO file.
to use an ISO file to re-create a CD or DVD, Nero (or some other utility) must "unpack" or "expand" the ISO and lay it out onto the CD or DVD you are burning.

You don't want Nero to just burn the ISO file as if it is a data file, you want Nero to treat it as an ISO and unpack it for you.
It's been a while since I used Nero, but it used to have an "image" button (offered as a "task type"), so make sure you choose that type of task, and not just a "data disc".


Don


------------------------------------
Reply:
With Nero installed all should have to do is double click on the ISO and it should open Nero to burn a DVD.  If not then open Nero and one of the options should be to burn image to disc.  Try the following link for help http://www.youtube.com/watch?v=OV-wGRL4PiM. If this doesn't help than search your version of Nero with burn image to disc and should find instructions.

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

Download Problems for Office 2010

  Please help.I purchased Office 2010 online from MSN and was told there was a "download Now" button on the confirmation page. There was none and I need to find out how to download.

Reply:

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

event receiver

i'm using sharepoint 2010.i want 

how to upload the documents in particular time period using "EVENT RECEIVER."..



Reply:

i'm using sharepoint 2010.i want 

how to upload the documents in particular time period using "EVENT RECEIVER."..


event receivers will fire immediately when ever there is a event called or fired. 

i would suggest to create a Custom Timer job which will  upload the documents in particular time period by setting schedule time.

http://dotnetfinder.wordpress.com/2010/07/24/creatingcustomsharepointtimerjob2010/

other option is

create power shell scripts to upload documents

http://sharepintblog.com/2011/10/14/upload-multiple-documents-to-sharepoint-library/


MCTS,MCPD Sharepoint 2010. My Blog- http://sharepoint-journey.com


If a post answers your question, please click "Propose As Answer" on that post and "Vote as Helpful



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

minor error in get-help for remove-item

I happened to notice this example in the help for remove-item:

 -------------------------- EXAMPLE 1 --------------------------     C:\PS>remove-item C:\Test\*.*     Description   -----------   This command deletes all of the files with names that include a dot (.) from the C:\Test directory. Because the 
command specifies a dot, the command does not delete directories or files with no file name extension.

and wondered if the underlined part was true or if, perhaps, the writer of the help text was under the common misconception that folder names cannot include a file type extension. A quick test indicated that the command actually will delete any folders whose names include a dot.

Trivial, perhaps. But not for someone who might follow the suggestion.

I wonder how long it will be before we are free of the concepts (and misconceptions) that originated as far back as DOS 1.0...


Reply:

Good catch. You are correct.


Richard Mueller - MVP Directory Services


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

Hi,

Yes,  it says that as the command specifies a dot, so the command will only remove those files with file name extension. Actually, this command will delete all files in the folder c:\Test.

Best Regards,

Yan Li


Yan Li

TechNet Community Support


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

Hi,

Yes,  it says that as the command specifies a dot, so the command will only remove those files with file name extension. Actually, this command will delete all files in the folder c:\Test.

Best Regards,

Yan Li


Yan Li

TechNet Community Support

No it won't. I created a test folder and, in that two folders and two files, one each with and one each without an extension. The "remove <folder>\*.*" command deleted only the file and the folder with an extension. The file and folder not having an extension was not deleted.

Maybe you are thinking of the cmd.exe DEL command, in which "DEL *.*" means delete any file with any name and any extension, including a null extension. Of course, the DEL command will never delete any folders.


Al Dunbar


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

For any cmdlet that takes a wildcard argument, the same rules apply.  The fact that it is a dot is incidental.  Whatever characters you include between the *'s will be searched for.

E.g.:

del *test*

The documentation is incorrect.


Grant Ward, a.k.a. Bigteddy

What's new in Powershell 3.0 (Technet Wiki)


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

For any cmdlet that takes a wildcard argument, the same rules apply.  The fact that it is a dot is incidental.  Whatever characters you include between the *'s will be searched for.

E.g.:

del *test*

The documentation is incorrect.


Grant Ward, a.k.a. Bigteddy

What's new in Powershell 3.0 (Technet Wiki)

This is getting a bit confusing because we are talking about more than one aspect of the situation. The documentation is incorrect, but only where it says that folders will not be deleted by the command "remove-item *.*".

As I have shown, this will delete folders whose names contain a ".", the implication being that the writer of the help text has never seen folders whose names contain a ".", and apparently extended that observation to deduce that foldernames CANNOT contain a ".".

But the documentation is correct where it indicates that the command will remove only those files having a "." in the name, leaving untouched those not having a ".".


Al Dunbar


------------------------------------
Reply:
Agreed.

Grant Ward, a.k.a. Bigteddy

What's new in Powershell 3.0 (Technet Wiki)


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

NT Workstation in domain, do I need WINS?

Hi all,

I've several NT4 Workstation machines joined to my domain (DFL and FFL is Windows Server 2003 interim, but I've not any NT Server). As far as I know, if I configure in the NT Workstations the IP's of my DNS servers, there's no need to mantain any WINS server, because when NT's workstation are in domain, they try to use NetBIOS resolution first, and if they can't resolve, then they try to use WINS, and if this fails too, then they try to use DNS.

These NT workstations have static IP's and the records are already created in DNS, but anyway, I've configured DHCP servers to register records for pre-Windows 2000 systems (just in case...).

Also, I've not any app that relies on NetBIOS or WINS.

So, I don't need WINS at all, right?



Reply:

If this is a single subnet network, you can get away without having WINS.  In addition, when accessing resources, if you fully qualify the names, you'll be OK.  You may run into trouble on a mutli-segmented network, where NT needs to locate a resource by using NETBIOS.  If it cannot resolve the service via broadcast, it will either require an entry in the LMHOSTS file or WINS.  

I wouldnt install WINS unless you absolutely have to so wait and see if you run into any issues.  If you only have a handful of these workstations that you need to maintain, and you only need an entry or two, the LMHOSTS file (which can be placed in a central file server and referenced by clients) could be a good alternative than having to set up a fully functional WINS server.


Guides and tutorials, visit ITGeared.com.

itgeared.com facebook twitter youtube


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

Hello hardcrack,

Please let us know if you need further assistance with this thread, or if the information thus far was not clear or unhelpfu.


Guides and tutorials, visit ITGeared.com.

itgeared.com facebook twitter youtube


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

I think you'll just see a little resolution delay on the NT4 boxes, because as you said, it checks for NetBIOS (Hybrid mode check WINS first, then broadcast), then hostname (DNS), in that order.

As far as needed WINS, I agree with Jorge. Are you using using Exchange 2003, SQL, a centralized Symantec AV or McAfee (ePO Orchestrator) solution,or Backup Exec? They use NetBIOS to connect to targets, and Exchagne 2003/Outlook communications require NetBIOS, so if you have them, and if you have a multi-subnetted environment, you may need WINS.

Ace


Ace Fekay
MVP, MCT, MCITP Enterprise Administrator, MCTS Windows 2008 & Exchange 2007 & Exchange 2010, Exchange 2010 Enterprise Administrator, MCSE & MCSA 2003/2000, MCSA Messaging 2003
Microsoft Certified Trainer
Microsoft MVP - Directory Services
Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php

This posting is provided AS-IS with no warranties or guarantees and confers no rights.

FaceBook Twitter LinkedIn


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

Hi,

Thanks for posting here.

>because when NT's workstation are in domain, they try to use NetBIOS resolution first, and if they can't resolve, then they try to use WINS, and if this fails too, then they try to use DNS.

This is not true, Windows will first use DNS as the preferred name resolution method and then NetBIOS /WINS:

 

Chapter 7 - Host Name Resolution
http://technet.microsoft.com/en-us/library/bb727005.aspx

Thanks.

Tiger Li


Tiger Li

TechNet Community Support


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

Tiger, I would like add and point out:

Win2000 and newer machines uses the DNS (hostname) process first
before the NetBIOS resolution process. If it does not get resolved using the DNS
process, then it uses the NetBIOS process. Legacy pre-Windows 2000 clients, such
as Windows NT, Windows 98, Windows 95, Windows 3.1, DOS, etc, use the NetBIOS
process FIRST if the queried name is less than 15 characters, and if greater than 15, it
uses hostname (DNS) resolution. If is is shorter than 15, as said, it will use
NetBIOS, but if it doesn't get resolved using NetBIOS, only then will it use the
DNS hostname resolution process.

Configuring IP Addressing and Name Resolution
http://technet.microsoft.com/en-us/library/bb457118.aspx 

Scroll down to the Client side resolution process chart
http://msmvps.com/blogs/acefekay/archive/2009/11/29/dns-wins-netbios-amp-the-client-side-resolver-browser-service-disabling-netbios-direct-hosted-smb-directsmb-if-one-dc-is-down-does-a-client-logon-to-another-dc-and-dns-forwarders-algorithm.aspx

.

I was looking for the old flowchart and diagram we used to use teaching the older stuff, especially when Windows 2000 came out that explains the transition from NT4/Win9x/3.11 with resolution methods (Course MOC 2151& 2152), but I can't find the courseware or slides. I must have deleted it at one time or another.

Ace


Ace Fekay
MVP, MCT, MCITP Enterprise Administrator, MCTS Windows 2008 & Exchange 2007 & Exchange 2010, Exchange 2010 Enterprise Administrator, MCSE & MCSA 2003/2000, MCSA Messaging 2003
Microsoft Certified Trainer
Microsoft MVP - Directory Services
Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php

This posting is provided AS-IS with no warranties or guarantees and confers no rights.

FaceBook Twitter LinkedIn


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

I'm not using Exchange, McAfee EPO, Backup Exec or any software that relies on WINS.

So, as I was wondering, I can retire WINS from my network topology, right? I'm sorry, but I can't see the buttons to mark the posts as answers...

Regards


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

Do you have multiple subnets, or have VPN users? If so, and want the ability for network neighborhood, you may need it, otherwise, maybe not.

As far as marking an answer, it looks like Tiger changed the thread type to a "Discussion" from a "Question." Not sure why. Since you started the thread, I believe you have the ability to change it back, if you like.

Ace


Ace Fekay
MVP, MCT, MCITP Enterprise Administrator, MCTS Windows 2008 & Exchange 2007 & Exchange 2010, Exchange 2010 Enterprise Administrator, MCSE & MCSA 2003/2000, MCSA Messaging 2003
Microsoft Certified Trainer
Microsoft MVP - Directory Services
Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php

This posting is provided AS-IS with no warranties or guarantees and confers no rights.

FaceBook Twitter LinkedIn


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

Defualting date field to specific date

I have a list and view based on infopath 2010.

I want a given date feild from my list to defualt to June 30 of the current year in infopath 2010 view if it is blank during form load.

How can I achive this?

Thank you in advance.


Ephi


  • Edited by Ephi Thursday, February 23, 2012 7:59 PM

Reply:

The easiest solution could be to set the default value to concat(substring-before(today(), "-"), "-06-", "30"). The xml value of date field is usually in the format yyyy-dd-mm. The function today() returns the current date. Extract year from that using substring-before() function and use concat() function to create 30th Jun of current year.

Thanks,

Rahul Babar


ASP.NET, C#, Sharepoint 2007/2010, Infopath 2007/2010 Developer


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

And of course if you want to get this value whenever you open the form, you have to write a rule to set this fields value to concat(substring-before(today(), "-"), "-06-", "30") under form load rules.

Thanks,

Rahul Babar


ASP.NET, C#, Sharepoint 2007/2010, Infopath 2007/2010 Developer


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

Thank you for your help.

The problem is that since these results are strings, it is not possible to assigne them for a date time type column. How can I convert string to Date in infopath forms?

Thank you in advance.


Ephi


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

While creating any data field in infopath form, you can select the data type (ex. date, dateTime, string, etc) of value you want to store in the field.

You can also change existing field's data type in it's properties.

You can also map this column to date time column in sharepoint.

Thanks,

Rahul Babar


ASP.NET, C#, Sharepoint 2007/2010, Infopath 2007/2010 Developer


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

Faxing with win7 client and win2k3 fax server

I have been beating my head against my desk for the last 2 days trying to figure out this fax thing so i'm coming here for hopefully some help.  We have a windows 2003 server providing a fax server to windows 7 clients.  We can fax to generic long distance numbers (i.e. 800, 888) but not to long distance with a regular area code (i.e. 715).  I can not figure out why this is happening.  If i send the fax directly on the server it will send to the 715 number but when it comes in to the server from a client it just gets no answer and times out.  Any ideas? If more information is needed i can provide it.  We do have to dial 9 to get an outside number and dial an access code to call long distance but i'm not sure these are causing the problem.  Please help.

Thanks

Norm

  • Changed type Niki Han Thursday, March 1, 2012 9:41 AM

Reply:

Hi,

Before going further, I would like to verify if the issue occurs on all clients or only Windows 7 clients.

Please re-configure the fax and load the latest driver on the Windows 7 clients to check the reuslt.


Niki Han

TechNet Community Support


------------------------------------
Reply:
It occurs on all clients (XP and 7).  We reloaded all the drives and reconfigured and still have the same problem.

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

Hi,

If the issue occurs on all clients, I suspect the issue is related to your Fax Server. You can re-configure the Fax Server on Windows Server 2003.

Meanwhile, I suggest you post a new thread in Windows Server forum.
http://social.technet.microsoft.com/Forums/en/winserverprint/threads

 

 


Niki Han

TechNet Community Support


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

App-V 4.6 SP1 Hotfix 5

http://blogs.msdn.com/b/sgern/archive/2011/12/19/10249074.aspx

Translated;

Hi all,

Shortly before Christmas comes once more a hotfix that addresses the following issues:

- SoftGrid Client folder is moved into the system when you profile config. Manager and Asset Intelligence used. To enable this change to create a registry entry: ExpandUserDataDirectoryAsUser as REG_DWORD to 1 in the key Softgrid \ 4.5 \ Client \ Configuration

- HTTPS streaming fails for users with lower privilege will always fail.

- Application startup fails with the error "The system can not find the path specified" error, even if the application is loaded completely.

KB number will be 2645225

UPON 4.6 SP1 is required.

Greetings

Sebastian Gernert - Support Escalation Engineer


Nicke Källén | The Knack| Twitter: @Znackattack

Reply:

Hello,

Updated link;

http://support.microsoft.com/kb/2645225 


Nicke Källén | The Knack| Twitter: @Znackattack

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

I fear I'm going to need an alternate translation.  Both the descriptions of the first listed problem (given here and in the KB) are still unclear to me.  What is meant by "the SoftGrid client folder is moved into the system <profile>"?  It's moved from where?  I'm pretty sure we've been using SCCM and Asset Intelligence for a while now, and while the App-V database is telling us that the System account is being used to launch applications, I've never heard of an issue with a user's setting being lost (or "moved") because of this.

Could anyone please clarify the symptoms of this known issue?  I just want to make sure that A) I'm not overlooking a problem that my App-V users may be experiencing right now and B) that I understand the reason why I would need to make a registry change on all my App-V clients.


------------------------------------
Reply:
Hello,

I would suggest you try it on a specific client and see if it effects you.

Nicke Källén | The Knack| Twitter: @Znackattack


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

Games issues

I'm trying to use Virtual XP to run my Football Manager 2012 game as my Win 7 Pro 64BIT OS won't accept my graphics card:( But it won't let me install it via Steam, It says "The Windows Installer does not permit installation from a Remote Desktop Connection." Any ideas??

Reply:

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

How to fix wlsrvc.dll and taskeng.exe in Windows 7 x64

I run sfc /scannow in Windows 7 x64 and its unable to fix some problems, Please help.

The sfc error details:

2011-09-24 09:49:56, Info CSI 000000ed [SR] Cannot repair member file [l:20{10}]"wlsrvc.dll" of Microsoft-Windows-Live-Services, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing  2011-09-24 09:49:57, Info CSI 000000ee [SR] Cannot repair member file [l:20{10}]"wlsrvc.dll" of Microsoft-Windows-Live-Services, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing  2011-09-24 09:52:17, Info CSI 0000016a [SR] Cannot repair member file [l:22{11}]"taskeng.exe" of Microsoft-Windows-TaskScheduler-Engine, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch  2011-09-24 09:52:20, Info CSI 0000016c [SR] Cannot repair member file [l:22{11}]"taskeng.exe" of Microsoft-Windows-TaskScheduler-Engine, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch  2011-09-24 09:56:03, Info CSI 0000028a [SR] Cannot repair member file [l:20{10}]"wlsrvc.dll" of Microsoft-Windows-Live-Services, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing  2011-09-24 09:56:04, Info CSI 0000028b [SR] Cannot repair member file [l:20{10}]"wlsrvc.dll" of Microsoft-Windows-Live-Services, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing  2011-09-24 09:59:10, Info CSI 000002fd [SR] Cannot repair member file [l:20{10}]"wlsrvc.dll" of Microsoft-Windows-Live-Services, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing  2011-09-24 09:59:10, Info CSI 000002ff [SR] Cannot repair member file [l:22{11}]"taskeng.exe" of Microsoft-Windows-TaskScheduler-Engine, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch  2011-09-24 09:59:10, Info CSI 00000300 [SR] Cannot repair member file [l:20{10}]"wlsrvc.dll" of Microsoft-Windows-Live-Services, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing  2011-09-24 09:59:10, Info CSI 00000301 [SR] Cannot repair member file [l:20{10}]"wlsrvc.dll" of Microsoft-Windows-Live-Services, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_INTEL (0), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing  2011-09-24 09:59:10, Info CSI 00000304 [SR] Cannot repair member file [l:22{11}]"taskeng.exe" of Microsoft-Windows-TaskScheduler-Engine, Version = 6.1.7601.17514, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, hash mismatch  2011-09-24 09:59:10, Info CSI 00000309 [SR] Cannot repair member file [l:20{10}]"wlsrvc.dll" of Microsoft-Windows-Live-Services, Version = 6.1.7600.16385, pA = PROCESSOR_ARCHITECTURE_AMD64 (9), Culture neutral, VersionScope = 1 nonSxS, PublicKeyToken = {l:8 b:31bf3856ad364e35}, Type neutral, TypeName neutral, PublicKey neutral in the store, file is missing  


Reply:

Hi,

This is caused by these files that is also corrupted in WinSXS folder. I suggest you to perform an In-place upgrade to repair these files.

http://support.microsoft.com/kb/2255099


Please 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:
Thank you Juke Chou
I tried the In-place upgrade but it take a long while. I started it from (23:00 to 8:00) and it completed 64% only.

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

Hi,

Please uninstall the anti-virus software, then boot the computer in Clean Boot mode and try again.


Please 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:

The only solution that worked with me is to re-install Windows 7 x64 ... :)


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

Announcement

Hi....

i'm create 20 web applications(SHAREPOINT 2010).and i'll create one announcement in one web application,This announcement is reflect(display) the all web application at same time. 


Reply:

Hi

in your main web app, create a page which include your Announcements list View

In other 19 web apps, in the home page for ex, include a Page View WEbPart, and put there the page from your first web app


Romeo Donca, Orange Romania (MCSE, MCTS, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.


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

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