Browse by Tags

Tagged Content List
  • Wiki Page: Experience from the field on designing a PixelSense application

    Introduction Since the release to market of the first Microsoft Surface device (Aka Surface V1) and the today Samsung SUR40 with Microsoft PixelSense technology, I have been working on building different types of application for such devices. By looking a bit behind (even if I am not used to do...
  • Wiki Page: Invoke ReSTful Web Services with BizTalk Server 2010

    This article presents a workable solution for consuming ReSTful services using BizTalk Server 2010 . Table of Contents Acknowledgements Contents What is ReST? BizTalk Server and ReST Scenario for this Article How to Use this Article Set up the Design-time Create a Schema for the Twitter Request...
  • Wiki Page: How to Use Lucene.NET with Windows Azure SQL Database

    Table of Contents Summary Lucene.NET The Azure Library for Lucene.NET Using the Library Using Lucene.NET to index SQL Database Searching the Lucene.NET catalog References Summary Lucene.NET is a .NET implementation of the Lucene full-text search engine. This article describes how you can use...
  • Wiki Page: SQL Server Columnstore Index FAQ

    The SQL Server xVelocity columnstore index feature, code-named Apollo, stores data by columns instead of by rows, similar to a column-oriented DBMS. The columnstore index speeds up data warehouse query processing in SQL Server 2012, in many cases by a factor of 10 to 100. We'll be posting answers...
  • Wiki Page: SharePoint - Filter list dynamically

    Hello everyone, Today I’ll talk about a request I had more than once , whether it’s with my clients or on msdn forums where the issue came up several times : How to filter a list based on a parameter entered by the user? For that we have the default “TextFilter” webpart, but this webpart has...
  • Wiki Page: How to Add a Graphical User Interface to a PowerShell Script by Using HTML Applications

    If you like writing PowerShell scripts and you need a simple solution to add a graphical user interface (GUI) to your scripts, you might want to read this article. Table of Contents Introduction to HTML Applications Adding Code to HTAs Adding a Menu to HTAs Combining HTAs with PowerShell Scripts...
  • Wiki Page: How to Use PowerShell to Create a Wiki Catalog Page (en-US)

    Wiki PowerShell Item Summary This script builds a HTML catalog page based on the tags you put in a list. With this PowerShell script you can quickly create your HTML catalog file with tags of your choice. The file uses a header text file ( download here ) and footer text file (HTML) ( download...
  • Wiki Page: How to Use PowerShell to List the Configured Management Agents in FIM

    FIM ScriptBox Item Summary The script lists the management agents that are configured on your system. Script Code 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 #-----------------------...
  • Wiki Page: FIM: GALSYNC-HOW TO: Customize TargetAddress on Export Attribute Flow

    Table of Contents PURPOSE CONFIGURATION BACKUP BACKUP: Management Agent BACKUP: Source Code GUI MODIFICATIONS - Updating the Management Agent SOURCE CODE MODIFICATIONS UPDATE BUILD OUTPUT PATH ( VERY IMPORT ) MODIFY THE SOURCE CODE _MyNewTargetAddress Case Statement Code By mailNickName and msExchOriginatingForest...
  • Wiki Page: Load Testing BizTalk Server Solutions with Visual Studio 2010

    Contents Introduction Creating a Visual Studio Unit Test to Submit Documents to BizTalk Server Set Visual Studio 2010 Test Project Options Create a new Visual Studio 2010 Solution with a Test Project Update the Code in the Test Project and add an Application Configuration File to the Test...
  • Wiki Page: Expose LOB Services on the Cloud Using AppFabric Connect for Services

    [ Please contribute your knowledge and experience to this document. The community within and outside Microsoft regularly evaluates changes and accepts, refines, or reverts them as appropriate. To read the original document, click here . ] Exposing services on the cloud is a key requirement for...
  • Wiki Page: RegEx Class

    Slightly boring class for doing some regex... I've stored my notes on my pWord program which I also use for tracking passwords and it will always be open source. www.sourceforge.net/projects/pword . Please feel free to ignore my IE10 formatting woes using the WYSIWYG!. using...
  • Wiki Page: Creating a Pluggable Application Without Any External Dependencies on 3rd-party Libraries

    A complete example of making a pluggable application without any external dependencies on 3rd-party libraries. To achieve that, we will need three different projects, I'm starting out from the engine to the application that will eventually host it. 1. PluggableApplication.Interface ...
  • Wiki Page: String and Embedded Resources inside Windows Store App

    It is pretty straight forward to access resources in inside Windows Store App, however there are few questions I came across on MSDN forum which I tried to answer. One of the interesting one was how to store resources inside RESW (Resource file) with name like SubTokenOne.SubTokenTwo.SubToken. From...
  • Wiki Page: How to Identify Crawled Properties and Their Values

    Summary This page describes two important steps of a search project that can prove to be a bit of a challenge. The content of this article relates specifically to SharePoint 2010 and FAST Search. The first step is to identify what crawled properties you have to work with and the second step is to inspect...
  • Wiki Page: SQL Server Backup

    Purpose This document will provide you some not very common knowledge about SQL backup. I presume that at least you know how to do backup in SQL Server. Microsoft official documentation for SQL Server Backup is found on this link. Table of Contents Purpose Case Study: Database Back-up Real World...
  • Wiki Page: Small Basic Curriculum: Lesson 4.3: Collision Detection

    Small Basic > Curriculum > Online > Lesson 4.3: Collision Detection Table of Contents Collision Detection What is Collision Detection? How to Detect Collision? Hit the Target – The Game Hit the Target – How to Play Hit the Target – The Code Let’s Summarize… It’s Time to Apply Your...
  • Wiki Page: SQL Server Change Data Capture (CDC)

    Introduction "Change data capture is designed to capture insert, update, and delete activity applied to SQL Server tables, and to make the details of the changes available in an easily consumed relational format. The change tables used by change data capture contain columns that mirror the...
  • Wiki Page: Implementing Transparent Data Encryption (TDE) in SQL Server

    Introduction Transparent Data Encryption (TDE) is a technology employed by Microsoft to encrypt database content. "Transparent data encryption (TDE) performs real-time I/O encryption and decryption of the data and log files. The encryption uses a database encryption key (DEK), which is stored...
  • Wiki Page: SQL Server Samples Readme

    The SQL Server 2012 samples provide a variety of databases and files that you can use to learn about new and existing features. This article is the consolidated Readme for each sample in the SQL Server 2012 release. It provides prerequisite information, installation instructions, and links to the...
  • Wiki Page: MVVM and ScatterView

    ScatterView provides a simple way to create applications that enhance the Microsoft PixelSense experience. It is a common way to visualize content that can be manipulated freely by user. Figure 1 ScatterView with some different ScatterViewItems All those who have tried to bind...
  • Wiki Page: Download / Send Request AsyncWithProgress with HttpClient (WinRT)

    Windows 8 Metro Runtime comes with many innovations to be used by us developers. There are quite a number of new features also regarding the Web and Http namespaces. Imagine you were dealing with a long lasting http communication scenario. It involves an HttpRequest and a response that takes quite...
  • Wiki Page: How to Create Video Games in VB.Net (Windows Forms)

    How to Create Video Games in VB.Net (Windows Forms) I realize that this is a very popular subject, especially amongst budding developers. The drive to create games may be the reason you started working with Visual Basic in the first place. After stepping through a few samples and getting the hang...
  • Wiki Page: Get Cookies from WebBrowser controls in Visual C#

    This code get simple cookie and get also HTTP only cookie. add this namespace using System.Runtime.InteropServices; [DllImport("wininet.dll", CharSet = CharSet.Auto, SetLastError = true)] static extern bool InternetGetCookieEx(string pchURL, string pchCookieName, StringBuilder...
  • Wiki Page: How to use PowerShell to Automatically Assign Licenses to your Office365 Users

    AAD ScriptBox Item The objective of this article is to introduce you to a process to assign licenses to your Office365 users automatically. This process is based on a set of PowerShell scripts. You can find the required PowerShell script code at the end of this article. The following table...
Page 1 of 25 (601 items) 12345»
Can't find it? Write it!