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
MEA Center of Expertise
We are a 120+ technology enthusiasts helping Microsoft customers around Middle-East & Africa region. We bridge Microsoft tools & technologies to their businesses.
Social Media Sharing
Options
Subscribe via RSS
Home
About
RSS for posts
Atom
RSS for comments
OK
Email Blog Author
Search Blogs
Tags
#
Active Directory
Azure
COEX
developers
Development
Guru
Lync
Lync Architecture
Lync bandwidth
Lync features
Lync hardware requirements
Lync new features
Lync Server roles
Microsoft Tools
old phones
Powershell
Powershell Scripts
SharePoint
SharePoint 2010
SP2010
SQL Server
System Center
Unified Communications
Windows 8
Archive
Archives
June 2014
(1)
May 2014
(1)
April 2014
(1)
March 2014
(1)
January 2014
(1)
December 2013
(2)
November 2013
(1)
October 2013
(1)
September 2013
(1)
August 2013
(1)
June 2013
(2)
May 2013
(2)
March 2013
(1)
February 2013
(5)
September 2012
(2)
August 2012
(5)
July 2012
(9)
May 2012
(1)
March 2012
(2)
February 2012
(5)
January 2012
(2)
November 2011
(3)
October 2011
(6)
September 2011
(2)
August 2011
(6)
July 2011
(7)
June 2011
(6)
May 2011
(5)
April 2011
(22)
March 2011
(2)
February 2011
(5)
January 2011
(9)
December 2010
(3)
November 2010
(10)
October 2010
(14)
April, 2011
TechNet Blogs
»
MEA Center of Expertise
»
April, 2011
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Configure simultaneous ring, delegate-ringing and call-forwarding settings on behalf of a Lync Server 2010 user
Posted
over 3 years ago
by
Raymond Elias - volta82
9
Comments
SEFAUtil Abstract: SEFAUtil (secondary extension feature activation) is a command-line tool that enables Microsoft Lync Server 2010 communications software administrators and helpdesk agents to configure delegate-ringing and call-forwarding settings...
PowerShell script helps you to configure static IP on localmachine
Posted
over 3 years ago
by
Raymond Elias - volta82
3
Comments
This PowerShell script helps you to configure static IP on localmachine, just copy the code and past it in txt file then rename it to anyname.ps1 “static.ps1″ Don’t forget to make executionpolicy to be remotesigned using Set-ExecutionPolicy...
PowerShell scripts – delete computer account in Active Directory
Posted
over 3 years ago
by
Raymond Elias - volta82
2
Comments
$dom = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain() $root = $dom.GetDirectoryEntry() $search = [System.DirectoryServices.DirectorySearcher]$root $search.filter = "(&(objectclass=computer)(name=windowsserver))" $search.findall...
PowerShell script list and uninstall programs remotely or local machines using Primalforms to
Posted
over 3 years ago
by
Raymond Elias - volta82
2
Comments
#Generated Form Function function GenerateForm { ######################################################################## # Code Generated By: SAPIEN Technologies PrimalForms (Community Edition) v1.0.8.0 # Generated On: 4/15/2011 9:34 PM # Author...
How to run PowerShell script from CMD
Posted
over 3 years ago
by
Raymond Elias - volta82
2
Comments
You will find below example how to run PowerShell script from CMD or in windows schedule task 1 C:\>powershell "& 'c:\scripts\Active Directory\CreateNewUser.ps1'"
Compare Hotfixes installed on 2 computer using PowerShell
Posted
over 3 years ago
by
Raymond Elias - volta82
1
Comment
function hotfixcompare ($computer1, $computer2) { $node1 = Get-HotFix -ComputerName $computer1 $node2 = Get-HotFix -ComputerName $computer2 Compare-Object -ReferenceObject $node1 -DifferenceObject $node2 -Property HotFixID } hotfixcompare ex01 lyncse...
Powershell Script get group members and check for users that are not enabled for lync and enable these users using e-mail address
Posted
over 3 years ago
by
Raymond Elias - volta82
1
Comment
#This script get group members and check for users that is not enabled for lync and enable these users using e-mail address (PC to PC not enterprise voice) 01 Import -Module activedirectory 02 Import -Module...
Powershell script – Join domain
Posted
over 3 years ago
by
Raymond Elias - volta82
This script helps to join the machine to the domain local and if you want to do it remotely you can combined this script using invoke-command $credential = New-Object System.Management.Automation.PsCredential("coex\administrator", (ConvertTo-SecureString...
Function in PowerShell script to uninstall program
Posted
over 3 years ago
by
Raymond Elias - volta82
This script helps you to uninstall programs using PowerShell as to make it dynamic I made it as function so you can bypass the name of the program that you want to uninstall it [sourcecode language="powershell"] function uninstallapp ($x) { $app =...
CAS Array NLB Configuration with PowerShell
Posted
over 3 years ago
by
Raymond Elias - volta82
First, we need to load the server manager module and install NLB. To do this run the following commands: 1 Import -Module ServerManager 2 Add -WindowsFeature NLB, RSAT -NLB Keep in mind, you’ll need to install these components on...
PowerShell Scripts - Rename Local computer name and restart
Posted
over 3 years ago
by
Raymond Elias - volta82
This script will take affect after restart [sourcecode language="powershell"] $NewName="windowsserver" $ComputerInfo = Get-WmiObject -Class Win32_ComputerSystem $ComputerInfo.Rename($NewName) Restart-Computer [/sourcecode]
Replication From Oracle to SQL and back to Oracle
Posted
over 3 years ago
by
Wagdy Ishac
Have you ever tried the Replication from Oracle to SQL using the add Oracle publication feature in SQL Server Replication. following the steps simply you'll get the job done but when you try to put back data into the same oracle database you'll receive...
Quick Tips for your indices, is it used? Is it overhead ? using dm_db_index_usage_stats
Posted
over 3 years ago
by
Wagdy Ishac
A quick overview about your indices that you should execute from time to time to make sure that 1. Is all my indices used 2. What’s the useless indices 3. Am I indexing this table correct or the engine is doing a lot of scans over it ...
Microsoft Lync Server 2010 Web Scheduler is now available !
Posted
over 3 years ago
by
Amr.Hamdy
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=b7d8f948-fa64-4c51-8b54-2223954d1fa4
Lync 2010 CU2 Server Update
Posted
over 3 years ago
by
Amr.Hamdy
Product KBs Download Product Update External External Lync 2010 (64bit) Lync_2010_CU 2 2496325 MS download Lync 2010 (32bit) ...
Lync 2010 : Bandwidth Calculator and Capacity Calculator tools
Posted
over 3 years ago
by
Amr.Hamdy
“ Lync 2010 - Bandwidth Calculator ” has just been published. In addition “ Lync Server 2010 - Capacity Calculator ” which has been published earlier . For those who haven’t noticed, here are 3 other documents that...
Lync Server 2010 supports SQL Server 2008 R2 !!
Posted
over 3 years ago
by
Amr.Hamdy
It has been announced TODAY that SQL Server 2008 R2 is now supported for Lync Server 2010. Finally !!
PowerShell Script get Active Directory objects that are Expired and delete them
Posted
over 3 years ago
by
Raymond Elias - volta82
import-module activedirectory $ADO = Search-ADAccount -AccountExpired foreach($object in $ADO) { Remove-ADObject -Identity $object.DistinguishedName -Confirm:$false }
Lync Server 2010 Remote Administration
Posted
over 3 years ago
by
Raymond Elias - volta82
[sourcecode language="powershell" padlinenumbers="true"] $session = New-PSSession -ConnectionUri https://lyncse.coex.com/OcsPowershell -Credential (Get-Credential) Import-PSSession -Session $session [/sourcecode]
How to configure Lync user private line
Posted
over 3 years ago
by
Raymond Elias - volta82
1
Comment
Open the Lync Server Management Shell (Start –> All Programs –> Microsoft Lync Server 2010 –> Lync Server Management Shell) 2. Enter the following PowerShell command [sourcecode language="powershell"] Set-CsUser -Identity...
What's new in MED-V 2.0
Posted
over 3 years ago
by
ASadek
Microsoft Enterprise Desktop Virtualization (MED-V) 2.0 has evolved the application compatibility support for Windows 7 and removed functionality that is not required for this scenario. For example, features such as encryption of the MED-V workspace,...
How to Create PowerShell Module in Easy Way
Posted
over 3 years ago
by
Raymond Elias - volta82
First of All what you need to do is to create 2 folders “WindowsPowerShell” and “Modules” like shown below: “%userprofile%\My Documents\WindowsPowerShell\Modules” Also if you tried to run [sourcecode language...