Tagged Content List
  • Wiki Page: SharePoint 2013 – Workflow Management – Starting a workflow using Powershell

    Table of Contents Introduction The solution References Additional credit Introduction As it is right now, the SharePoint 2013 workflow management isn't exactly straight up using Powershell. The below code should aid in the understanding on how to work with it in its current state. ...
  • Wiki Page: SharePoint: PowerShell Runas

    Introduction Have you ever had a SharePoint PowerShell script where you need to run a section of the script with elevated privileges (for example, under the security context of the farm service account), without being prompted to enter credential information? You can achieve this by running...
  • Wiki Page: PowerShell: Get Process for SharePoint 2013 NodeRunners

    Save the code below to a file named something like getNodeRunnerProcess.ps1 and then run it using any of the following: To get all the noderunner processes on the current server : getNodeRunnerProcess.ps1 To get all the noderunner processes on a specified server :...
  • Wiki Page: Test your server for Heartbleed via Powershell

    Download latest OpenSSL for Windows and install your computer. Open your text editor and write one domain name or IP address on each line and save it. Then change $sites and $oSSL variables. $sites = Get-Content -Path " C:\domains.txt " $oSSL = " C:\OpenSSL-Win64...
  • Wiki Page: Using PowerShell for huge Reporting Tasks

    Most popularly IT admins prefer PowerShell scripting to do reporting. Recent times I came across a scenario where Admins were waiting for script completion. Management team requested for AD user report, LYNC SIP ID's report and Mail box report. Yes, indeed all their scripts works. But they...
  • Wiki Page: Internet Explorer Version Using PowerShell

    How to find Internet Explorer Version using PowerShell? PowerShell Code ( Get-ItemProperty -Path ' HKLM:\SOFTWARE\Microsoft\Internet Explorer ' ).svcVersion OutPut Reference ( Get-ItemProperty -Path ' HKLM:\SOFTWARE\Microsoft\Internet...
  • Wiki Page: Count Down using PowerShell

    Requirement: Need PowerShell codes to do Count Down for 60 Seconds approximately Solution: 1 . .59 | Sort-Object -Descending | % { Start-Sleep -Seconds 1 ; cls ; Write-Host " Count Down Starts $_ " -ForegroundColor Green } Indeed, it's a fun but this...
  • Wiki Page: Hosting the SharePoint Server 2013 Three-Tier Test Lab with Windows Server 2012 Hyper-V

    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...
  • Wiki Page: SCOM Group members Maintenance Mode

    I do realize that this script is for a some what dated product, but it is still being covered by main stream support so I see no harm in making it available for the SCOM peers. The feature to note is we have refrained from using a "| where" filter and have persevered to make the execution...
  • Wiki Page: Script a Metadata Service Application using PowerShell

    How To Create Manged Meta Data Service Application Using PowerShell This how-to topic describes the steps required to create a Managed MetaData Service Application in sharepoint 2010 using powershell.One can create the managed metadata service application using the central admin manually. But when...
  • Wiki Page: PowerShell : DC PROMO Windows Server 2012

    #################################################################################################### # # Unattend_DCPROMO.ps1 # # v.01 The 26 November 2012 by Kévin KISOKA - Personal Website : http://www.it-deployment.fr # # Usage : # - Modules Work Only with Powershell 3.0 / .NET 4.0...
  • 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: SharePoint 2013: Create 2000 Domain Accounts with Profile Photos for a Development Environment

    Table of Contents Introduction References Download the full Script from the Microsoft TechNet Gallery Process 1. Download the name files 2. Formatting the documents 3. Import the name files into PowerShell 4. Create a custom PSObject for holding people information 5. Use the name files to create 2000...
Page 67 of 75 (1,875 items) «6566676869»