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:
Microsoft Security Compliance Manager (SCM) - Frequently Asked Questions (FAQ)
Yagmoth555
Table of Contents Q: How do I join the latest Security Compliance Manager Beta Review Program? Q: How do I obtain the Security Compliance Manager solution accelerator? Q: Can I read about Security Compliance Manager before I download it? Q: Can I read or access the security guides without downloading...
on
6 Feb 2013
Wiki Page:
How to Apply Registry Setting Changes to Open Instances of Internet Explorer Embedded (Windows Embedded Compact 7)
Yagmoth555
When you develop an application that runs on Windows Embedded Compact 7, you may need your application to programmatically change the Internet Explorer Embedded registry settings. You can apply the new settings without the user having to restart the web browser by adding a couple extra lines of code...
on
2 Feb 2013
Wiki Page:
How to use Powershell to Copy an MPR (en-US)
Markus Vilcinskas
FIM ScriptBox Item Summary This Powershell script is intended to simply the process of copying an MPR - usually in order to duplicate or split out functionality with the fewest possible necessary manual changes needed. Script Code 001 002 003 004 005 006 007...
on
2 Feb 2013
Wiki Page:
Hyper-V, PowerShell, and WMI
Richard Mueller
Let's use this article to provide quick Hyper-V tasks in PowerShell. Get a list of virtual machines on a Hyper-V parent # This can be run locally or against a remote parent. Use "." for local $VMs = gwmi MSVM_ComputerSystem -computer "<computername>"...
on
1 Feb 2013
Wiki Page:
How to Use PowerShell to Add a Member to a Group in FIM
Markus Vilcinskas
FIM ScriptBox Item Summary This script adds a member to a group Script Code 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017 018 019 020 021 022 023 024 025 026 027 028 029 030 031 032 033...
on
1 Feb 2013
Wiki Page:
How to Use PowerShell to Remove Attributes from FIM ImportObjects
Markus Vilcinskas
FIM ScriptBox Item Summary FIM Service configuration migration is a tricky topic, but boils down to two object types: ImportObject ExportObject The ImportObject is produced by the configuration migration commands as shown below. Sometimes you just might not want to use the ImportObject...
on
23 Jan 2013
Wiki Page:
How to Use PowerShell to Run Management Agents
Markus Vilcinskas
FIM ScriptBox Item Summary A PowerShell module is available on CodePlex to simplify FIM management ( http://fimpowershellmodule.codeplex.com/ ). This article shows how to use that module to start a management agent in the FIM Synchronization Engine. Note : This snippet was copied from...
on
23 Jan 2013
Wiki Page:
How to Use Powershell to revert all search scopes which search on DisplayName to use Contains instead of Starts-With unless that Search Scope has the AdvancedFilter configured.
Markus Vilcinskas
FIM ScriptBox Item Summary With the release of Forefront Identity Manager R2 2010, the Search Scopes have had some improvements to their overall performance. This was achieved by changing the search scope of DisplayName to use start-with rather than contains. That is, in FIM 2010 for example...
on
23 Jan 2013
Wiki Page:
How to Use PowerShell to Fix Incorrect MA References on Portal Sync Rules
Markus Vilcinskas
FIM ScriptBox Item Summary This script replaces the MA ID references in portal sync rules. If you run into the errors described in this post and get the "sync-rule-validation-parsing-error; referenced MA has been deleted" you can't open the sync rules in the portal to correct...
on
23 Jan 2013
Wiki Page:
How to Use PowerShell to Retrieve an Object's SID from Active Directory Domain Service
Markus Vilcinskas
FIM ScriptBox Item Summary This script retrieves the user-friendly string representation of an object's SID from Active Directory Domain Service. Script Code 001 002 003 004 005 006 007 008 009 010 011 012 013 014 015 016 017...
on
23 Jan 2013
Wiki Page:
Time Services for a Domain Controller on Hyper-V
Richard Mueller
If you only have one domain controller and it is Virtualized on Hyper-V, what is the proper way to configure Windows Time? First, make sure time sync to the host machine is turned on in the Integration Services. Next, on your Domain Controller add the following registry key: reg add HKLM...
on
17 Jan 2013
Wiki Page:
Walkthrough: Creating and Using C# Mapper and Reducer (Hadoop Streaming)
Ed Price - MSFT
Hadoop Streaming is a utility that lets you create and run map/reduce jobs with any executable or script as the mapper and/or the reducer. Both the mapper and reducer read the input from STDIN and write the output to STDOUT. For more information about Hadoop Streaming, see Hadoop Streaming documentation...
on
16 Jan 2013
Wiki Page:
How to Create Forest Trust Using PowerShell
Ed Price - MSFT
Recently I got request to create forest transitive trust (with forest-wide authentication) using script. My first steps aimed at NETDOM utility, but after some unsuccessful test I found this: Important Netdom cannot be used to create a forest trust between two AD DS...
on
14 Jan 2013
Wiki Page:
Client Hyper-V 機能の有効化 (ja-JP)
Tomoaki Yoshizawa
Table of Contents コントロールパネルを使った Client Hyper-V 機能の有効化 PowerShell を使った Client Hyper-V 機能の有効化 関連項目 Client Hyper-V 機能の有効化は以下の方法で行います。 コントロールパネルを使った Client Hyper-V 機能の有効化 コントロールパネルの プログラムと機能 を開きます。 画面左側にある Windows の機能の有効化または無効化 を実行します。 Hyper-V 関連の全ての機能を有効化するため、 Hyper-V ( ツリーの最上層 ) を選択し...
on
13 Jan 2013
Wiki Page:
Blackboard Design Pattern: A Practical Example - Radar Defense System
Ed Price - MSFT
This article presents a WPF C# example of the Blackboard design pattern, available on TechNet Gallery. http://gallery.technet.microsoft.com/Blackboard-Design-Pattern-13a35a7e It discusses the concepts of the design pattern, and highlights points of interest for C#, WPF developers. ...
on
11 Jan 2013
Wiki Page:
Active Directory Recycle Bin
Richard Mueller
Active Directory Recycle bin this is the one of most important feature of the Windwos 2008 R2 Active Directory domain enviorement. With previous domain controllers (Windows 2003, Windows 2008) it was very difficult to restore deleted items. We could use ldp.exe or we have to restart the server in directory...
on
8 Jan 2013
Wiki Page:
Loops with Visual Basic.Net
Paul Ishak
What the heck is a loop??? A loop is a repetitive procedure that is designed to repeat a given set of instructions. Loops are absolutely essential for getting work done. You know how computer software saves you so much time, by doing the tedious repetition of tasks? Our good hero the loop...
on
7 Jan 2013
Wiki Page:
AD-Powershell for Active Directory Administrators
Richard Mueller
Table of Contents Computer object commands Group object commands Organizational Unit (OU) commands User object commands Computer object commands List all computer accounts in a domain Get-ADComputer –Filter {Name –Like "*"} View all computers that are logged in for...
on
1 Jan 2013
Wiki Page:
Small Basic: コードブロックの作り方 (ja-JP)
Nonki Takahashi
この記事は特に TechNet Wiki に Small Basic の記事を書く方向けに書かれています。 Code Block Generator v1.3 について説明します。 TechNet Wiki の [EDIT] 画面にあるメニューバーにはコードブロックを作成するための [Format Code Block] アイコンがあります。 この [Format Code Block] ツールは以下のようなポップアップウィンドウを表示します。しかし、ここには Small Basic プログラム言語の選択肢がありません。 そこで、Small...
on
29 Dec 2012
Wiki Page:
Small Basic: How to Create an Extension Using C#
Liam McSherry
Table of Contents Introduction Setting up your Visual Studio Project Programming Your Extension Compiling Your Code Testing Your Extension Distributing Your Extension Introduction Microsoft Small Basic, while a good language for a beginner, is rather limited once you really get into programming...
on
21 Dec 2012
Wiki Page:
How to Send Emails Using C#
Ed Price - MSFT
This topic is a how to. Please keep it as clear and simple as possible. Avoid speculative discussions as well as a deep dive into underlying mechanisms or related technologies. Table of Contents Step By Step Procedure Other Languages Italian (it-IT) Step By Step Procedure ...
on
20 Dec 2012
Wiki Page:
Outlook 2010: Executable Switches
Ed Price - MSFT
Microsoft Office Outlook has a number of command-line switches that allow you to perform a variety of actions. One very useful example of this is the /recycle switch, which was introduced as a default in Outlook 2010. In previous versions, if a user already had an instance of Outlook open and clicked...
on
19 Dec 2012
Wiki Page:
Accessing the Control Panel via the Commandline
Ed Price - MSFT
Table of Contents Executing Control Panel Items Windows Vista Canonical Names New Commands for Windows Vista Personalization System Programs and Features Regional and Language Options Folder Options Power Options Legacy Control Panel Commands Executing Control Panel Items There are two ways...
on
19 Dec 2012
Wiki Page:
Access Remote Desktop Via Commandline
Ed Price - MSFT
Command line syntax for Remote Desktop Connection Syntax mstsc [<connection file>] [/v:<server[:port]>] [/admin] [/f[ullscreen]] [/w:<width>] [/h:<height>] [/public] | [/span] [/edit "connection file"] [/migrate] [/?] Command...
on
19 Dec 2012
Wiki Page:
SQL Server: How to Find the First Available Timeslot for Scheduling
Ed Price - MSFT
In a scheduling application, it may be desirable to find the first available schedule time (timeslot) for a new appointment. The new appointment must fit completely between existing appointments -without overlap. As the schedule fills, new entries are assigned to the next first available schedule...
on
4 Dec 2012
Page 41 of 45 (1,105 items)
«
39
40
41
42
43
»
Can't find it? Write it!
Post an Article