TechNet
Products
IT Resources
Downloads
Training
Support
Products
Windows
Windows Server
System Center
Microsoft Edge
Office
Office 365
Exchange Server
SQL Server
SharePoint Products
Skype for Business
See all products »
Resources
Channel 9 Video
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 Wiki
Windows Sysinternals
Virtual Labs
Solutions
Networking
Cloud and Datacenter
Security
Virtualization
Updates
Service Packs
Security Bulletins
Windows Update
Trials
Windows Server 2016
System Center 2016
Windows 10 Enterprise
SQL Server 2016
See all trials »
Related Sites
Microsoft Download Center
Microsoft Evaluation Center
Drivers
Windows Sysinternals
TechNet Gallery
Training
Expert-led, virtual classes
Training Catalog
Class Locator
Microsoft Virtual Academy
Free Windows Server 2012 courses
Free Windows 8 courses
SQL Server training
Microsoft Official Courses On-Demand
Certifications
Certification overview
Special offers
MCSE Cloud Platform and Infrastructure
MCSE: Mobility
MCSE: Data Management and Analytics
MCSE Productivity
Other resources
Microsoft Events
Exam Replay
Born To Learn blog
Find technical communities in your area
Azure training
Official Practice Tests
Support options
For business
For developers
For IT professionals
For technical support
Support offerings
More support
Microsoft Premier Online
TechNet Forums
MSDN Forums
Security Bulletins & Advisories
Not an IT pro?
Microsoft Customer Support
Microsoft Community Forums
Sign in
Home
Library
Wiki
Learn
Gallery
Downloads
Support
Forums
Blogs
Resources For IT Professionals
United States (English)
Россия (Pусский)
中国(简体中文)
Brasil (Português)
Skip to locale bar
Get this Tag RSS feed
Translate this page
Powered by
Microsoft® Translator
Popular Tags
Active Directory
AD
AD DS
adfs
ASP.NET
azure
BizTalk
BizTalk Server
BizTalk Server 2010
C#
Candidate for deletion
certification
cloud
core docs
de-DE
EAA
Ed Price
Ed's Stub Pages
en-US
ESA
es-ES
Excel
Exchange
Exchange 2010
fa-IR
Fernando Lugao Veltem
FIM
FIM 2010
FIM Resources
FIM-HELP
forefront
forums
fr-FR
Gokan Ozcifci
has code
has comment
has comments
has image
has Images
has Other Languages
has See Also
Has Table
Has TOC
Horizon_Net
How To
Hyper-V
id-ID
IIS
Italian Wiki Articles
it-IT
ja-JP
Jordano Mazzoni
Link Collection
Luciano Lima
Luigi Bruno
Lync Server 2010
MIISILMFIM MACAULAY
Multi Language Wiki Articles
needs work
operations manager
Pirated Content
Portal
Português Brasil
PowerShell
pt-BR
security
SharePoint
SharePoint 2010
SharePoint 2013
SharePoint Pirate
Small Basic
solucionando problemas
SQL Server
SQL Server 2012
stub
System Center
System Center 2012
TechNet Guru
TechNet Wiki
TechNet Wiki Featured Article
tonyso
Translated into Japanese
troubleshooting
tr-TR
vídeo
Video
Virtualization
VMM
Wiki
Windows
Windows 7
Windows 8
Windows Azure
Windows Server
Windows Server 2003
Windows Server 2008
Windows Server 2008 R2
Windows Server 2012
yottun8
اکتیو دایرکتوری
Browse by Tags
>
TechNet Articles
>
All Tags
>
has code
Tagged Content List
Wiki Page:
Azure Mobile Services Custom API - Exploring Server Side Capability
Ed Price - MSFT
This Wiki Article explores some of the capabilities of Azure Mobile Services API that might be of interest in some scenarios. Note: this article assumes some familiarity with Azure Mobile Services. For a great introduction see the Microsoft documentation . Node.js It is important...
on
11 Sep 2013
Wiki Page:
SharePoint 2010: Find Installed Feature Information in SharePoint
Naomi N
It is possible to find SharePoint installed feature information by the means of the SharePoint Power Shell Console. This PowerShell script does this for you. PS 1: Gives a simple output of all features in table format sorted by solutionId then featureName. $url = "Your site URL...
on
11 Sep 2013
Wiki Page:
Become More Productive by Making Custom Code Generation Tools
Richard Mueller
Download You can download this example project at the following link. MSDN Galleries (C# and Visual Basic examples) Introduction Sometimes when programming, we get stuck spending valuable time performing repetitive tasks. We can forget that it's possible to create our own reusable...
on
11 Sep 2013
Wiki Page:
Conditional Branches With Visual Basic.Net
Richard Mueller
What is a conditional branch ? Conditional branches are how computers can be programmed to make decisions based on varying conditions. Without conditional branches , computers would not be able to 'Think'. How do conditional branches work? There are 2 kinds of conditional branches...
on
11 Sep 2013
Wiki Page:
Bitmap.Lockbits De-Mystified .Net
Richard Mueller
How To Use Bitmap.Lockbits Many people may have noticed in the past how intimidating using Bitmap.Lockbits has been due to a lack of clarification/documentation on its usage. This article attempts to do an in depth review of its usage. It does not focus on alternate methods to lockbits. I remember...
on
11 Sep 2013
Wiki Page:
Small Basic: How to Create an Extension Using VB.NET
Richard Mueller
Table of Contents STEP 1: Create an Extension STEP 2: Make it Work STEP 3: Moving On Other Languages This article is about how to create a simple extension that you can build on for Small Basic (Microsoft). To get started you will need Small Basic, .NET Framework 3.5, and Visual Basic.NET 10. If...
on
11 Sep 2013
Wiki Page:
Visual Basic - Knife Thrower!
Richard Mueller
Table of Contents What is this article about? Glossary/MSDN Library Cross Reference of terms What is GDI+? What is a polygon in Visual Basic? How does polygon rotation work? Part1 Form Initialization Part2 Form1's Load event Part 3 - Waiting for input Part 4 - The polygon Class Project Source...
on
11 Sep 2013
Wiki Page:
Visual Basic - Drive Searcher
Richard Mueller
Table of Contents Finding files with Visual Basic Source Code Introducing the DriveSearcher Class SearchParameters FileFoundEventHandler StatusChangedEventHandler DriveSearcher Class Resources Finding files with Visual Basic A few times a month, I will see people asking in the forums...
on
11 Sep 2013
Wiki Page:
Convert System.Decimal to and from Byte Arrays (VB & C#)
Richard Mueller
Table of Contents Introduction Getting the bytes of a System.Decimal Creating an instance of the System.Decimal from bytes Summary References Introduction At first glance converting the datatype (System.Decimal) to and from bytes may appear to be a challenge, this is because the...
on
11 Sep 2013
Wiki Page:
T-SQL: Script to Find the Names of Stored Procedures that Use Dynamic SQL
Naomi N
This script was developed to answer the question in this thread I need query find all the SPs that used dynamic SQL We can execute dynamic sql using sp_executesql or just with Exec / Execute . To find the names of the StoredProcedure that may have used dynamic SQL, this script can be used...
on
11 Sep 2013
Wiki Page:
Understanding NOLOCK Query Hint
Naomi N
In our day to day T-SQL querying we use lot of query hints to modify the way a particular query will be executed. When we specify query hint SQL Server produces optimized plan using this query hint. This can be dangerous if it is not tested before in UAT as it is known fact that query plan which SQL...
on
11 Sep 2013
Wiki Page:
How to Get the Textual Representation of a Number (Convert Number to Words) in VB.Net
Naomi N
Table of Contents Introduction Designing the Class Converting Decimal Values Usage Example Summary Appendix A: Complete Code Sample Introduction Converting a decimal number into its textual representation is nothing new and the Internet is full of examples on ways to do so. The basic idea...
on
11 Sep 2013
Wiki Page:
SharePoint 2013: Integrate Yammer with SharePoint for Social Feature(s)
Naomi N
Table of Contents Yammer ? Yammer Integration with SharePoint Integration with Yammer Web part Integration with Yammer embed code Yammer ? Yammer is a social communication platform for organization. Employees can communicate with each other to share valuable information, they can get in touch...
on
11 Sep 2013
Wiki Page:
T-SQL: Applying APPLY Operator
Naomi N
This article originates from the following MSDN Transact SQL Forum's question: Complex logic to be implemented in SQL - Please help! and I hope I made a pun with its title. In my solution to the problem presented by the thread's originator I am going to show how to use OUTER APPLY...
on
11 Sep 2013
Wiki Page:
T-SQL: Date-Related Queries
Naomi N
In this article I plan to add various interesting date related queries. This article will expand when new problems will present themselves in the Transact-SQL forum. Table of Contents Finding Day Number from the Beginning of the Year Finding Beginning and Ending of the Previous Month See Also ...
on
11 Sep 2013
Wiki Page:
T-SQL: Gaps and Islands Problem
Naomi N
This article will consider a simple classical Gaps & Islands problem asked recently in Transact-SQL Forum at MSDN with non original title "Query Help" . Table of Contents Problem Definition Solution See Also Problem Definition The thread originator was kind enough...
on
11 Sep 2013
Wiki Page:
SharePoint 2013: How to Get Following and Followers of User by using JSOM or JavaScript
Naomi N
Table of Contents Using Social Information in SharePoint 2013 First step Second Step See Also Other languages Using Social Information in SharePoint 2013 Getting Following and followers of a specific or current user in SharePoint 2013 is very easy. SharePoint 2013 has provided client side...
on
11 Sep 2013
Wiki Page:
SharePoint 2013 - Comment récupérer les suivis et les adeptes d'un utilisateur en utilisant JSOM ou JavaScript (fr-FR)
Benoit Jester
Note : Cet article est une traduction de l'article SharePoint 2013: How to Get Following and Followers of User by using JSOM or JavaScript. Table of Contents Utilisation des informations sociales dans SharePoint 2013 Première étape Deuxième étape Voir aussi Autres langues disponibles ...
on
11 Sep 2013
Wiki Page:
How to Handle image/pjpeg MIME Type in a image control which is not supported in SSRS
Maheshkumar S Tiwari
Solution: 1.Go the image control and go to the properties. 2. You would find the property "Use this MIME type" 3. Write a expression to change the Mime type to a MIME type that is supported by SSRS ex: If(First(Fields!MIME_TYPE.Value, "DataSetImage") = "image/pjpeg"...
on
11 Sep 2013
Wiki Page:
Querying and Creating Records in Dynamics CRM 2011 from BizTalk Server 2010
Maheshkumar S Tiwari
Table of Contents Introduction Integration Strategies Referencing the Service Mapping the Query Message Mapping the Create Message Configuring the Send Port Executing the Query Summary See Also Introduction Microsoft Dynamics CRM 2011 is the latest version of Microsoft’s CRM platform. Both the...
on
10 Sep 2013
Wiki Page:
BizTalk Server:Receive Pipeline Component To Validate Incoming Data
Maheshkumar S Tiwari
Table of Contents Problem Solution Component Code Execute(): Code here Utility Function: Using the component Getting : Instance Xpath From XSD Registering Component Adding it to tool bar Points of Interest See Also Problem BizTalk default EDI validation will validate data base on Schema Enumerations...
on
10 Sep 2013
Wiki Page:
BizTalk: Mapping: Script Functoid: Type of Input and Output Parameters
Maheshkumar S Tiwari
Rule of thumb: In the "Script Functoids - Inline C#" use only string types as the input and output parameters. How it works: If the C# method in the Script Functoids - Inline C# has non-string parameter, it will be converted to the string on the "border" of this functoid...
on
10 Sep 2013
Wiki Page:
BizTalk: Monitoring and Automatically Starting Host Instances Via A Scheduled Task
Maheshkumar S Tiwari
by Ron Phillips, aka El Bo on Technet Table of Contents Introduction Building the Sample See Also Introduction If you've ever gotten a phone call at 2 am asking you to figure out why a system is down, you'll appreciate the utility of self-healing systems. With a little work with...
on
10 Sep 2013
Wiki Page:
Save Credentials for all Servers’ RDP Connections
Maheshkumar S Tiwari
It was a big joy when I found a solution how to save my current windows credentials for all servers' rdp connections. We have more than 50 servers and it's annoying to enter my credentials on every rdp connection to server. But can you imagine how it is hard for environment with 200 and even...
on
10 Sep 2013
Wiki Page:
How to Programmatically Add a Workflow Variable when Rehosting the Workflow Designer
Maheshkumar S Tiwari
When creating workflows programmatically, variables can be added to an activity by adding them to the activity's variable collection, like this. Variable< int > n = new Variable< int >( "n" , 1); Sequence s = GetSequenceActivityFromSomewhere(); s.Variables.Add...
on
10 Sep 2013
Page 8 of 45 (1,105 items)
«
6
7
8
9
10
»
Can't find it? Write it!
Post an Article