Browse by Tags

Tagged Content List
  • Wiki Page: Getting Event Log Contents by Email on an Event Log Trigger

    I worked on the following PowerShell Script to email event log content (for example, event ID 4720 that shows the user creation on DCs) which is already triggered by event viewer with "running program" option (you must run "powershell -filter "<script path>""). Please...
  • Wiki Page: Learning PowerShell from Microsoft Resources

    These days PowerShell has become a very strong scripting language to manage any MS technology from the command prompt. However, the person like me who is a newbie to SharePoint, keeps thinking from where to start and how to start. So here I have presented some of the resources for my...
  • Wiki Page: PowerShell pour débutants (fr-FR)

    Note : Cet article est une traduction de l'article PowerShell for Beginners . Ressources pour ceux qui veulent apprendre le PowerShell : Using PowerShell for the First Time PowerShell Training: Back to Basics Scripting with Windows PowerShell TechNet Script Center Repository...
  • Wiki Page: Hyper-V 2008 R2: Protection with DPM 2010: How to Automatically Protect New Virtual Machines

    Note: This article is based on Hyper-V 2.0, and might not apply to Hyper-V 3.0 (Server 2012) Applies to: DPM 2010 (Beta) This information was originally provided by Angad Pal Singh on the Data Protection Manager blog : In any virtualized environment, adding new VMs is a frequent operation...
  • Wiki Page: Using the Best Practices Analyzer for Hyper-V 2008 R2

    Note: This article is based on Hyper-V2.0, the BPA has changed with Hyper-V 3.0 (Server 2012) Introduction As administrators we must ensure that all servers have the right settings and correct configuration according to best practices established by other administrators and by Microsoft itself...
  • Wiki Page: PowerShell script om de Belgian eID root en intermediate certificates te downloaden (NL-NL)

    Translated from: PowerShell script to download the Belgian eID root and intermediate certificates Wanneer je AD gebruiks wil toelaten om aan te loggen op AD met hun (Belgische) eID card, moet je de AD / PKI omgeving configureren om de root en intermediate CA van de Belgische overheid te herkennen...
  • Wiki Page: SharePoint 2010: Find Installed Feature Information in SharePoint

    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...
  • Wiki Page: How to Edit the Web.config Using PowerShell

    While working with Client you get to work on a lot of changes and a lot of modifications to the default configuration of the farm and it is always difficult to work on these changes manually. Recently I was trying to find a way to modify the webconfig file via some command line utility, then,...
  • Wiki Page: PowerShell Handy Commands

    These are very helpful commands for PowerShell Beginner, so keep them handy. How to find installed Modules? PS C:\> Get-Module How to find available modules? PS C:\> Get-Module -List How to import a Module? PS C:\> import-module activedirectory How to get help for...
  • Wiki Page: PowerShell script to download the Belgian eID root and intermediate certificates

    When you want to allow your AD users to logon with their (Belgian) eID card, you must prep your PKI to recognize the root and intermediate CA of the Belgian Government. So you need to download the certs and add them to the trusted root and intermediate certificate authorities of your PKI. Of course...
  • Wiki Page: PowerShell script om de Belgian eID root en intermediate certificates te downloaden(NL-NL)

    Translated from: PowerShell script to download the Belgian eID root and intermediate certificates Wanneer je AD gebruiks wil toelaten om aan te loggen op AD met hun (Belgische) eID card, moet je de AD / PKI omgeving configureren om de root en intermediate CA van de Belgische overheid te herkennen...
  • Wiki Page: PowerShell script to download the Belgian eID root and intermediate certificates (NL-NL)

    Translated from: PowerShell script to download the Belgian eID root and intermediate certificates Wanneer je AD gebruiks wil toelaten om aan te loggen op AD met hun (Belgische) eID card, moet je de AD / PKI omgeving configureren om de root en intermediate CA van de Belgische overheid te herkennen...
  • Wiki Page: PowerShell : Guide pratique (fr-FR)

    Note : Cet article est une traduction de l'article PowerShell Handy . Ce guide est très utilise aux débutants donc gardons le pratique. Comment trouver les Modules installés ? PS C:\> Get-Module Comment trouver les Modules disponibles ? PS C:\> Get-Module -List ...
  • Wiki Page: Video – Deep Dive Active Directory Powershell TR-tr

    Bu web seminerinde derinlemesine Active Directory Powershell komutları anlatılıp uygulamalar yapılacaktır. Deep Dive Active Directory Powershell from Serhad MAKBULOĞLU on Vimeo .
  • Wiki Page: Active Directory: Get-ADUser Default and Extended Properties

    The concept of default and extended properties available with the PowerShell Active Directory cmdlets are defined in Active Directory: PowerShell AD Module Properties . The PowerShell Get-ADUser cmdlet supports the default and extended properties in the following table. Many can be assigned values...
  • Wiki Page: Active Directory: Get-ADComputer Default and Extended Properties

    The concept of default and extended properties available with the PowerShell Active Directory cmdlets are defined in Active Directory: PowerShell AD Module Properties . The PowerShell Get-ADComputer cmdlet supports the default and extended properties in the following table. Many can be assigned...
  • Wiki Page: Active Directory: Get-ADOrganizationalUnit Default and Extended Properties

    The concept of default and extended properties available with the PowerShell Active Directory cmdlets are defined in Active Directory: PowerShell AD Module Properties . The PowerShell Get-ADOrganizationUnit cmdlet supports the default and extended properties in the following table. Many can be assigned...
  • Wiki Page: Active Directory: Get-ADGroup Default and Extended Properties

    The concept of default and extended properties available with the PowerShell Active Directory cmdlets are defined in Active Directory: PowerShell AD Module Properties . The PowerShell Get-ADGroup cmdlet supports the default and extended properties in the following table. Many can be assigned values...
  • Wiki Page: Active Directory: Get-ADObject Default and Extended Properties

    The concept of default and extended properties available with the PowerShell Active Directory cmdlets are defined in Active Directory: PowerShell AD Module Properties . The PowerShell Get-ADObject cmdlet supports the default and extended properties in the following table. Many can be assigned values...
  • Wiki Page: How to Use PowerShell to Export Requests Since a Given DateTime

    FIM ScriptBox Item Summary This one-liner shows how to use an Xpath filter to export Request objects since a given DateTime. the [DateTime].AddHours() method is used with a negative number in this example. The AddDays(), AddMinutes() and other methods could easily be swapped in here. Script...
  • Wiki Page: Sunum – Deep Dive Active Directory Powershell (TR-tr)

    Bu web seminerinde derinlemesine Active Directory Powershell komutları anlatılıp uygulamalar yapılacaktır. Deep Dive Active Directory Powershell from Serhad MAKBULOĞLU
  • Wiki Page: Active Directory: LDAP Syntax Filters

    LDAP Syntax filters can be used in many situations to query Active Directory. They can be used in VBScript and PowerShell scripts. Many utilities, like adfind and dsquery *, accept LDAP filters. Many PowerShell Active Directory module cmdlets, like Get-ADUser, Get-ADGroup, Get-ADComputer, and Get-ADObject...
  • Wiki Page: PowerShell: Generate Real Excel XLSX Files without Excel

    Table of Contents Problem Exploration The Excel XLSX file format .NET classes to create real Excel XLSX file from scratch Anatomy of a minimal Excel XLSX package file Minimal package structure Minimal package parts Required is the main file: [Content_Types].xml Required the document “start part”: workbook...
  • Wiki Page: Updating User Profile Properties with PowerShell in SharePoint 2010

    PowerShell can be a lot of fun and quite powerful because you can script several functions together to create Admin and maintenance function that would take you days to do through the UI. If I am an admin who has been granted the Manage Profiles right and Full Control in the permissions section of...
  • Wiki Page: Use PowerShell to Provision a SharePoint 2010 Central Admin Site

    Recently I was working on a SharePoint 2010 farm where I accidentally removed the last server that hosted Central Admin. Whoops! Now I had a farm with no Central Admin UI. Now the Central Admin SharePoint Service is installed on every WFE by default, but is only enabled on the machines that you identify...
Page 3 of 23 (556 items) 12345»
Can't find it? Write it!