TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Internet Explorer
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Lync
See all products »
Resources
Curah! curation service
Evaluation Center
Learning Resources
Microsoft Tech Companion App
Microsoft Technical Communities
Microsoft Virtual Academy
Script Center
Server and Tools Blogs
TechNet Blogs
TechNet Flash Newsletter
TechNet Gallery
TechNet Library
TechNet Magazine
TechNet Subscriptions
TechNet Video
TechNet Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Microsoft Update
Trials
Windows Server 2012 R2
System Center 2012 R2
Microsoft SQL Server 2012 SP1
Windows 8.1 Enterprise
See all trials »
Related Sites
Microsoft Download Center
TechNet Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
e-Learning overview
Certifications
Certification overview
MCSA: Windows 8
Windows Server Certification (MCSE)
Private Cloud Certification (MCSE)
SQL Server Certification (MCSE)
Other resources
TechNet Events
Second shot for certification
Born To Learn blog
Find technical communities in your area
Support options
For small and midsize businesses
For enterprises
For developers
For IT professionals
From partners
For technical support
Support offerings
For home users
More support
Microsoft Premier Online
Microsoft Fix It Center
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
International support solutions
Log a support ticket
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Microsoft Reduce Customer Effort Center
Our team drives product feedback based on solid data, it drives proactive issue prevention and ultimately, drives improvements around products based on customer feedback.
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search Blogs
Tags
Active Directory
Best Practice
Client
Cloud
Exchange Server
Hot Issue
hot issues
IE9
Internet Explorer
Notification
Outlook
Security
Server
social
sp1
System Management Server
Tips
Win8
Windows
Windows 7
Windows 7 SP1
Windows Server
Windows Server Cluster
Windows Server Terminal
Windows Vista
Archive
Archives
September 2012
(1)
March 2012
(7)
December 2011
(4)
November 2011
(12)
October 2011
(1)
September 2011
(1)
August 2011
(7)
July 2011
(2)
June 2011
(12)
May 2011
(4)
April 2011
(2)
March 2011
(20)
February 2011
(2)
January 2011
(3)
December 2010
(5)
November 2010
(21)
September 2010
(1)
June 2007
(7)
May 2007
(16)
April 2007
(18)
March 2007
(14)
February 2007
(12)
January 2007
(14)
December 2006
(12)
November 2006
(15)
September 2006
(22)
November, 2011
TechNet Blogs
»
Microsoft Reduce Customer Effort Center
»
November, 2011
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Powershell: How to re-provsion the sync DB to resolve the issue that User Profile Synchronization Service fails to start?
Posted
over 3 years ago
by
danma_
You can use the below script: ================================== Get-SPDatabase $syncdb=Get-SPDatabase -Id $syncdb. Unprovision () $syncdb.Status='Offline' Get-SPServiceApplication $upa=Get-SPServiceApplication - Id $upa.ResetSynchronizationMachine...
Powershell: How to restart the User Profile Synchronization Service if disabled?
Posted
over 3 years ago
by
danma_
3
Comments
Below script shows how to restart the User Profile Synchronization Service if disabled. ============================================ # Loads the SharePoint 2010 PowerShell extensions Add-PSSnapIn Microsoft.SharePoint.PowerShell # Sets variable...
CPP: How to wait on a job object?
Posted
over 3 years ago
by
danma_
This is the sample code in CPP to show how to wait on a job object. In the documentation: The state of a job object is set to signaled when all of its processes are terminated because the specified end-of-job time limit has been exceeded. Use WaitForSingleObject...
Error "The certificate enrollment page you are attempting to access cannot be used with this version of Windows" after MS11-051 patch installation
Posted
over 3 years ago
by
danma_
2
Comments
Symptom: You have Windows Server 2003 with installed Certification Authority and Web Enrollment components. When you try to access web enrollment pages from a Windows Vista-based (or newer) computer you receive error: The certificate enrollment...
How to query network adapter for IPv6 protocol?
Posted
over 3 years ago
by
danma_
Assuming you need it in script, PowerShell: # computername $MachineName = 'localhost' # open HKLM reg on $MachineName $reg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey('LocalMachine', $MachineName) # open subKey SYSTEM\CurrentControlSet...
C# - How to load DLL in separate domain and use its methods?
Posted
over 3 years ago
by
danma_
2
Comments
Sometimes you may have a need to load a DLL in a separate domain to call its method at run-time. You can create a proxy class by referencing the following code snippet: public class Loader : MarshalByRefObject { object CallInternal( string dll...
Word 2010 switches to Draft view from Print Layout view when the computer is left idle for a couple of minutes
Posted
over 3 years ago
by
danma_
39
Comments
Some Word2010 users reported an interesting issue: You are viewing a document (with reviewing turned on) in Print Layout view, and after a few minutes, the view switches to Draft view and opens the comments window on the bottom. It usually happens...
A Windows Live error occurred while provisioning for "mail@domain.com". An internal error occurred while talking to Windows Live
Posted
over 3 years ago
by
danma_
Symptom: You've implemented federation (AD FS) in your on-premises organization. You are doing a staged Exchange Migration (using a CSV file). You have migrated a couple of mail boxes from on-premises Exchange server to Plan E3. But you start getting...
Script error when attempting to load album/track information in Windows Media Player 12
Posted
over 3 years ago
by
danma_
6
Comments
Sometimes you may encounter the script error when you attempte to load album/track information in WMP12. For example: An error has occurred in the script on this page Line: 240 Character: 25 Error: Object expected Code: 0 URL: http:...
How to determine if current user is a domain or local user?
Posted
over 3 years ago
by
danma_
3
Comments
Assuming you need it in script, PowerShell: (gwmiWin32_LogonSession).GetRelated("Win32_UserAccount") If you expect more than one logon session, then (gwmi Win32_Process -filter "Handle = $Pid").GetRelated("Win32_LogonSession") |% {$_...
MSQUERY randomly crashed
Posted
over 3 years ago
by
danma_
There are many possible causes that can crash MSQuery in office 2010. A typical crash is as below: AppName: msqry32.exe AppVer: 14.0.4750.1000 ModName: msvcr90.dll There are several possible resolution you can try to resolve the above crash: ...
Admin cannot upload profile picture after SP1 and June CU
Posted
over 3 years ago
by
danma_
Symptom: After SharePoint 2010 SP1 and June CU upgrade, when customer goes into Central Admin->manage user profile service app->manage user profiles, select a user, he cannot uploaded their profile picture any more, when he click choose picture...