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:
SharePoint 2010: Importing Data from a SQL Database into a SharePoint list
Richard Mueller
When developing solutions for the SharePoint platform, there's often a requirement to import data from a SQL database into one or more SharePoint lists. This can easily be accomplished using PowerShell. By using PowerShell you have a lot of control over what data gets imported, and how it is formatted...
on
18 Sep 2013
Wiki Page:
SharePoint 2013: Custom Expiration Action for SharePoint Retention Policy
Richard Mueller
Table of Contents Step 1 Step 2 Step 3 Step 4 Step 5 Step 1 Create feature receiver Step 2 Create xmlManifest string xmlManifestAction = "<PolicyResource xmlns='urn:schemas-microsoft-com:office:server:policy' " + "id='CustomExpiration...
on
18 Sep 2013
Wiki Page:
SharePoint 2010: Importing Data from an Excel File into a SharePoint List Using PowerShell
Richard Mueller
There are several different ways to import data from a spreadsheet into a SharePoint list. Depending on your requirements, you can copy data into SharePoint lists using the DataSheet view, for example. However, there are some circumstances where this won't work (i.e. lack of support for certain...
on
18 Sep 2013
Wiki Page:
SharePoint: Using PowerShell to Perform a Bulk Delete Operation
Richard Mueller
Introduction Have you ever written a really great PowerShell script for migrating data into SharePoint, only to have made the mistake of adding tens of thousands of new list items into the wrong SharePoint list? Oops. Have you ever tried deleting a few hundred list items using SPListItemCollection...
on
18 Sep 2013
Wiki Page:
Hosting the SharePoint Server 2013 Three-Tier Test Lab with Windows Server 2012 Hyper-V
Richard Mueller
The SharePoint Server 2013 three-tier test lab consists of five separate computers on the Corpnet subnet: DC1: The domain controller, DNS server, certification authority, and DHCP server WFE1: The front-end web server of the SharePoint Server 2013 three-tier farm APP1: The application server...
on
18 Sep 2013
Wiki Page:
How To: Convert VHD-bootable Image into Hyper-V VM
Carsten Siemens
Table of Contents Scenario Solution Conclusion Scenario You have a VHD used to boot your PC or server (see Boot from VHD ). You need to make this VHD bootable as Hyper-V VM. Solution This would not work by default. You will need to execute the following sequence of tasks. Note...
on
18 Sep 2013
Wiki Page:
Trick : SharePoint Group by View with Order by on DateTime Field
Richard Mueller
Hello Folks, This article is regarding creating “ SharePoint Group by View with Order by on DateTime Field ” for list or library in SharePoint 2010. First, lets us have a look on what is the need to create this kind of view? To create Group by view, SharePoint provides out of box settings in...
on
18 Sep 2013
Wiki Page:
Create SharePoint List/Library Using PowerShell
Richard Mueller
Use CreateSharePointLibrary function to create a new SharePoint List or Library. Parameters : $webUrl - Mandatory - SharePoint Web Url - e.g. http://server:port/ $LibraryName - Mandatory - SharePoint Library Name $Discription - Mandatory - SharePoint Library Description $LibraryTemplate...
on
18 Sep 2013
Wiki Page:
Making Backup and Restore Script
Richard Mueller
@echo off @echo -------------------------------------------------------- @echo Backing Up site http://localhost/ @echo -------------------------------------------------------- cd \Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN @echo Generating File Name using current...
on
18 Sep 2013
Wiki Page:
SharePoint: Upload File in Document Library Using PowerShell
Richard Mueller
Use UploadFileInLibrary function to upload a file in SharePoint document Library. Parameters : $webUrl - Mandatory - SharePoint Web Url - e.g. http://server:port/ $ DocLibName - Mandatory - SharePoint Library Name $ FilePath - Mandatory - File Path on hard drive , e.g. .\abc.xlsx ...
on
18 Sep 2013
Wiki Page:
SharePoint: Listing and Deleting SPListItemVersions Using PowerShell
Richard Mueller
Table of Contents Introduction Download The Script Example 1: Listing the versions of all list items in the http://corporate/pages library Example 2: Delete all versions in excess of 5 (ignoring minor versions) Example 3: A more advanced example, listing the versions of all list items in the http:...
on
18 Sep 2013
Wiki Page:
Create Blank WebPart Page Using PowerShell
Richard Mueller
Use CreateBlankWebpartPage function to create blank webpart page in a Non-Publishing SharePoint web . Parameters : $webUrl - Mandatory - SharePoint Web Url - e.g. http://server:port/ $WebPartPageName - Mandatory - New page name $WebPartPageLibraryName - Mandatory - Parent Library name...
on
18 Sep 2013
Wiki Page:
Tips : SharePoint Group by View with Order by on DateTime Field
Richard Mueller
Hello Folks, This article is regarding creating “ SharePoint Group by View with Order by on DateTime Field ” for list or library in SharePoint 2010. First, lets us have a look on what is the need to create this kind of view? To create Group by view, SharePoint provides out of box settings...
on
18 Sep 2013
Wiki Page:
MOSS2007: How to Remove Orphaned Features Using PowerShell
Richard Mueller
I recently had to use content deployment on some old MOSS 2007 systems. These systems are alive for a long time and a lot of solutions/features have been deployed to them. If features are not deactived before removal they stay as an orphan in the system (contentdb) and can cause issues lateron....
on
18 Sep 2013
Wiki Page:
MVC4 – Entity Framework (8 Steps to create your site)
Naomi N
MVC4 – Entity Framework 8 Steps to create your site Download your code here http://code.msdn.microsoft.com/vstudio/MVC4-ENTITY-FRAMEWORK-10-e15ef983 STEP1 Create a new project of type ASP.NET MVC 4 Web Application Choose the option Internet Application After project...
on
18 Sep 2013
Wiki Page:
FIM 2010 R2: How to Manage Group Membership from the User UI
Naomi N
Table of Contents Introduction Prerequisites Create Attributes and Bindings Modify the Resource Control Display Configuration XML file Create the sets Create the workflows Create the MPR’s Modify default Sets Testing Notes and modifications Introduction As everybody knows FIM has great capabilities...
on
18 Sep 2013
Wiki Page:
Read XML file from document library (All Sharepoint version)
Maheshkumar S Tiwari
Last week someone asked one question in forum about reading XML file from document library. As we know the implementation of XDocument.Load(string) doesn't supports an authenticated request to retrieve the XML file so we can use the Stream or FileStream to read the file directly, otherwise you...
on
17 Sep 2013
Wiki Page:
Small Basic Sample: GameGraphics
Ed Price - MSFT
Code '*************************************************************************************** 'Import XZG681 'Sample program to demonstate virtually all of the SmallBasic GraphicsWindow commands 'Includes use of Shapes, Images, Arrays, Mouse and Keyboard control 'Does...
on
17 Sep 2013
Wiki Page:
Small Basic Sample: Turtle Plus Flickr
Ed Price - MSFT
Code GraphicsWindow.Show() pic = Flickr.GetRandomPicture("lightning") gw = GraphicsWindow.Width gh = GraphicsWindow.Height GraphicsWindow.DrawResizedImage(pic, 0, 0, gw, gh) distance = 50 Turtle.Speed = 9 For sides = 3 To 20 DrawPolygon() EndFor Sub DrawPolygon...
on
17 Sep 2013
Wiki Page:
T-SQL: Display Horizontal Rows Vertically
Naomi N
This article is an outcome of my answer to this question on MSDN forum. Consider this scenario : Table 1: DEPARTMENT EMPID ENAME SALARY A/C 1 TEST1 2000 SALES 2 TEST2 3000 Table...
on
17 Sep 2013
Wiki Page:
Tools for Troubleshooting Slow Boots and Slow Logons (sbsl)
GinToxic
Table of Contents Tools Overview Installing XPERF to capture a slow boot or logon trace Using XBOOTMGR to capture slow boots, or slow logons caused by slow boots Using XPERF to capture slow logons Installing and using the SBSL SDP Manifest to capture data Configuring XPERF to view slow boot and logon...
on
17 Sep 2013
Wiki Page:
Visual Studio FAQ: Why a Coded UI Test Is Able to Find the Window/Controls Even if the Search Properties Are Different
Richard Mueller
Table of Contents Introduction Scenario Reason Solution Note See Also Introduction This is a common question that rises in the mind of every test developer. Scenario You add a control to UIMap using Coded UI Test Builder (You are able to locate the control using Coded UI Test...
on
17 Sep 2013
Wiki Page:
How to convert Unicode Data to ASCII and back in SQL server
Yagmoth555
Product Targeted MS SQL Server 2012 Summary In SQL server, few specific data handling scenarios require Unicode source data to be moved to non-Unicode destination format like ASCII format. During data conversion, it can be observed that the Unicode characters getting converted to ‘?...
on
17 Sep 2013
Wiki Page:
Deploying of the new version of SharePoint Workflow
Maheshkumar S Tiwari
Assume you have an activity which is executing for very long time. This is so called Long-Running workflow. In fact long-running scenario is one of scenarios in Commuter Sciences which practically can very easy be solved by Using Microsoft Workflow Foundation. Following workflow show never ending...
on
17 Sep 2013
Wiki Page:
SQL : Split Delimited Column into Multiple Columns Without External Function
Richard Mueller
Without making any external code or CLR, when we try to split a column into multiple column based on the delimeter present in that column, it can be achieved with XML methods present(SQL server 2005 or above). When number of dseired columns are less(say 2 or 3), it is quite easy with the help of character...
on
17 Sep 2013
Page 4 of 45 (1,105 items)
«
2
3
4
5
6
»
Can't find it? Write it!
Post an Article